Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'applets/busybox.mkll')
-rwxr-xr-xapplets/busybox.mkll17
1 files changed, 17 insertions, 0 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll
new file mode 100755
index 000000000..e43a1ccb0
--- /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