s3c2410_defconfig
***
*** Can't find default configuration "arch/i386/configs/s3c2410_defconfig"!
***
make[1]: *** [s3c2410_defconfig] Error 1
make: *** [s3c2410_defconfig] Error 2
解决方法:
修改顶层Makefile文件
ARCH ?= $(SUBARCH)
CROSS_COMPILE ?=
改成:
ARCH ?= arm
CROSS_COMPILE ?= arm-linux-
(注意:后面不要加空格,否则试一下就知道了,哈哈)
menuconfig
Unable to find the ncurses libraries
*** Unable to find the ncurses libraries or the
*** required header files.
*** 'make menuconfig' requires the ncurses libraries.
***
*** Install ncurses (ncurses-devel) and try again.
***
make[1]: *** [scripts/kconfig/dochecklxdialog] Error 1
make: *** [menuconfig] Error 2
解决方法
sudo apt-get install ncurses-dev