From 565a793466c24db7e6e1f688f17f97bc545c326d Mon Sep 17 00:00:00 2001 From: Marcos Tischer Vallim Date: Sun, 8 Sep 2024 15:14:03 -0300 Subject: [PATCH] Update README.md --- README.md | 47 +++++++++++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index f0a977f4..fbdf0373 100644 --- a/README.md +++ b/README.md @@ -410,38 +410,45 @@ We are now back in our `build environment` after setting up our `live system` an cat < image/isolinux/grub.cfg search --set=root --file /ubuntu - + insmod all_video - + set default="0" set timeout=30 - + menuentry "Try Ubuntu FS without installing" { - linux /casper/vmlinuz boot=casper nopersistent toram quiet splash --- - initrd /casper/initrd + linux /casper/vmlinuz boot=casper nopersistent toram quiet splash --- + initrd /casper/initrd } - + menuentry "Install Ubuntu FS" { - linux /casper/vmlinuz boot=casper only-ubiquity quiet splash --- - initrd /casper/initrd + linux /casper/vmlinuz boot=casper only-ubiquity quiet splash --- + initrd /casper/initrd } - + menuentry "Check disc for defects" { - linux /casper/vmlinuz boot=casper integrity-check quiet splash --- - initrd /casper/initrd + linux /casper/vmlinuz boot=casper integrity-check quiet splash --- + initrd /casper/initrd } - - menuentry "Test memory Memtest86+ (BIOS)" { - linux16 /install/memtest86+ + + grub_platform + if [ "\$grub_platform" = "efi" ]; then + menuentry 'UEFI Firmware Settings' { + fwsetup } - + menuentry "Test memory Memtest86 (UEFI, long load time)" { - insmod part_gpt - insmod search_fs_uuid - insmod chain - loopback loop /install/memtest86 - chainloader (loop,gpt1)/efi/boot/BOOTX64.efi + insmod part_gpt + insmod search_fs_uuid + insmod chain + loopback loop /install/memtest86 + chainloader (loop,gpt1)/efi/boot/BOOTX64.efi } + else + menuentry "Test memory Memtest86+ (BIOS)" { + linux16 /install/memtest86+ + } + fi EOF ```