busybox/applets/busybox.mkll

20 lines
553 B
Plaintext
Raw Normal View History

1999-10-05 21:54:54 +05:30
#!/bin/sh
# Make busybox links list file.
1999-10-05 21:54:54 +05:30
DF="Config.h"
MF="applets.h"
1999-10-05 21:54:54 +05:30
LIST="$(gcc -E -dM $DF | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/BB_\1/gp;' | sort)"
1999-10-05 21:54:54 +05:30
1999-10-07 01:55:32 +05:30
for def in ${LIST}; do
2000-03-16 13:39:09 +05:30
i=`sed -n '/^#ifdef \<'$def'\>.*/,/^#endif/{ s/.*\"\(.*\)\".*\(_BB_DIR_[A-Z_]*\).*$/\2\/\1/gp; }' $MF`
for j in $i; do
if [ -z $j ] ; then
continue;
fi;
echo $j | sed -e 's/_BB_DIR_ROOT//g;s/_BB_DIR_BIN/\/bin/g;' \
-e 's/_BB_DIR_SBIN/\/sbin/g;s/_BB_DIR_USR_BIN/\/usr\/bin/g;' \
-e 's/_BB_DIR_USR_SBIN/\/usr\/sbin/g;'
done;
1999-10-07 01:55:32 +05:30
done