No idea whether this is the canonical method, but I created a file
config/bootloaders/grub-pc/grub.cfg, and put my configuration there.
For example:
-----------------
insmod all_video
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
menuentry --hotkey=l 'Live System' {
linux /live/vmlinuz boot=live components timezone=America/New_York
initrd /live/initrd.img
}
menuentry --hotkey=a 'Live from RAM' {
linux /live/vmlinuz boot=live components timezone=America/New_York
toram
initrd /live/initrd.img
}
menuentry --hotkey=f 'Live Failsafe' {
set gfxpayload=auto
linux /live/vmlinuz boot=live components noapic noapm nodma noapic
noapm nodma nomcce nolapic nomodeset nosmp nosplash nox11autologin
timezone=America/New_York
initrd /live/initrd.img
}
menuentry "memtest86+" {
linux16 /live/memtest
}
-----------------
Works for me.
--Juergen
On Wed, Dec 8, 2021 at 7:09 AM Andrea - <[email protected]>
wrote:
> Reading here:
>
> https://lists.debian.org/debian-live/2020/05/msg00006.html
>
> says that
>
> You create a small "hook" script in your config directory which does text
> replacement on the binary/boot/grub/menu.list file.
> 2. You execute the build.
>
>
> I don't know how to create it
>