1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| mount /dev/sdb1 /mnt mkdir -p /mnt/efi/boot/
mksquashfs $ROOTFS_PATH /mnt/live/filesystem.squashfs cp /boot/vmlinuz-4.19.0-9-amd64 /mnt/live/
mkinitramfs 4.19.0-9-amd64 -o /mnt/live/initrd.img-4.19.0-9-amd64
echo -e "configfile (\$root)/efi/boot/grub.cfg" > grub.cfg
grub-mkimage -d /usr/lib/grub/x86_64-efi/ -c grub.cfg -p /efi/boot \ -o /mnt/efi/boot/bootx64.efi -O x86_64-efi boot linux linux16 chain \ loopback net search disk part_gpt part_msdos disk blocklist cpio btrfs \ exfat fat ext2 hfs hfsplus iso9660 jfs ntfs procfs squash4 xfs zfs tar \ date echo ls configfile normal file sleep true minicmd play read acpi \ reboot halt efifwsetup efi_gop efi_uga video_bochs video_cirrus \ gfxmenu gfxterm gfxterm_background gfxterm_menu font jpeg png
cat << EOF > /mnt/efi/boot/grub.cfg set timeout=3 set menu_color_normal=cyan/blue set menu_color_highlight=white/blue
menuentry "Debian GNU/Linux Live (kernel 4.19.0-9-amd64)" { linux /live/vmlinuz-4.19.0-9-amd64 boot=live components quiet initrd /live/initrd.img-4.19.0-9-amd64 } EOF
leux@K680:/mnt$ tree . ├── efi │ └── boot │ ├── bootx64.efi │ └── grub.cfg └── live ├── filesystem.squashfs ├── initrd.img-4.19.0-9-amd64 └── vmlinuz-4.19.0-9-amd64
3 directories, 5 files
|