Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / libopenbios / Kconfig
1
2
3 menu "Module Configuration"
4
5
6 config CMDLINE
7         bool "Command Line Editing"
8         default y
9         help
10           Improved openfirmware prompt
11
12 config DEBLOCKER
13         bool "Deblocker"
14         default y
15         help
16           Deblocker implementation
17
18 endmenu
19
20 menu "Filesystem Configuration"
21
22 config DISK_LABEL
23         bool "Disk-Label"
24         default y
25         help
26           Disk-label package implementation
27
28 config PART_SUPPORT
29         depends on DISK_LABEL
30         bool "Partition support"
31         default y
32         help
33           Support for partition tables
34
35 config MAC_PARTS
36         depends on PART_SUPPORT && BIG_ENDIAN
37         bool "Mac partition support"
38         default y
39         help
40           Support for Macintosh partition tables
41
42 config PC_PARTS
43         depends on PART_SUPPORT
44         bool "PC style partition support"
45         default y
46         help
47           Support for PC style partition tables
48
49 config FS
50         depends on DISK_LABEL
51         bool "Filesystem Support"
52         default y
53         help
54           Include filesystem support
55
56 config HFS
57         depends on FS && BIG_ENDIAN
58         bool "HFS support"
59         default y
60         help
61           Include HFS support
62
63 config HFSP
64         depends on FS && BIG_ENDIAN
65         bool "HFS+ support"
66         default y
67         help
68           Include HFS+ support
69
70 config GRUBFS
71         depends on FS
72         bool "Additional Filesystems (from GRUB)"
73         default y
74         help
75           Grub provides a lot of filesystem drivers. 
76
77 source "fs/grubfs/Kconfig"
78
79 config DEBUG_FS
80         depends on FS
81         bool "Debugging output for Filesystem code"
82         default y
83         help
84           Say Y here if you want to debug the filesystem layer
85
86 endmenu
87           
88 menu "Miscellaneous"
89
90 config LINUXBIOS
91         bool "Support reading LinuxBIOS table"
92         default y
93         help
94           If you want to boot OpenBIOS as a LinuxBIOS payload,
95           you should say Y here.
96
97 endmenu