Siehe ADR-0023 (platform-docs) fuer die volle Fehlersuche. automatic- ubiquity+noprompt allein reicht nicht, um jede Ubiquity-Seite zu unterdruecken (live gefunden: Zeitzone/Codecs/Ueberschreiben/Benutzer- anlage kamen trotz vollstaendigem Preseed interaktiv). priority=critical ergaenzt, nur beim Tuxflotte-Auto-Install-Menuepunkt. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
45 lines
1.7 KiB
INI
45 lines
1.7 KiB
INI
loadfont unicode
|
|
|
|
set color_normal=white/black
|
|
set color_highlight=black/light-gray
|
|
|
|
set timeout=30
|
|
|
|
menuentry "Start Linux Mint 22.3 Cinnamon 64-bit" --class linuxmint {
|
|
set gfxpayload=keep
|
|
linux /casper/vmlinuz boot=casper uuid=6e72f523-dc09-4880-8910-93ffa64401c5 username=mint hostname=mint iso-scan/filename=${iso_path} quiet splash --
|
|
initrd /casper/initrd.lz
|
|
}
|
|
menuentry "Start Linux Mint 22.3 Cinnamon 64-bit (compatibility mode)" {
|
|
linux /casper/vmlinuz boot=casper uuid=6e72f523-dc09-4880-8910-93ffa64401c5 username=mint hostname=mint iso-scan/filename=${iso_path} noapic noacpi nosplash irqpoll nomodeset --
|
|
initrd /casper/initrd.lz
|
|
}
|
|
menuentry "OEM install (for manufacturers)" {
|
|
set gfxpayload=keep
|
|
linux /casper/vmlinuz oem-config/enable=true only-ubiquity boot=casper uuid=6e72f523-dc09-4880-8910-93ffa64401c5 username=mint hostname=mint iso-scan/filename=${iso_path} quiet splash --
|
|
initrd /casper/initrd.lz
|
|
}
|
|
menuentry "Tuxflotte Auto-Install (Linux Mint 22.3 Cinnamon)" --class linuxmint {
|
|
set gfxpayload=keep
|
|
linux /casper/vmlinuz boot=casper uuid=6e72f523-dc09-4880-8910-93ffa64401c5 username=mint hostname=mint iso-scan/filename=${iso_path} file=/cdrom/preseed/tuxflotte.seed automatic-ubiquity noprompt priority=critical debian-installer/language=de keyboard-configuration/layoutcode=de quiet splash --
|
|
initrd /casper/initrd.lz
|
|
}
|
|
grub_platform
|
|
if [ "$grub_platform" = "efi" ]; then
|
|
menuentry 'Von lokaler Festplatte booten (Standard)' {
|
|
exit 1
|
|
}
|
|
set default="Von lokaler Festplatte booten (Standard)"
|
|
menuentry 'UEFI Firmware Settings' {
|
|
fwsetup
|
|
}
|
|
menuentry 'Memory test' {
|
|
linux /boot/memtest.efi
|
|
}
|
|
else
|
|
menuentry 'Von lokaler Festplatte booten (Standard)' {
|
|
exit 1
|
|
}
|
|
set default="Von lokaler Festplatte booten (Standard)"
|
|
fi
|