2008年10月12日星期日

添加config文件

以前的项目是通过load config和save config来配置。现在想把config文件放到arch/mips/config下,我把文件t30x_gpioi2c_config放在该目录下,执行make t30x_gpioi2c_config

[root@sherman_samba linux-2.6.14.4]# make t30x_gpioi2c_config
make[1]: *** No rule to make target `t30x_gpioi2c_config'. Stop.
make: *** [t30x_gpioi2c_config] Error 2

没有这个目标,然后看根目录的Makefile,有这么一段
# Brief documentation of the typical targets used
# ---------------------------------------------------------------------------

boards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig)
boards := $(notdir $(boards))

所以它需要新的config文件是以_defconfig为结尾的,所以修改 t30x_gpioi2c_config为 t30x_gpioi2c_defconfig就可以了

没有评论: