The following used to work:
ARCH=ia64 KBUILD_DEFCONFIG=bigsur_defconfig make defconfig
Now 2.6.25 makes you do:
ARCH=ia64 make KBUILD_DEFCONFIG=bigsur_defconfig defconfig
Is this my intent?
It seems like the arch/<xxxx>/Makefile files should be:
KBUILD_DEFCONFIG ?= generic_defconfig
Instead of
KBUILD_DEFCONFIG := generic_defconfig
--