2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
2001-04-01 16:01:11 +00:00
|
|
|
#include "libbb.h"
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2004-03-15 08:29:22 +00:00
|
|
|
/* Busybox mount uses either /proc/mounts or /etc/mtab to
|
|
|
|
* get the list of currently mounted filesystems */
|
2007-08-12 20:58:27 +00:00
|
|
|
const char bb_path_mtab_file[] ALIGN1 =
|
2006-11-24 21:54:44 +00:00
|
|
|
USE_FEATURE_MTAB_SUPPORT("/etc/mtab")SKIP_FEATURE_MTAB_SUPPORT("/proc/mounts");
|