summaryrefslogtreecommitdiffstats
path: root/rules/lvm2.in
blob: b53086d8b2ddb4863c32694dcb5ce3a2dafaadce (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
## SECTION=disk_and_file

menuconfig LVM2
	tristate
	select LIBC_DL
	select GCCLIBS_GCC_S
	select READLINE
	select NCURSES
	prompt "lvm2                          "
	help
	  LVM2 refers to a new userspace toolset that provide logical volume management
	  facilities on linux. It is reasonably backwards-compatible with the original
	  LVM toolset

if LVM2

config LVM2_LVM_TOOLS
	bool
	default y
	prompt "install lvm tools"
	help
	  If disabled, only dmsetup and the dm-mapper library are installed.

if LVM2_LVM_TOOLS

config LVM2_STARTSCRIPT
	bool
	default y
        prompt "install /etc/init.d/lvm2"

endif

config LVM2_DEVICE_UID
	int
	default 0
	prompt "device node uid"
	help
	  The effective UID of the device nodes create by LVM

config LVM2_DEVICE_GID
	int
	default 107
	prompt "device node gid"
	help
	  The effective GID of the device nodes create by LVM

config LVM2_DEVICE_MODE
	string
	default 0660
	prompt "device node access mode"
	help
	  The effective access mode of the device nodes create by LVM

endif