使用 Buildroot Menuconfig 启用驱动程序

问题描述 投票:0回答:1

我有一个 Beaglebone Black (BBB),我想使用 Buildroot 为其创建启动映像。在 Buildroot 中,我使用

make beaglebone_defconfig
创建了一个 .config 文件。然后我运行
make menuconfig
,因为我想向构建添加驱动程序。我在菜单中找不到任何位置来添加驱动程序。特别是,我想添加 ADAU1761 音频编解码器驱动程序。有什么方法可以从 Buildroot 的 menuconfig 中执行此操作吗?如果没有,我有什么选择(假设我想坚持使用 Buildroot 作为我的构建工具)?我意识到我还必须修改设备树以添加编解码器,但目前我只是尝试启用编解码器驱动程序以确保它是构建的一部分。

buildroot
1个回答
0
投票

make menuconfig
允许调整 Buildroot 配置,但不能调整 Linux 内核配置。要调整 Linux 内核配置,请运行
make linux-menuconfig
,这将启动 Linux 内核的菜单配置。

请参阅 https://bootlin.com/doc/training/buildroot/buildroot-slides.pdf 从第 76 张幻灯片开始,了解有关 Linux 内核配置的更多详细信息

© www.soinside.com 2019 - 2024. All rights reserved.