ARM 内核 defconfig 的 buildroot

发布于 2024-10-05 18:35:56 字数 357 浏览 6 评论 0原文

我正在尝试使用内核映像构建一个 buildroot,在执行 make menuconfigmake 后,我得到:

No kernel defconfig name specified, check your BR2_LINUX_KERNEL_DEFCONFIG setting

我可以将字符串设置为 defconfig,但我不知道该放什么。

我的目标系统是 AT91SAM9RL 板。

编辑:我发现某些设备有一些预制的配置文件,实际上与我的目标不完全匹配。

I am trying to build a buildroot with kernel image, and after doing make menuconfig and make, I am getting:

No kernel defconfig name specified, check your BR2_LINUX_KERNEL_DEFCONFIG setting

I can set a string to the defconfig, but I don't know what to put there.

My target system is an AT91SAM9RL board.

edit: I found out there are some pre-made config files to some devices, actually not exactly matching to my target.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

<逆流佳人身旁 2024-10-12 18:35:56

您可以通过运行 make xxx_defconfig 来发出默认配置过程,并且 make 目标是文件夹 arch/arm/configs/ 中的一个文件。这些默认配置并非旨在完全适合您的目标,而是旨在成为超集,因此您只需对它们进行一些修改即可。

make xxx_defconfig 创建您的初始 .config,您现在可以通过 make menuconfig 对其进行编辑并进行更改。之后,您可以运行make,它将使用您的设置编译内核。

You can issue the default configuration process by running make xxx_defconfig and that make target is a file in the folder arch/arm/configs/. These default configurations are not designed to exactly fit your target, but are rather meant to be a superset so you only have to modify them a bit.

The make xxx_defconfig creates your initial .config, which you can now edit through make menuconfig and make your changes. After that, you can run make which will then compile the kernel using your settings.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文