diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-29 21:59:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-29 21:59:10 +0000 |
commit | 2e5411518fa6a5bed67aa9ea7e8ca87b273ab509 (patch) | |
tree | ee8031909cdc845250be25bffbad2686b2ec4d50 /scripts/gen-dependencies.sh | |
parent | 46b1577bfc903fcd8c301124e62a61d85e42e0cd (diff) | |
download | upstream-2e5411518fa6a5bed67aa9ea7e8ca87b273ab509.tar.gz upstream-2e5411518fa6a5bed67aa9ea7e8ca87b273ab509.tar.bz2 upstream-2e5411518fa6a5bed67aa9ea7e8ca87b273ab509.zip |
scripts: gen-dependencies.sh: fix kmod dependency generation
Do not output faulty ".ko" dependency if a scanned .ko file has an empty
"depends=" specification, also replace the `grep | sed | awk` chain with a
single sed program.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44206
Diffstat (limited to 'scripts/gen-dependencies.sh')
-rwxr-xr-x | scripts/gen-dependencies.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/gen-dependencies.sh b/scripts/gen-dependencies.sh index 85962e74b2..567fe151a0 100755 --- a/scripts/gen-dependencies.sh +++ b/scripts/gen-dependencies.sh @@ -28,8 +28,6 @@ tmp=`mktemp $TMP_DIR/dep.XXXXXXXX` for kmod in `find $TARGETS -type f -name \*.ko`; do $OBJCOPY -O binary -j .modinfo $kmod $tmp sed -e 's,\x00,\n,g' $tmp | \ - egrep -a '^depends=' | \ - sed -e 's,^depends=,,' -e 's/,/\n/g' | \ - awk '{ print $1 ".ko" }' + sed -ne '/^depends=.\+/ { s/^depends=//; s/\(,\|$\)/.ko\n/gp; q }' done | sort -u rm -f $tmp |