我喜歡爲我的RPI2 +自定義板刪除一些未使用的驅動程序。對於我創建通過自己的配置:如何在yocto中爲樹莓派使用自己的內核配置?
bitbake linux-raspberrypi -c menuconfig
和新的內核預設保存到文件defconfig
。
之後,我爲linux-raspberryp配方創建了一個附加文件。
所以我創建的文件
linux-raspberrypi%.bbappend
,並填寫它:
FILESEXTRAPATHS_prepend := "${THISDIR}/linux-raspberrypi:"
SRC_URI += "file://defconfig"
PACKAGE_ARCH = "raspberrypi2"
我把defconfig文件:
:<meta-mylayer>/recipes-kernel/linux/linux-raspberrypi/raspberrypi2/defconfig
當通過重新編譯內核
bitbake linux-raspberrypi -c clean
bitbake linux-raspberrypi
採用標準RPI2配置。
任何想法如何克服這個問題? 我正在研究meta-raspberrypi和yocto的「實際」pyro分支。