mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
the source files into a structure whereby it is easier to find the relationship between a forth package word and its C implementation, while also creating a libopenbios library into which more common code from the arch/ tree can eventually be moved. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@685 f158a5a8-5612-0410-a976-696ce0be7e32
98 lines
1.5 KiB
Plaintext
98 lines
1.5 KiB
Plaintext
|
|
|
|
menu "Module Configuration"
|
|
|
|
|
|
config CMDLINE
|
|
bool "Command Line Editing"
|
|
default y
|
|
help
|
|
Improved openfirmware prompt
|
|
|
|
config DEBLOCKER
|
|
bool "Deblocker"
|
|
default y
|
|
help
|
|
Deblocker implementation
|
|
|
|
endmenu
|
|
|
|
menu "Filesystem Configuration"
|
|
|
|
config DISK_LABEL
|
|
bool "Disk-Label"
|
|
default y
|
|
help
|
|
Disk-label package implementation
|
|
|
|
config PART_SUPPORT
|
|
depends on DISK_LABEL
|
|
bool "Partition support"
|
|
default y
|
|
help
|
|
Support for partition tables
|
|
|
|
config MAC_PARTS
|
|
depends on PART_SUPPORT && BIG_ENDIAN
|
|
bool "Mac partition support"
|
|
default y
|
|
help
|
|
Support for Macintosh partition tables
|
|
|
|
config PC_PARTS
|
|
depends on PART_SUPPORT
|
|
bool "PC style partition support"
|
|
default y
|
|
help
|
|
Support for PC style partition tables
|
|
|
|
config FS
|
|
depends on DISK_LABEL
|
|
bool "Filesystem Support"
|
|
default y
|
|
help
|
|
Include filesystem support
|
|
|
|
config HFS
|
|
depends on FS && BIG_ENDIAN
|
|
bool "HFS support"
|
|
default y
|
|
help
|
|
Include HFS support
|
|
|
|
config HFSP
|
|
depends on FS && BIG_ENDIAN
|
|
bool "HFS+ support"
|
|
default y
|
|
help
|
|
Include HFS+ support
|
|
|
|
config GRUBFS
|
|
depends on FS
|
|
bool "Additional Filesystems (from GRUB)"
|
|
default y
|
|
help
|
|
Grub provides a lot of filesystem drivers.
|
|
|
|
source "fs/grubfs/Kconfig"
|
|
|
|
config DEBUG_FS
|
|
depends on FS
|
|
bool "Debugging output for Filesystem code"
|
|
default y
|
|
help
|
|
Say Y here if you want to debug the filesystem layer
|
|
|
|
endmenu
|
|
|
|
menu "Miscellaneous"
|
|
|
|
config LINUXBIOS
|
|
bool "Support reading LinuxBIOS table"
|
|
default y
|
|
help
|
|
If you want to boot OpenBIOS as a LinuxBIOS payload,
|
|
you should say Y here.
|
|
|
|
endmenu
|