转载地址http://blog.csdn.net/lyf_1203/article/details/7434256
下载的内容,转载上面的地址,里面写的两个问题,我都有遇到,并用下面的方法都解决了。
1.make 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-
2.make 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