Olddefconfig is not supported by legacy kernel

This commit is contained in:
zador-blood-stained 2015-12-08 17:09:13 +03:00
parent 051e3f0b2b
commit dfa5564f48

View file

@ -162,7 +162,11 @@ export LOCALVERSION="-"$LINUXFAMILY
# this way of compilation is much faster. We can use multi threading here but not later
if [ "$KERNEL_CONFIGURE" != "yes" ]; then
make $CTHREADS ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- olddefconfig
if [ "$BRANCH" = "default" ]; then
make $CTHREADS ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- silentoldconfig
else
make $CTHREADS ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- olddefconfig
fi
else
make $CTHREADS ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- oldconfig
fi