diff options
author | Matt Kraai | 2002-03-20 17:38:37 +0000 |
---|---|---|
committer | Matt Kraai | 2002-03-20 17:38:37 +0000 |
commit | 83788da25055c4a2775c3d78a29255ee671141bb (patch) | |
tree | 0b3bc1a959cb05eed021051978f7af1cc9c3108d /include/applets.h | |
parent | 27eff033d20198f04ecf44af93988b89363650e4 (diff) | |
download | busybox-83788da25055c4a2775c3d78a29255ee671141bb.zip busybox-83788da25055c4a2775c3d78a29255ee671141bb.tar.gz |
* include/applets.h (CONFIG_LOSETUP): New.
* include/usage.h (losetup_trivial_usage, losetup_full_usage): New.
* util-linux/Makefile: Add losetup.o.
* util-linux/config.in: Add losetup prompt.
* util-linux/losetup.c: New.
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 0d310bd..6760fc5 100644 --- a/include/applets.h +++ b/include/applets.h @@ -269,6 +269,9 @@ #ifdef CONFIG_LOGREAD APPLET(logread, logread_main, _BB_DIR_SBIN) #endif +#ifdef CONFIG_LOSETUP + APPLET(losetup, losetup_main, _BB_DIR_SBIN) +#endif #ifdef CONFIG_LS APPLET(ls, ls_main, _BB_DIR_BIN) #endif |