From 4f7dd5f5086c76d10e0144403e5aa7febdae666b Mon Sep 17 00:00:00 2001 From: Miguel Flores Silverio Date: Jun 14 2016 15:29:43 +0000 Subject: Removes allarchconfig.sh Functionality already implemented in kernel.spec file. Signed-off-by: Miguel Flores Silverio --- diff --git a/scripts/allarchconfig.sh b/scripts/allarchconfig.sh deleted file mode 100755 index f80c231..0000000 --- a/scripts/allarchconfig.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# Run from within a source tree. - -for i in configs/kernel-*.config -do - cp -f $i .config - Arch=`head -1 .config | cut -b 3-` - echo $Arch \($i\) - make ARCH=$Arch listnewconfig | grep -E '^CONFIG_' >.newoptions || true; - if [ -s .newoptions ]; then - cat .newoptions; - exit 1; - fi; - rm -f .newoptions; -done -