hush/busybox.mkll

20 lines
558 B
Plaintext
Raw Normal View History

1999-10-05 16:24:54 +00:00
#!/bin/sh
# Make busybox links list file.
1999-10-05 16:24:54 +00:00
DF="busybox.def.h"
1999-10-06 20:25:32 +00:00
MF="busybox.c"
1999-10-05 16:24:54 +00:00
LIST="$(gcc -E -dM $DF | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/BB_\1/gp;' | sort)"
1999-10-05 16:24:54 +00:00
1999-10-06 20:25:32 +00:00
for def in ${LIST}; do
2000-03-16 08:09:09 +00:00
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-06 20:25:32 +00:00
done