summaryrefslogtreecommitdiffstats
path: root/rules/dosfstools.in
blob: d5806a34d3e8a7b57274b19617fe2280226e60f6 (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
## SECTION=disk_and_file
menuconfig DOSFSTOOLS
	tristate
	prompt "dosfstools                    "
	select GCCLIBS_GCC_S

if DOSFSTOOLS

config DOSFSTOOLS_MKDOSFS
	bool
	depends on !BUSYBOX_MKFS_VFAT || ALLYES
	prompt "mkdosfs"
	help
	  mkdosfs - create an MS-DOS file system under Linux

comment "BusyBox' mkdosfs is selected!"
	depends on BUSYBOX_MKFS_VFAT

config DOSFSTOOLS_MKDOSFS_MSDOS
	bool
	depends on !BUSYBOX_MKFS_VFAT || ALLYES
	prompt "create mkfs.msdos link"
	help
	  FAT 12 / MSDOS Format

config DOSFSTOOLS_MKDOSFS_VFAT
	bool
	depends on !BUSYBOX_MKFS_VFAT || ALLYES
	prompt "create mkfs.vfat link"
	help
	  VFAT Format - Long Filenames, big files, etc.

comment "BusyBox' mkfs.vfat is selected!"
	depends on BUSYBOX_MKFS_VFAT

config DOSFSTOOLS_DOSFSCK
	bool
	prompt "dosfsck"
	help
	  This is the DOSFS / VFAT Filesystem Checker

config DOSFSTOOLS_DOSFSCK_MSDOS
	bool
	prompt "create fsck.msdos link"
	help
	  FAT 12 / MSDOS Format

config DOSFSTOOLS_DOSFSCK_VFAT
	bool
	prompt "create fsck.vfat link"
	help
	  VFAT Format - Long Filenames, big files, etc.

config DOSFSTOOLS_DOSFSLABEL
	bool
	prompt "dosfslabel"
	help
	  set or get a MS-DOS filesystem label

endif