为旧内核设置buildroot

时间:2012-02-19 11:17:53

标签: linux makefile kernel cross-compiling buildroot

我正在尝试设置buildroot以交叉编译自定义应用。

/ # uname -a
Linux Venus 2.6.12.6-VENUS #323634 Wed May 25 13:40:36 CST 2011 mips unknown

到目前为止,我在buildroot中选择了内核版本 2.6.12.6 。现在我遇到的问题是make命令没有大吼大叫规则headers_install未知。

这是完成输出:

~/buildroot-2011.11$ make
(cd /root/buildroot-2011.11/output/toolchain/linux-2.6.12.6; \
         /usr/bin/make -j2 ARCH=mips \
                HOSTCC="/usr/bin/gcc" HOSTCFLAGS="" \
                HOSTCXX="/usr/bin/g++" \
                INSTALL_HDR_PATH=/root/buildroot-2011.11/output/toolchain/linux headers_install; \
        )
make[1]: Entering directory `/root/buildroot-2011.11/output/toolchain/linux-2.6.12.6'
Makefile:485: .config: Datei oder Verzeichnis nicht gefunden
make[1]: *** Keine Regel, um »headers_install« zu erstellen.  Schluss.
make[1]: Leaving directory `/root/buildroot-2011.11/output/toolchain/linux-2.6.12.6'
make: *** [/root/buildroot-2011.11/output/toolchain/linux/.configured] Fehler 2

我认为问题是这个旧内核在makefile中没有这个选项。

我的下一个尝试是使用新内核3.2.6的Makefile和scripts目录替换旧内核。

这是输出:

# make
(cd /root/buildroot-2011.11/output/toolchain/linux-2.6.12.6; \
         /usr/bin/make -j2 ARCH=mips \
                HOSTCC="/usr/bin/gcc" HOSTCFLAGS="" \
                HOSTCXX="/usr/bin/g++" \
                INSTALL_HDR_PATH=/root/buildroot-2011.11/output/toolchain/linux headers_install; \
        )
make[1]: Entering directory `/root/buildroot-2011.11/output/toolchain/linux-2.6.12.6'
  CHK     include/linux/version.h
  HOSTCC  scripts/basic/fixdep
  HOSTCC  scripts/unifdef
Makefile:1059: *** Headers not exportable for the mips architecture.  Schluss.
make[1]: Leaving directory `/root/buildroot-2011.11/output/toolchain/linux-2.6.12.6'
make: *** [/root/buildroot-2011.11/output/toolchain/linux/.configured] Fehler 2

不知道我现在可以尝试什么。我该怎么办?

3 个答案:

答案 0 :(得分:5)

构建交叉编译工具链的所有现代工具都依赖于实现headers_install目标的内核。正如Shawn所建议的那样,你可以尝试使用较旧的Buildroot版本,但我认为我们已经使用headers_install这么长时间了,所以你必须回到过去,面对很多其他的问题。

如何升级内核呢?

答案 1 :(得分:0)

如果您使用buildroot从头开始使用工具链,您可以自定义工具链的头文件,然后自定义内核以匹配工具链,这样就可以了。

答案 2 :(得分:0)

您必须将 headers_install 替换为文件中的安装

  

包/ Linux的融合/ linux-fusion.mk

有行

  

$(TARGET_CONFIGURE_OPTS)$(MAKE)$(LINUX_FUSION_MAKE_OPTS)INSTALL_MOD_PATH = $(STAGING_DIR)-C $(@ D) headers_install

找到here