diff options
author | Eric Andersen | 1999-10-05 16:24:54 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-05 16:24:54 +0000 |
commit | cc8ed39b240180b58810784f844e253263594ac3 (patch) | |
tree | 15feebbb4be9a9168209609f48f0b100f9364420 /applets/busybox.mkll | |
download | busybox-cc8ed39b240180b58810784f844e253263594ac3.zip busybox-cc8ed39b240180b58810784f844e253263594ac3.tar.gz |
Initial revision0_29alpha2
Diffstat (limited to 'applets/busybox.mkll')
-rwxr-xr-x | applets/busybox.mkll | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll new file mode 100755 index 0000000..e43a1cc --- /dev/null +++ b/applets/busybox.mkll @@ -0,0 +1,17 @@ +#!/bin/sh +#Make busybox links list file + +DF="busybox.def.h" +MF="main.c" + +LIST="$(sed -n '/^#define/{s/^#define //p;}' $DF)" + + for def in ${LIST}; do + + set -- $(sed -n '/^#ifdef '$def'[ +| +].*/,/^#endif/{s/.*\/\///p; /^{ /{ s/^{ "//; s/",.*$//p;}; }' $MF) + path=$1; shift + + for n in $@; do + echo "$path/$n" + done + done |