Another whack at scripts/individual. Now builds 212 applets.
This commit is contained in:
parent
e55a73c7a8
commit
519d7df930
@ -10,7 +10,7 @@ APPLETS_DIR:=$(top_builddir)/applets/
|
|||||||
endif
|
endif
|
||||||
srcdir=$(top_srcdir)/applets
|
srcdir=$(top_srcdir)/applets
|
||||||
|
|
||||||
APPLET_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c version.c)
|
APPLET_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c)
|
||||||
APPLET_OBJ:= $(patsubst $(srcdir)/%.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
|
APPLET_OBJ:= $(patsubst $(srcdir)/%.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
|
||||||
|
|
||||||
APPLET_SRC-y+=$(APPLET_SRC)
|
APPLET_SRC-y+=$(APPLET_SRC)
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
/* vi: set sw=4 ts=4: */
|
|
||||||
/*
|
|
||||||
* Version stuff.
|
|
||||||
*
|
|
||||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "busybox.h"
|
|
||||||
|
|
||||||
#ifndef BB_EXTRA_VERSION
|
|
||||||
#define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
|
|
||||||
#else
|
|
||||||
#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const char BB_BANNER[]=BANNER;
|
|
||||||
const char * const bb_msg_full_version = BANNER " multi-call binary";
|
|
@ -8,16 +8,10 @@
|
|||||||
* owner/group, will probably modify bb_make_directory(...)
|
* owner/group, will probably modify bb_make_directory(...)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <getopt.h> /* struct option */
|
|
||||||
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
#include "libcoreutils/coreutils.h"
|
#include "libcoreutils/coreutils.h"
|
||||||
|
#include <libgen.h>
|
||||||
|
#include <getopt.h> /* struct option */
|
||||||
|
|
||||||
#define INSTALL_OPT_CMD 1
|
#define INSTALL_OPT_CMD 1
|
||||||
#define INSTALL_OPT_DIRECTORY 2
|
#define INSTALL_OPT_DIRECTORY 2
|
||||||
|
@ -222,8 +222,10 @@ extern void chomp(char *s);
|
|||||||
extern void trim(char *s);
|
extern void trim(char *s);
|
||||||
extern char *skip_whitespace(const char *);
|
extern char *skip_whitespace(const char *);
|
||||||
|
|
||||||
|
#ifndef BUILD_INDIVIDUAL
|
||||||
extern struct BB_applet *find_applet_by_name(const char *name);
|
extern struct BB_applet *find_applet_by_name(const char *name);
|
||||||
void run_applet_by_name(const char *name, int argc, char **argv);
|
void run_applet_by_name(const char *name, int argc, char **argv);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* dmalloc will redefine these to it's own implementation. It is safe
|
/* dmalloc will redefine these to it's own implementation. It is safe
|
||||||
* to have the prototypes here unconditionally. */
|
* to have the prototypes here unconditionally. */
|
||||||
|
@ -154,6 +154,7 @@ __extension__ typedef unsigned long long __u64;
|
|||||||
|
|
||||||
#if defined __GLIBC__ || defined __UCLIBC__ \
|
#if defined __GLIBC__ || defined __UCLIBC__ \
|
||||||
|| defined __dietlibc__ || defined _NEWLIB_VERSION
|
|| defined __dietlibc__ || defined _NEWLIB_VERSION
|
||||||
|
#define _XOPEN_SOURCE
|
||||||
#include <features.h>
|
#include <features.h>
|
||||||
#define HAVE_FEATURES_H
|
#define HAVE_FEATURES_H
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -9,12 +9,14 @@
|
|||||||
|
|
||||||
#ifdef L_full_version
|
#ifdef L_full_version
|
||||||
#ifndef BB_EXTRA_VERSION
|
#ifndef BB_EXTRA_VERSION
|
||||||
#define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_BT ")"
|
#define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
|
||||||
#else
|
#else
|
||||||
#define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_EXTRA_VERSION ")"
|
#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
|
||||||
#endif
|
#endif
|
||||||
const char * const libbb_msg_full_version = LIBBB_BANNER;
|
const char BB_BANNER[]=BANNER;
|
||||||
|
const char * const bb_msg_full_version = BANNER " multi-call binary";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef L_memory_exhausted
|
#ifdef L_memory_exhausted
|
||||||
const char * const bb_msg_memory_exhausted = "memory exhausted";
|
const char * const bb_msg_memory_exhausted = "memory exhausted";
|
||||||
#endif
|
#endif
|
||||||
|
@ -208,7 +208,7 @@ pid_t spawn(char **argv)
|
|||||||
{
|
{
|
||||||
static int failed;
|
static int failed;
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
void *app = find_applet_by_name(argv[0]);
|
void *app = ENABLE_FEATURE_SH_STANDALONE_SHELL ? find_applet_by_name(argv[0]) : 0;
|
||||||
|
|
||||||
// Be nice to nommu machines.
|
// Be nice to nommu machines.
|
||||||
failed = 0;
|
failed = 0;
|
||||||
|
@ -59,6 +59,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
#include <libgen.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
|
|
||||||
#if !defined(CONFIG_FEATURE_2_4_MODULES) && \
|
#if !defined(CONFIG_FEATURE_2_4_MODULES) && \
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Compile individual versions of each busybox applet.
|
||||||
|
|
||||||
|
if [ $# -eq 0 ]
|
||||||
|
then
|
||||||
|
|
||||||
# Clear out the build directory. (Make clean should do this instead of here.)
|
# Clear out the build directory. (Make clean should do this instead of here.)
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
@ -23,30 +28,62 @@ cd archival/libunarchive
|
|||||||
make
|
make
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
||||||
|
# And again
|
||||||
|
|
||||||
|
cd coreutils/libcoreutils
|
||||||
|
make
|
||||||
|
cd ../..
|
||||||
|
|
||||||
|
# Sensing a pattern here?
|
||||||
|
|
||||||
|
#cd networking/libiproute
|
||||||
|
#make
|
||||||
|
#cd ../..
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
# About 3/5 of the applets build from one .c file (with the same name as the
|
# About 3/5 of the applets build from one .c file (with the same name as the
|
||||||
# corresponding applet), and all it needs to link against. However, to build
|
# corresponding applet), and all it needs to link against. However, to build
|
||||||
# them all we need more than that.
|
# them all we need more than that.
|
||||||
|
|
||||||
# Figure out which applets need extra libraries added to their command line.
|
# Figure out which applets need extra libraries added to their command line.
|
||||||
|
|
||||||
function extra_libraries()
|
function substithing()
|
||||||
{
|
{
|
||||||
archival="ar bunzip2 unlzma cpio dpkg gunzip rpm2cpio rpm tar uncompress unzip dpkg_deb gzip "
|
if [ "${1/ $3 //}" != "$1" ]
|
||||||
if [ "${archival/$1 //}" != "${archival}" ]
|
|
||||||
then
|
then
|
||||||
echo "archival/libunarchive/libunarchive.a"
|
echo $2
|
||||||
fi
|
|
||||||
|
|
||||||
# What needs -libm?
|
|
||||||
|
|
||||||
libm="awk dc "
|
|
||||||
if [ "${libm/$1 //}" != "${libm}" ]
|
|
||||||
then
|
|
||||||
echo "-lm"
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Query applets.h to figure out which need something funky
|
function extra_libraries()
|
||||||
|
{
|
||||||
|
# gzip needs gunzip.c (when gunzip is enabled, anyway).
|
||||||
|
substithing " gzip " "archival/gunzip.c archival/uncompress.c" "$1"
|
||||||
|
|
||||||
|
# init needs init_shared.c
|
||||||
|
substithing " init " "init/init_shared.c" "$1"
|
||||||
|
|
||||||
|
# ifconfig needs interface.c
|
||||||
|
substithing " ifconfig " "networking/interface.c" "$1"
|
||||||
|
|
||||||
|
# Applets that need libunarchive.a
|
||||||
|
substithing " ar bunzip2 unlzma cpio dpkg gunzip rpm2cpio rpm tar uncompress unzip dpkg_deb gzip " "archival/libunarchive/libunarchive.a" "$1"
|
||||||
|
|
||||||
|
# Applets that need libcoreutils.a
|
||||||
|
substithing " cp mv " "coreutils/libcoreutils/libcoreutils.a" "$1"
|
||||||
|
|
||||||
|
# Applets that need libiproute.a
|
||||||
|
substithing " ip " "networking/libiproute/libiproute.a" "$1"
|
||||||
|
|
||||||
|
# What needs -libm?
|
||||||
|
substithing " awk dc " "-lm" "$1"
|
||||||
|
|
||||||
|
# What needs -lcrypt?
|
||||||
|
substithing " httpd vlock " "-lcrypt" "$1"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Query applets.h to figure out which applets need special treatment
|
||||||
|
|
||||||
strange_names=`sed -rn -e 's/\#.*//' -e 's/.*APPLET_NOUSAGE\(([^,]*),([^,]*),.*/\1 \2/p' -e 's/.*APPLET_ODDNAME\(([^,]*),([^,]*),.*, *([^)]*).*/\1 \2@\3/p' include/applets.h`
|
strange_names=`sed -rn -e 's/\#.*//' -e 's/.*APPLET_NOUSAGE\(([^,]*),([^,]*),.*/\1 \2/p' -e 's/.*APPLET_ODDNAME\(([^,]*),([^,]*),.*, *([^)]*).*/\1 \2@\3/p' include/applets.h`
|
||||||
|
|
||||||
@ -59,7 +96,7 @@ function bonkname()
|
|||||||
APPFILT="${2/@*/}"
|
APPFILT="${2/@*/}"
|
||||||
if [ "${APPFILT}" == "$2" ]
|
if [ "${APPFILT}" == "$2" ]
|
||||||
then
|
then
|
||||||
HELPNAME='"nousage\n"'
|
HELPNAME='"nousage\n"' # These should be _fixed_.
|
||||||
else
|
else
|
||||||
HELPNAME="${2/*@/}"_full_usage
|
HELPNAME="${2/*@/}"_full_usage
|
||||||
fi
|
fi
|
||||||
@ -70,14 +107,17 @@ function bonkname()
|
|||||||
#echo APPLET=${APPLET} APPFILT=${APPFILT} HELPNAME=${HELPNAME} 2=${2}
|
#echo APPLET=${APPLET} APPFILT=${APPFILT} HELPNAME=${HELPNAME} 2=${2}
|
||||||
}
|
}
|
||||||
|
|
||||||
for APPLET in `sed 's .*/ ' busybox.links`
|
# Iterate through every name in busybox.links
|
||||||
do
|
|
||||||
export APPLET
|
function buildit ()
|
||||||
|
{
|
||||||
|
export APPLET="$1"
|
||||||
export APPFILT=${APPLET}
|
export APPFILT=${APPLET}
|
||||||
export HELPNAME=${APPLET}_full_usage
|
export HELPNAME=${APPLET}_full_usage
|
||||||
|
|
||||||
bonkname $strange_names
|
bonkname $strange_names
|
||||||
|
|
||||||
j=`find . -name "${APPFILT}.c"`
|
j=`find archival console-tools coreutils debianutils editors findutils init loginutils miscutils modutils networking procps shell sysklogd util-linux -name "${APPFILT}.c"`
|
||||||
if [ -z "$j" ]
|
if [ -z "$j" ]
|
||||||
then
|
then
|
||||||
echo no file for $APPLET
|
echo no file for $APPLET
|
||||||
@ -86,13 +126,24 @@ do
|
|||||||
gcc -Os -o build/$APPLET applets/individual.c $j \
|
gcc -Os -o build/$APPLET applets/individual.c $j \
|
||||||
`extra_libraries $APPFILT` libbb/libbb.a -Iinclude \
|
`extra_libraries $APPFILT` libbb/libbb.a -Iinclude \
|
||||||
-DBUILD_INDIVIDUAL \
|
-DBUILD_INDIVIDUAL \
|
||||||
"-Drun_applet_by_name(...)" "-Dfind_applet_by_name(...) 0" \
|
'-Drun_applet_by_name(...)' '-Dfind_applet_by_name(...)=0' \
|
||||||
-DAPPLET_main=${APPFILT}_main -DAPPLET_full_usage=${HELPNAME}
|
-DAPPLET_main=${APPFILT}_main -DAPPLET_full_usage=${HELPNAME}
|
||||||
if [ $? -ne 0 ];
|
if [ $? -ne 0 ];
|
||||||
then
|
then
|
||||||
echo "Failed $APPLET"
|
echo "Failed $APPLET"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
}
|
||||||
|
|
||||||
|
if [ $# -eq 0 ]
|
||||||
|
then
|
||||||
|
for APPLET in `sed 's .*/ ' busybox.links`
|
||||||
|
do
|
||||||
|
buildit "$APPLET"
|
||||||
|
done
|
||||||
|
else
|
||||||
|
buildit "$1"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
strip build/*
|
strip build/*
|
||||||
|
Loading…
Reference in New Issue
Block a user