From 0f628eed012affd0dead4ecdad8d7f0b60d4af91 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 30 Nov 2010 09:28:13 +0100 Subject: [PATCH] config/functions: fix kernel module stripping Signed-off-by: Stephan Raue --- config/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/functions b/config/functions index 63c15fcb25..3b61da0767 100644 --- a/config/functions +++ b/config/functions @@ -154,5 +154,5 @@ strip_linker_plugin() { strip_kmod() { [ -z $1 ] && echo "usage strip_kmod " && exit 1 - find $1 -type f -name '*.ko' | xargs -r $STRIP -R .comment -R .note -g --strip-unneeded + find $1 -type f -name '*.ko' | xargs -r $STRIP --strip-debug }