3ff7c26
#!/bin/sh
3ff7c26
# Run from within a source tree.
3ff7c26
3ff7c26
for i in configs/kernel-*.config
3ff7c26
do
3ff7c26
  cp -f $i .config
3ff7c26
  Arch=`head -1 .config | cut -b 3-`
3ff7c26
  echo $Arch \($i\)
3ff7c26
  make ARCH=$Arch listnewconfig | grep -E '^CONFIG_' >.newoptions || true;
3ff7c26
  if [ -s .newoptions ]; then
3ff7c26
    cat .newoptions;
3ff7c26
    exit 1;
3ff7c26
  fi;
3ff7c26
  rm -f .newoptions;
3ff7c26
done
3ff7c26