diff options
author | Rob Landley <rob@landley.net> | 2005-08-20 05:07:08 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-08-20 05:07:08 +0000 |
commit | d00b3a5e944e7499bd061c0b8f9d9f0847528fce (patch) | |
tree | 2bec1c6e32716bf8bc204ed411e6287ee728e3f9 /include/applets.h | |
parent | fc3f048f8f6de2132c83bbd1124dabd0990a952b (diff) | |
download | busybox-d00b3a5e944e7499bd061c0b8f9d9f0847528fce.tar.gz |
Bernhard Fischer provided a mountpoint(1) applet. This is apparently something
sysvinit provides, and which is used by the debian init scripts.
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index e2fe25167..a4e78af57 100644 --- a/include/applets.h +++ b/include/applets.h @@ -435,6 +435,9 @@ #ifdef CONFIG_MOUNT APPLET(mount, mount_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif +#ifdef CONFIG_MOUNTPOINT + APPLET(mountpoint, mountpoint_main, _BB_DIR_BIN, _BB_SUID_NEVER) +#endif #ifdef CONFIG_MSH APPLET_NOUSAGE("msh", msh_main, _BB_DIR_BIN, _BB_SUID_NEVER) #endif |