Skip to content
Snippets Groups Projects
Commit 0f0e7352 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

don't try to strip kernel modules

SVN-Revision: 3859
parent fe780507
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ TARGETS=$* ...@@ -15,7 +15,7 @@ TARGETS=$*
exit 1 exit 1
} }
find $TARGETS -type f -a -exec file {} \; | \ find $TARGETS -type f -not -name \*.o -not -name \*.ko -a -exec file {} \; | \
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|relocatable\|shared object\).*, not stripped/\1:\2/p' | \ sed -n -e 's/^\(.*\):.*ELF.*\(executable\|relocatable\|shared object\).*, not stripped/\1:\2/p' | \
( (
IFS=":" IFS=":"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment