Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1 | #!/bin/sh |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 2 | # Make busybox links list file. |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 3 | |
Eric Andersen | a68b21a | 2001-01-26 20:31:02 +0000 | [diff] [blame] | 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 | |
Eric Andersen | 39eea89 | 2001-03-08 21:42:11 +0000 | [diff] [blame] | 10 | export LC_ALL=POSIX |
| 11 | export LC_CTYPE=POSIX |
| 12 | |
Eric Andersen | 3cd2760 | 2001-10-24 07:58:02 +0000 | [diff] [blame] | 13 | CONFIG_H=${1:-include/config.h} |
| 14 | APPLETS_H=${2:-include/applets.h} |
Eric Andersen | 868c057 | 2000-12-02 00:44:48 +0000 | [diff] [blame] | 15 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | |
| 16 | awk '/^[ \t]*LINK/{ |
Eric Andersen | a68b21a | 2001-01-26 20:31:02 +0000 | [diff] [blame] | 17 | dir=substr($2,8) |
Eric Andersen | 868c057 | 2000-12-02 00:44:48 +0000 | [diff] [blame] | 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 | }' |