Skip to content

Commit

Permalink
Add grub config for Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev committed May 23, 2024
1 parent d01fa42 commit a346978
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions iso/boot/ubuntu/grub.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
set timeout=30

loadfont unicode

set menu_color_normal=white/black
set menu_color_highlight=black/light-gray

menuentry "Install Dappnode (over Ubuntu Server)" {
set gfxpayload=keep
linux /casper/vmlinuz autoinstall --- # Added autoinstall to make it unattended
initrd /casper/initrd
}
grub_platform
if [ "$grub_platform" = "efi" ]; then
menuentry 'Boot from next volume' {
exit 1
}
menuentry 'UEFI Firmware Settings' {
fwsetup
}
else
menuentry 'Test memory' {
linux16 /boot/memtest86+x64.bin
}
fi

0 comments on commit a346978

Please sign in to comment.