diff options
author | Miguel Flores Silverio <floresmigu3l@gmail.com> | 2016-06-10 12:30:46 -0700 |
---|---|---|
committer | Laura Abbott <labbott@fedoraproject.org> | 2016-06-14 08:29:43 -0700 |
commit | 4f7dd5f5086c76d10e0144403e5aa7febdae666b (patch) | |
tree | a29dba1628f97329b51368eb5af66177a25a2b89 /scripts | |
parent | af16af05c2a8710cf5c13df64d9baf096b3cd0d8 (diff) | |
download | kernel-4f7dd5f5086c76d10e0144403e5aa7febdae666b.tar.gz kernel-4f7dd5f5086c76d10e0144403e5aa7febdae666b.tar.xz kernel-4f7dd5f5086c76d10e0144403e5aa7febdae666b.zip |
Removes allarchconfig.sh
Functionality already implemented in kernel.spec file.
Signed-off-by: Miguel Flores Silverio <floresmigu3l@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/allarchconfig.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/allarchconfig.sh b/scripts/allarchconfig.sh deleted file mode 100755 index f80c23197..000000000 --- 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 - |