blob: dae8715eed01cff36d8f98f97d84526d9c113f57 [file] [log] [blame]
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -07001if PAYLOAD_FILO
2
3choice
4 prompt "FILO version"
5 default FILO_STABLE
6
7config FILO_STABLE
Nico Hubere50f5462020-10-27 19:55:45 +01008 bool "tested"
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -07009 help
Nico Hubere50f5462020-10-27 19:55:45 +010010 Tested FILO version
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -070011
Nicholas Chin55d94102023-06-25 10:22:47 -060012config FILO_HEAD
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -070013 bool "HEAD"
14 help
15 Newest FILO version
16
17endchoice
18
Paul Menzelf72568c2021-07-08 19:16:17 +020019config FILO_USE_AUTOBOOT
20 prompt "Use FILO's autoboot"
21 default n
22 bool
23 help
24 Select this option to make FILO autoboot a command line after
25 timeout. This disables the GRUB legacy like interface.
26
27config FILO_AUTOBOOT_FILE
28 string "Configure FILO's autoboot kernel filename and parameters"
29 depends on FILO_USE_AUTOBOOT
30 default "hda1:/vmlinuz root=/dev/hda1 console=tty0 console=ttyS0,115200"
31 help
32 Examples:
33
34 #AUTOBOOT_FILE = "hda1:/vmlinuz root=/dev/sda1 console=tty0 console=ttyS0,115200"
35 #AUTOBOOT_FILE = "mem@0xfff80000"
36 #AUTOBOOT_FILE = "hde1@0"
37 #AUTOBOOT_FILE = "uda1:/vmlinuz.elf"
38 #AUTOBOOT_FILE = "flashb@0x00400000,0x154a00 console=tty0 console=ttyS0,115200"
39
40config FILO_AUTOBOOT_DELAY
41 int "Time in seconds before booting"
42 depends on FILO_USE_AUTOBOOT
43 default 2
44 help
45 Time in seconds before booting AUTOBOOT_FILE.
46
Stefan Reinauer1a8b7bf2015-06-30 15:58:56 -070047config PAYLOAD_FILE
48 default "payloads/external/FILO/filo/build/filo.elf"
49
50endif