39 lines
1.4 KiB
INI
39 lines
1.4 KiB
INI
set default="0"
|
|
set fallback="1"
|
|
set timeout="1"
|
|
set MACHINE_ID=""
|
|
|
|
if [ "$MACHINE_ID" == "" ]; then
|
|
boot_condition="systemd.condition-first-boot=true"
|
|
fi
|
|
|
|
set menu_color_normal=white/black
|
|
set menu_color_highlight=white/red
|
|
|
|
load_env
|
|
|
|
default_cmdline="rootfstype=squashfs systemd.machine_id=$MACHINE_ID fsck.repair=yes zram.enabled=1 zram.num_devices=3 console=console consoleblank=0 loglevel=0 vt.global_cursor_default=0 logo.nologo systemd.show_status=0 systemd.unified_cgroup_hierarchy=1 cgroup_enable=cpuset cgroup_memory=1 $boot_condition rootwait quiet splash"
|
|
file_env -f ($root)/cmdline.txt cmdline
|
|
|
|
regexp --set 1:boothd (.+),.+ ${root}
|
|
|
|
menuentry "OpenVoiceOS - Slot A" {
|
|
set default="0"
|
|
set fallback="1"
|
|
linux (${boothd},gpt2)/boot/kernel root=PARTUUID=c0932a41-44cf-463b-8152-d43188553ed4 ro $default_cmdline $cmdline
|
|
}
|
|
|
|
menuentry "OpenVoiceOS - Slot B" {
|
|
set default="1"
|
|
set fallback="0"
|
|
linux (${boothd},gpt3)/boot/kernel root=PARTUUID=3adea996-45ad-4928-920e-ffb5aedd00cb ro $default_cmdline $cmdline
|
|
}
|
|
|
|
menuentry "OpenVoiceOS - Slot A (Rescue shell)" {
|
|
linux (${boothd},gpt2)/boot/kernel root=PARTUUID=c0932a41-44cf-463b-8152-d43188553ed4 ro $default_cmdline $cmdline systemd.unit=rescue.target
|
|
}
|
|
|
|
menuentry "OpenVoiceOS - Slot B (Rescue shell)" {
|
|
linux (${boothd},gpt3)/boot/kernel root=PARTUUID=3adea996-45ad-4928-920e-ffb5aedd00cb ro $default_cmdline $cmdline systemd.unit=rescue.target
|
|
}
|