Making the BSP Layer compatible with the daisy release (v1.6).

Adding necessary changes in linux-rockchip-3.0.inc in order to make it work with last kernel.bbclass
This commit is contained in:
Romain Perier 2014-04-27 16:33:56 +00:00
parent 034137530d
commit aeb75814ba

View File

@ -21,3 +21,11 @@ do_configure_prepend() {
# Fix arch QA issues ("Architecture did not match")
rm -f ${S}/mkkrnlimg
}
do_install_prepend() {
# Dummy Makefile so the make target "clean _mrproper_scripts" from kernel.bbclass works.
# This is required since the release "daisy".
kerneldir=${D}${KERNEL_SRC_PATH}
install -d $kerneldir/arch/arm/plat-rk/rk_pm_tests
touch $kerneldir/arch/arm/plat-rk/rk_pm_tests/Makefile
}