coreboot-kgpe-d16/payloads/external/FILO/Kconfig
Nicholas Chin 55d941033a payloads/filo: Update branch name from master to main
It seems like the default branch for FILO was renamed from 'master' to
'main'.

TEST: FILO builds correctly when selecting 'HEAD' for the FILO version
option.

Change-Id: I6c355d757987551e850f9d24f6bfb14167cb8046
Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76101
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
2023-06-28 15:46:08 +00:00

50 lines
1.1 KiB
Text

if PAYLOAD_FILO
choice
prompt "FILO version"
default FILO_STABLE
config FILO_STABLE
bool "tested"
help
Tested FILO version
config FILO_HEAD
bool "HEAD"
help
Newest FILO version
endchoice
config FILO_USE_AUTOBOOT
prompt "Use FILO's autoboot"
default n
bool
help
Select this option to make FILO autoboot a command line after
timeout. This disables the GRUB legacy like interface.
config FILO_AUTOBOOT_FILE
string "Configure FILO's autoboot kernel filename and parameters"
depends on FILO_USE_AUTOBOOT
default "hda1:/vmlinuz root=/dev/hda1 console=tty0 console=ttyS0,115200"
help
Examples:
#AUTOBOOT_FILE = "hda1:/vmlinuz root=/dev/sda1 console=tty0 console=ttyS0,115200"
#AUTOBOOT_FILE = "mem@0xfff80000"
#AUTOBOOT_FILE = "hde1@0"
#AUTOBOOT_FILE = "uda1:/vmlinuz.elf"
#AUTOBOOT_FILE = "flashb@0x00400000,0x154a00 console=tty0 console=ttyS0,115200"
config FILO_AUTOBOOT_DELAY
int "Time in seconds before booting"
depends on FILO_USE_AUTOBOOT
default 2
help
Time in seconds before booting AUTOBOOT_FILE.
config PAYLOAD_FILE
default "payloads/external/FILO/filo/build/filo.elf"
endif