1999-10-05 21:54:54 +05:30
|
|
|
#!/bin/sh
|
2000-02-07 10:59:42 +05:30
|
|
|
# Make busybox links list file.
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
DF="busybox.def.h"
|
1999-10-07 01:55:32 +05:30
|
|
|
MF="busybox.c"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-04-06 13:07:35 +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
|