Yocto 中是否有类似于 buildroot 的任何 .config 文件
Is there any .config file in Yocto similar to buildroot
我之前使用的是 buildroot,现在我正在切换到 Yocto。 buildroot 生成的 .config 文件包含所有将出现在文件系统中的包、使用的编译器、内核版本和引导加载程序等。
我们在 Yocto 中有类似的东西吗?或者是否有像 make menuconfig
.
这样的 bitbake 命令
我在食谱中看到过如下几行:
if 'CONFIG_UBOOT=y\n' in features:
这里的features
是什么意思
感谢您的宝贵时间
yocto 中没有 .config,但 yocto 在位于
的 .manifest 文件中维护安装在 rootfs 映像中的软件包列表
Manifest Path: build/tmp/deploy/images/<machine>/<rootfs_image_name>.manifest.
我之前使用的是 buildroot,现在我正在切换到 Yocto。 buildroot 生成的 .config 文件包含所有将出现在文件系统中的包、使用的编译器、内核版本和引导加载程序等。
我们在 Yocto 中有类似的东西吗?或者是否有像 make menuconfig
.
我在食谱中看到过如下几行:
if 'CONFIG_UBOOT=y\n' in features:
这里的features
是什么意思
感谢您的宝贵时间
yocto 中没有 .config,但 yocto 在位于
的 .manifest 文件中维护安装在 rootfs 映像中的软件包列表Manifest Path: build/tmp/deploy/images/<machine>/<rootfs_image_name>.manifest.