aboutsummaryrefslogtreecommitdiff
path: root/busybox.sh
diff options
context:
space:
mode:
Diffstat (limited to 'busybox.sh')
-rwxr-xr-xbusybox.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/busybox.sh b/busybox.sh
index 304ac87e7..c4e241f84 100755
--- a/busybox.sh
+++ b/busybox.sh
@@ -1,3 +1,10 @@
1#!/bin/sh 1#!/bin/sh
2sed -n -e 's/^#define.*BB_FEATURE.*$//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/;' \ 2
3 -e '/^#define/{s/.*bb_//;s/$/.o/p;}' busybox.def.h 3# I added in the extra "ls" so only source files that
4# actually exist will show up in the compile list.
5ls -1 ` \
6 cpp busybox.def.h -dM | \
7 sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
8 | tr [:upper:] [:lower:] | sort
9` 2>/dev/null | sed -e 's/\.c$/\.o/g'
10