Skip to content

Commit 5d49e89

Browse files
authored
Change "xorisso" typos to "xorriso" (#91)
Thanks for the PR!
1 parent 128578d commit 5d49e89

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

01_Build_Process/01_Overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ There are other make-like tools out there (xmake, nmake) but these are less popu
162162

163163
There are more details to this, however most bootloaders will provide a tool that lets us create a bootable iso, with the kernel, the bootloader itself and any other files we might want. For grub this is `grub-mkrescue` and limine provides `limine-install` for version 2.x or `limine-deploy` for version 3.x.
164164

165-
While the process of generating an iso is straightforward enough when using something like xorisso, the process of installing a bootloader into that iso is usually bootloader dependent. This is covered more in detail in its own chapter.
165+
While the process of generating an iso is straightforward enough when using something like xorriso, the process of installing a bootloader into that iso is usually bootloader dependent. This is covered more in detail in its own chapter.
166166

167167
If just here for a quick reference, grub uses `grub-mkrescue` and a `grub.cfg` file, limine reqiures us to build the iso by yourselves with a `limine.cfg` on it, and then run `limine-deploy`.
168168

01_Build_Process/05_Generating_Iso.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ The generated iso can then be used as a cdrom in an emulator, or burnt to a real
55

66
## Xorriso
77

8-
Xorisso is a tool used to create iso disk images. Iso is actually quite a complex format, as it aims to be compatible with a lot of different formats and ways of booting.
8+
Xorriso is a tool used to create iso disk images. Iso is actually quite a complex format, as it aims to be compatible with a lot of different formats and ways of booting.
99

10-
A walkthrough of xorisso is outside the scope of this chapter, but just know it's the standard tool for working with the iso format.
10+
A walkthrough of xorriso is outside the scope of this chapter, but just know it's the standard tool for working with the iso format.
1111

1212
## Grub (Multiboot 2)
1313

@@ -51,10 +51,10 @@ To get started we'll want to create a working directory to use as the root of ou
5151

5252
Now we can copy our `limine.cfg` and kernel into the working directory. The `limine.cfg` file needs to be in one of a few locations in order to be found, the best place is the root directory.
5353

54-
Now we're ready to run the following xorisso command:
54+
Now we're ready to run the following xorriso command:
5555

5656
```sh
57-
xorisso -as mkisofs -b limine-cd.bin -no-emul-boot \
57+
xorriso -as mkisofs -b limine-cd.bin -no-emul-boot \
5858
-boot-load-size 4 -boot-info-table --efi-boot \
5959
limine-cd-efi.bin -efi-boot-part --efi-boot-image \
6060
--protective-msdos-label disk -o my_iso.iso

99_Appendices/H_Useful_Resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This appendix is a collection of links we found useful developing our own kernel
1010
- Stivale 2 Specification: [https://github.com/stivale/stivale/blob/master/STIVALE2.md](https://github.com/stivale/stivale/blob/master/STIVALE2.md)
1111
- Stivale 2 Barebones: [https://github.com/stivale/stivale2-barebones/](https://github.com/stivale/stivale2-barebones/)
1212
- Sabaton - ARM Stivale 2 Bootloader: [https://github.com/FlorenceOS/Sabaton](https://github.com/FlorenceOS/Sabaton)
13-
- Xorisso Documentation: [https://linux.die.net/man/1/xorriso](https://linux.die.net/man/1/xorriso)
13+
- Xorriso Documentation: [https://linux.die.net/man/1/xorriso](https://linux.die.net/man/1/xorriso)
1414
- GNU Make Documenation: [https://www.gnu.org/software/make/manual/make.html](https://www.gnu.org/software/make/manual/make.html)
1515
- Linker Scripts Documentation : [https://sourceware.org/binutils/docs/ld/Scripts.html#Scripts](https://sourceware.org/binutils/docs/ld/Scripts.html#Scripts)
1616
- Bootlin Toolchains : [https://toolchains.bootlin.com/](https://toolchains.bootlin.com/)

0 commit comments

Comments
 (0)