From c30ab0f4a8f5c7101a6b897d43d87b1f97f8971d Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sat, 10 Feb 2001 02:04:40 +0000 Subject: [PATCH] New applet: dpkg --- Config.h | 1 + applets.h | 3 +++ applets/usage.c | 8 ++++++++ include/applets.h | 3 +++ usage.c | 8 ++++++++ 5 files changed, 23 insertions(+) diff --git a/Config.h b/Config.h index 517fa2873..65d57d20e 100644 --- a/Config.h +++ b/Config.h @@ -25,6 +25,7 @@ #define BB_DIRNAME #define BB_DMESG //#define BB_DOS2UNIX +//#define BB_DPKG //#define BB_DPKG_DEB //#define BB_DUTMP #define BB_DU diff --git a/applets.h b/applets.h index 80ff1feb3..582b2fa38 100644 --- a/applets.h +++ b/applets.h @@ -89,6 +89,9 @@ const struct BB_applet applets[] = { #ifdef BB_DOS2UNIX APPLET("dos2unix", dos2unix_main, _BB_DIR_USR_BIN, dos2unix_usage) #endif +#ifdef BB_DPKG + APPLET("dpkg", dpkg_main, _BB_DIR_USR_BIN, dpkg_usage) +#endif #ifdef BB_DPKG_DEB APPLET("dpkg-deb", dpkg_deb_main, _BB_DIR_USR_BIN, dpkg_deb_usage) #endif diff --git a/applets/usage.c b/applets/usage.c index 1686910d5..6f5b3c47e 100644 --- a/applets/usage.c +++ b/applets/usage.c @@ -241,6 +241,14 @@ const char dos2unix_usage[] = ; #endif +#if defined BB_DPKG +const char dpkg_usage[] = + "udpkg <-i|-r|--unpack|--configure> my.deb" +#ifndef BB_FEATURE_TRIVIAL_HELP +#endif + ; +#endif + #if defined BB_DPKG_DEB const char dpkg_deb_usage[] = "dpkg-deb [-cexX] file directory" diff --git a/include/applets.h b/include/applets.h index 80ff1feb3..582b2fa38 100644 --- a/include/applets.h +++ b/include/applets.h @@ -89,6 +89,9 @@ const struct BB_applet applets[] = { #ifdef BB_DOS2UNIX APPLET("dos2unix", dos2unix_main, _BB_DIR_USR_BIN, dos2unix_usage) #endif +#ifdef BB_DPKG + APPLET("dpkg", dpkg_main, _BB_DIR_USR_BIN, dpkg_usage) +#endif #ifdef BB_DPKG_DEB APPLET("dpkg-deb", dpkg_deb_main, _BB_DIR_USR_BIN, dpkg_deb_usage) #endif diff --git a/usage.c b/usage.c index 1686910d5..6f5b3c47e 100644 --- a/usage.c +++ b/usage.c @@ -241,6 +241,14 @@ const char dos2unix_usage[] = ; #endif +#if defined BB_DPKG +const char dpkg_usage[] = + "udpkg <-i|-r|--unpack|--configure> my.deb" +#ifndef BB_FEATURE_TRIVIAL_HELP +#endif + ; +#endif + #if defined BB_DPKG_DEB const char dpkg_deb_usage[] = "dpkg-deb [-cexX] file directory"