From 26465a829f2237e3e2738f1d6a53b3e899d9081c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 22 Mar 2011 11:26:32 +0100 Subject: [PATCH] config/functions: remove strip_kmod function Signed-off-by: Stephan Raue --- config/functions | 5 ----- 1 file changed, 5 deletions(-) diff --git a/config/functions b/config/functions index d7ca75667b..4ab3eb1e6a 100644 --- a/config/functions +++ b/config/functions @@ -154,8 +154,3 @@ strip_linker_plugin() { # strip out usage from linker plugin LDFLAGS=`echo $LDFLAGS | sed -e "s|-fuse-linker-plugin||"` } - -strip_kmod() { - [ -z $1 ] && echo "usage strip_kmod " && exit 1 - find $1 -type f -name '*.ko' | xargs -r $STRIP --strip-debug -}