Skip to content

Commit

Permalink
Merge pull request #2555 from Raybuntu/strip_addon_drivers
Browse files Browse the repository at this point in the history
Fix wrong Strip with 64/32 in linux driver addons
  • Loading branch information
CvH committed Mar 5, 2018
2 parents cd0335c + c555d2f commit b1f27de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/functions
Expand Up @@ -562,7 +562,7 @@ install_driver_addon_files() {
mkdir -p $PKG_MODULE_DIR
find $@ -name \*.ko -exec cp {} $PKG_MODULE_DIR \;

find $PKG_MODULE_DIR -name \*.ko -exec $STRIP --strip-debug {} \;
find $PKG_MODULE_DIR -name \*.ko -exec ${TARGET_KERNEL_PREFIX}strip --strip-debug {} \;

mkdir -p $PKG_ADDON_DIR
cp $PKG_DIR/changelog.txt $PKG_ADDON_DIR
Expand Down

0 comments on commit b1f27de

Please sign in to comment.