Cleanup patch from larry doolittle
-Erik
This commit is contained in:
parent
6e25f92636
commit
a68b21a28e
@ -1,12 +1,17 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Make busybox links list file.
|
# Make busybox links list file.
|
||||||
|
|
||||||
|
# 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>
|
||||||
|
|
||||||
CONFIG_H=${1:-Config.h}
|
CONFIG_H=${1:-Config.h}
|
||||||
APPLETS_H=${2:-applets.h}
|
APPLETS_H=${2:-applets.h}
|
||||||
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
|
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
|
||||||
awk '/^[ \t]*LINK/{
|
awk '/^[ \t]*LINK/{
|
||||||
match($2,"_BB_DIR[A-Z_]*")
|
dir=substr($2,8)
|
||||||
dir=substr($2,RSTART+7,RLENGTH-7)
|
|
||||||
gsub("_","/",dir)
|
gsub("_","/",dir)
|
||||||
if(dir=="/ROOT") dir=""
|
if(dir=="/ROOT") dir=""
|
||||||
file=$3
|
file=$3
|
||||||
|
@ -1,12 +1,17 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Make busybox links list file.
|
# Make busybox links list file.
|
||||||
|
|
||||||
|
# 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>
|
||||||
|
|
||||||
CONFIG_H=${1:-Config.h}
|
CONFIG_H=${1:-Config.h}
|
||||||
APPLETS_H=${2:-applets.h}
|
APPLETS_H=${2:-applets.h}
|
||||||
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
|
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
|
||||||
awk '/^[ \t]*LINK/{
|
awk '/^[ \t]*LINK/{
|
||||||
match($2,"_BB_DIR[A-Z_]*")
|
dir=substr($2,8)
|
||||||
dir=substr($2,RSTART+7,RLENGTH-7)
|
|
||||||
gsub("_","/",dir)
|
gsub("_","/",dir)
|
||||||
if(dir=="/ROOT") dir=""
|
if(dir=="/ROOT") dir=""
|
||||||
file=$3
|
file=$3
|
||||||
|
Loading…
Reference in New Issue
Block a user