Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些自定义包添加到 OpenWRT AA,这取决于busybox。据观察,OpenWRT AA 在制作基础文件包之前构建了我的自定义包。所以在我的自定义包构建期间busybox不可用并且我的图像构建失败。有没有办法在 OpenWRT 中配置包构建的顺序?
OpenWRT 使用字母顺序来编译额外的包,例如,如果你的包是基本文件的一部分,那么大写字母(你的包名的开始字母)将首先被编译,然后是小写字母的包。如果您希望在您的包之前编译其他包,那么您可以将 DEPENDS:= 添加到您的自定义包元数据中。