aboutsummaryrefslogtreecommitdiff
path: root/applets/busybox.mkll
diff options
context:
space:
mode:
Diffstat (limited to 'applets/busybox.mkll')
-rwxr-xr-xapplets/busybox.mkll24
1 files changed, 24 insertions, 0 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll
new file mode 100755
index 000000000..6d61f7e82
--- /dev/null
+++ b/applets/busybox.mkll
@@ -0,0 +1,24 @@
1#!/bin/sh
2# Make busybox links list file.
3
4# input $1: full path to Config.h
5# input $2: full path to applets.h
6# output (stdout): list of pathnames that should be linked to busybox
7
8# Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
9
10export LC_ALL=POSIX
11export LC_CTYPE=POSIX
12
13CONFIG_H=${1:-include/autoconf.h}
14APPLETS_H=${2:-include/applets.h}
15$HOSTCC -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
16 awk '/^[ \t]*LINK/{
17 dir=substr($2,8)
18 gsub("_","/",dir)
19 if(dir=="/ROOT") dir=""
20 file=$3
21 gsub("\"","",file)
22 if (file=="busybox") next
23 print tolower(dir) "/" file
24 }'