1999-10-05 21:54:54 +05:30
|
|
|
#!/bin/sh
|
2000-02-07 10:59:42 +05:30
|
|
|
# Make busybox links list file.
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2001-01-27 02:01:02 +05:30
|
|
|
# input $1: full path to Config.h
|
|
|
|
# input $2: full path to applets.h
|
|
|
|
# output (stdout): list of pathnames that should be linked to busybox
|
|
|
|
|
|
|
|
# Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
|
|
|
|
|
2001-03-09 03:12:11 +05:30
|
|
|
export LC_ALL=POSIX
|
|
|
|
export LC_CTYPE=POSIX
|
|
|
|
|
2001-10-24 13:28:02 +05:30
|
|
|
CONFIG_H=${1:-include/config.h}
|
|
|
|
APPLETS_H=${2:-include/applets.h}
|
2000-12-02 06:14:48 +05:30
|
|
|
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
|
|
|
|
awk '/^[ \t]*LINK/{
|
2001-01-27 02:01:02 +05:30
|
|
|
dir=substr($2,8)
|
2000-12-02 06:14:48 +05:30
|
|
|
gsub("_","/",dir)
|
|
|
|
if(dir=="/ROOT") dir=""
|
|
|
|
file=$3
|
|
|
|
gsub("\"","",file)
|
|
|
|
if (file=="busybox") next
|
|
|
|
print tolower(dir) "/" file
|
|
|
|
}'
|