diff options
author | Eric Andersen | 2002-12-05 07:24:08 +0000 |
---|---|---|
committer | Eric Andersen | 2002-12-05 07:24:08 +0000 |
commit | deca106b6dad70ad0a1312a82d762aa8d8ad52ba (patch) | |
tree | f11db23c430298ac9da2f3de80ec6c86cc75be70 /libbb/mtab_file.c | |
parent | 6f9b45b9eff22c664b93ace82d20669340a762f8 (diff) | |
download | busybox-deca106b6dad70ad0a1312a82d762aa8d8ad52ba.zip busybox-deca106b6dad70ad0a1312a82d762aa8d8ad52ba.tar.gz |
Kill CONFIG_FEATURE_USE_DEVPS_PATCH and the devps patch. I'm not
maintaining it anymore, and it is now terribly out of date.
-Erik
Diffstat (limited to 'libbb/mtab_file.c')
-rw-r--r-- | libbb/mtab_file.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libbb/mtab_file.c b/libbb/mtab_file.c index 267a137..3d57290 100644 --- a/libbb/mtab_file.c +++ b/libbb/mtab_file.c @@ -23,16 +23,12 @@ #include "libbb.h" -/* Busybox mount uses either /proc/mounts or /dev/mtab to +/* Busybox mount uses either /proc/mounts or /etc/mtab to * get the list of currently mounted filesystems */ #if defined CONFIG_FEATURE_MTAB_SUPPORT const char mtab_file[] = "/etc/mtab"; #else -# if defined CONFIG_FEATURE_USE_DEVPS_PATCH - const char mtab_file[] = "/dev/mtab"; -# else - const char mtab_file[] = "/proc/mounts"; -# endif +const char mtab_file[] = "/proc/mounts"; #endif |