14 lines
533 B
Bash
14 lines
533 B
Bash
#!/bin/sh
|
|
exec tail -n +3 $0
|
|
### Gentoo GNU/Linux ###
|
|
menuentry 'Gentoo GNU/Linux (callisto-galileo)' {
|
|
insmod gzio
|
|
insmod part_gpt
|
|
insmod btrfs
|
|
search --no-floppy --fs-uuid --set=root 5d9a4058-2428-4e06-93ca-dc1f3bf5c703
|
|
echo 'Loading Linux 6.12.41-gentoo-x86_64 ...'
|
|
linux /@/boot/vmlinuz-6.12.41-gentoo-x86_64 root=UUID=5d9a4058-2428-4e06-93ca-dc1f3bf5c703 ro quiet nvidia_drm.modeset=1 rd.driver.blacklist=nouveau rootflags=subvol=@
|
|
echo 'Loading initial ramdisk ...'
|
|
initrd /@/boot/initramfs-6.12.41-gentoo-x86_64.img
|
|
}
|