mb/ocp/tiogapass: Only advertise C-states C1C6
[coreboot.git] / payloads / external / FILO / Kconfig
blob1ba0ed20adbb417c06a880997ad9d5feefc07bf1
1 ## SPDX-License-Identifier: GPL-2.0-only
3 if PAYLOAD_FILO
5 choice
6         prompt "FILO version"
7         default FILO_STABLE
9 config FILO_STABLE
10         bool "tested"
11         help
12           Tested FILO version
14 config FILO_HEAD
15         bool "HEAD"
16         help
17           Newest FILO version
19 endchoice
21 config FILO_USE_AUTOBOOT
22         prompt "Use FILO's autoboot"
23         default n
24         bool
25         help
26           Select this option to make FILO autoboot a command line after
27           timeout. This disables the GRUB legacy like interface.
29 config FILO_AUTOBOOT_FILE
30         string "Configure FILO's autoboot kernel filename and parameters"
31         depends on FILO_USE_AUTOBOOT
32         default "hda1:/vmlinuz root=/dev/hda1 console=tty0 console=ttyS0,115200"
33         help
34           Examples:
36           #AUTOBOOT_FILE = "hda1:/vmlinuz root=/dev/sda1 console=tty0 console=ttyS0,115200"
37           #AUTOBOOT_FILE = "mem@0xfff80000"
38           #AUTOBOOT_FILE = "hde1@0"
39           #AUTOBOOT_FILE = "uda1:/vmlinuz.elf"
40           #AUTOBOOT_FILE = "flashb@0x00400000,0x154a00 console=tty0 console=ttyS0,115200"
42 config FILO_AUTOBOOT_DELAY
43         int "Time in seconds before booting"
44         depends on FILO_USE_AUTOBOOT
45         default 2
46         help
47           Time in seconds before booting AUTOBOOT_FILE.
49 config PAYLOAD_FILE
50         default "payloads/external/FILO/filo/build/filo.elf"
52 endif