aboutsummaryrefslogtreecommitdiff
path: root/coreutils/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/df.c')
-rw-r--r--coreutils/df.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/coreutils/df.c b/coreutils/df.c
index 9f8b3a71e..176aa079f 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -32,6 +32,26 @@
32//config: -a Show all filesystems 32//config: -a Show all filesystems
33//config: -i Inodes 33//config: -i Inodes
34//config: -B <SIZE> Blocksize 34//config: -B <SIZE> Blocksize
35//config:
36//config:config FEATURE_SKIP_ROOTFS
37//config: bool "Skip rootfs in mount table"
38//config: default y
39//config: depends on DF
40//config: help
41//config: Ignore rootfs entry in mount table.
42//config:
43//config: In Linux, kernel has a special filesystem, rootfs, which is initially
44//config: mounted on /. It contains initramfs data, if kernel is configured
45//config: to have one. Usually, another file system is mounted over / early
46//config: in boot process, and therefore most tools which manipulate
47//config: mount table, such as df, will skip rootfs entry.
48//config:
49//config: However, some systems do not mount anything on /.
50//config: If you need to configure busybox for one of these systems,
51//config: you may find it useful to turn this option off to make df show
52//config: initramfs statistics.
53//config:
54//config: Otherwise, choose Y.
35 55
36//applet:IF_DF(APPLET_NOEXEC(df, df, BB_DIR_BIN, BB_SUID_DROP, df)) 56//applet:IF_DF(APPLET_NOEXEC(df, df, BB_DIR_BIN, BB_SUID_DROP, df))
37 57