summaryrefslogtreecommitdiffstats
path: root/rules/grub.in
blob: 63e68b45563c91e2c7f252f89d6839ee759d9490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77

menuconfig GRUB
	bool "grub                "
	depends on ARCH_X86

comment "grub is only available on x86"
	depends on !ARCH_X86

comment "Config Options"
	depends on GRUB

config GRUB_MD5
	bool
	prompt "md5 passwords"
	depends on GRUB

config GRUB_PRESET_MENU
	string
	prompt "Preset Menu File"
	depends on GRUB
	help
	  Add a path to a file here which will be used as a 
	  preset menu (for example for serial console support)

comment "File System Support"
	depends on GRUB

config GRUB_FFS
	bool
	prompt "ffs      filesystem"
	depends on GRUB

config GRUB_MINIXFS
	bool
	prompt "minix    filesystem"
	depends on GRUB

config GRUB_REISERFS
	bool
	prompt "reiser   filesystem"
	depends on GRUB

config GRUB_VSTAFS
	bool
	prompt "vstafs   filesystem"
	depends on GRUB

config GRUB_JFS
	bool
	prompt "jfs      filesystem"
	depends on GRUB

config GRUB_XFS
	bool
	prompt "xfs      filesystem"
	depends on GRUB

comment "Network Card Support"
	depends on GRUB

config GRUB_CS89X0
	bool
	prompt "cs89x0   network driver"
	depends on GRUB

config GRUB_EEPRO100
	bool
	prompt "eepro100 network driver"
	depends on GRUB

config GRUB_RTL8139
	bool
	prompt "Realtek  network driver"
	depends on GRUB

# FIXME
# source "rules/bootdisk.in"