From c555d2facb032e1afb33c6ebc388eaffa5fd1e6c Mon Sep 17 00:00:00 2001 From: Radostan Riedel Date: Mon, 5 Mar 2018 13:24:55 +0100 Subject: [PATCH] Fix wrong Strip with 64/32 in linux driver addons --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/functions b/config/functions index 3d2d5b6b49..192dda68f5 100644 --- a/config/functions +++ b/config/functions @@ -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