linux-raspberrypi: Use sstate DEPLOYDIR

Using DEPLOY_DIR_IMAGE bypasses the sstate cache. This causes a build
failure when the kernel is pulled from sstate.

Signed-off-by: Tyler Hall <tylerwhall@gmail.com>
This commit is contained in:
Tyler Hall 2012-09-26 00:15:50 -04:00 committed by Andrei Gherzan
parent 09e966ec4e
commit 4ff3a7835a

View File

@ -4,7 +4,7 @@ require linux.inc
DESCRIPTION = "Linux kernel for the RaspberryPi board"
PR = "r3"
PR = "r4"
# Bump MACHINE_KERNEL_PR in the machine config if you update the kernel.
# This is on the rpi-3.2.27 branch
@ -39,6 +39,6 @@ do_install_prepend() {
do_deploy_append() {
# Deploy cmdline.txt
install -d ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
echo "${CMDLINE}" > ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles/cmdline.txt
install -d ${DEPLOYDIR}/bcm2835-bootfiles
echo "${CMDLINE}" > ${DEPLOYDIR}/bcm2835-bootfiles/cmdline.txt
}