apgo in Bug 322 writes: kill off CONFIG_FEATURE_MTAB_FILENAME

This commit is contained in:
Mike Frysinger 2005-07-30 08:48:10 +00:00
parent 69024551bf
commit b953134bba

View File

@ -25,8 +25,8 @@
/* 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 bb_path_mtab_file[] = CONFIG_FEATURE_MTAB_FILENAME;
#if defined(CONFIG_FEATURE_MTAB_SUPPORT)
const char bb_path_mtab_file[] = "/etc/mtab";
#else
const char bb_path_mtab_file[] = "/proc/mounts";
#endif