Removes allarchconfig.sh

Functionality already implemented in kernel.spec file.

Signed-off-by: Miguel Flores Silverio <floresmigu3l@gmail.com>
This commit is contained in:
Miguel Flores Silverio 2016-06-10 12:30:46 -07:00 committed by Laura Abbott
parent af16af05c2
commit 4f7dd5f508

View File

@ -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