aboutsummaryrefslogtreecommitdiffstats
path: root/roms/openbios/libopenbios/Kconfig
diff options
context:
space:
mode:
authorfishsoupisgood <github@madingley.org>2019-04-29 01:17:54 +0100
committerfishsoupisgood <github@madingley.org>2019-05-27 03:43:43 +0100
commit3f2546b2ef55b661fd8dd69682b38992225e86f6 (patch)
tree65ca85f13617aee1dce474596800950f266a456c /roms/openbios/libopenbios/Kconfig
downloadqemu-master.tar.gz
qemu-master.tar.bz2
qemu-master.zip
Initial import of qemu-2.4.1HEADmaster
Diffstat (limited to 'roms/openbios/libopenbios/Kconfig')
-rw-r--r--roms/openbios/libopenbios/Kconfig97
1 files changed, 97 insertions, 0 deletions
diff --git a/roms/openbios/libopenbios/Kconfig b/roms/openbios/libopenbios/Kconfig
new file mode 100644
index 00000000..1b36f192
--- /dev/null
+++ b/roms/openbios/libopenbios/Kconfig
@@ -0,0 +1,97 @@
+
+
+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