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

if DOSFSTOOLS

config DOSFSTOOLS_UDEV
	bool
	prompt "make use of udev"
	help
	  make use of udev

config DOSFSTOOLS_MKFS_FAT
	bool
	depends on !BUSYBOX_MKFS_VFAT || ALLYES
	prompt "mkfs.fat"
	help
	  mkfs.fat - create an MS-DOS file system under Linux

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

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

config DOSFSTOOLS_MKFS_FAT_VFAT
	bool
	depends on !BUSYBOX_MKFS_VFAT || ALLYES
	select DOSFSTOOLS_MKFS_FAT
	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_FSCK_FAT
	bool
	prompt "fsck.fat"
	help
	  This is the DOSFS / VFAT Filesystem Checker

config DOSFSTOOLS_FSCK_FAT_MSDOS
	bool
	select DOSFSTOOLS_FSCK_FAT
	prompt "create fsck.msdos link"
	help
	  FAT 12 / MSDOS Format

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

config DOSFSTOOLS_FATLABEL
	bool
	prompt "fatlabel"
	help
	  set or get a MS-DOS filesystem label

endif