diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2022-09-08 10:43:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 10:43:42 +0300 |
commit | 754436f49d2c2143261a53254a0732b37334c047 (patch) | |
tree | 7fc94cf8bac8678d6663b36278c27dc08b0e3b18 /Lessons/Lesson_12 | |
parent | 4a9bde8e4180e50bca4fcc7f21bc57bc72792298 (diff) | |
download | UEFI-Lessons-754436f49d2c2143261a53254a0732b37334c047.tar.gz UEFI-Lessons-754436f49d2c2143261a53254a0732b37334c047.tar.bz2 UEFI-Lessons-754436f49d2c2143261a53254a0732b37334c047.zip |
Corrections for L12
Diffstat (limited to 'Lessons/Lesson_12')
-rw-r--r-- | Lessons/Lesson_12/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lessons/Lesson_12/README.md b/Lessons/Lesson_12/README.md index 727d300..2c4c544 100644 --- a/Lessons/Lesson_12/README.md +++ b/Lessons/Lesson_12/README.md @@ -56,10 +56,10 @@ make If we try to boot this kernel with: ``` -qemu-system-x86_64 -drive if=pflash,format=raw,file=Build/OvmfX64/RELEASE_GCC5/FV/OVMF.fd - -drive format=raw,file=fat:rw:~/UEFI_disk - -nographic - -kernel ~/buildroot/output/images/bzImage +qemu-system-x86_64 -drive if=pflash,format=raw,file=Build/OvmfX64/RELEASE_GCC5/FV/OVMF.fd \ + -drive format=raw,file=fat:rw:~/UEFI_disk \ + -nographic \ + -kernel ~/buildroot/output/images/bzImage \ -append "console=ttyS0" ``` |