From 4ff3a7835a7525e5b4f84a6030d8d87562917eab Mon Sep 17 00:00:00 2001 From: Tyler Hall Date: Wed, 26 Sep 2012 00:15:50 -0400 Subject: 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 --- recipes-kernel/linux/linux-raspberrypi_3.2.27.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-kernel/linux/linux-raspberrypi_3.2.27.bb b/recipes-kernel/linux/linux-raspberrypi_3.2.27.bb index 905eb55..33b89d8 100644 --- a/recipes-kernel/linux/linux-raspberrypi_3.2.27.bb +++ b/recipes-kernel/linux/linux-raspberrypi_3.2.27.bb @@ -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 } -- cgit v1.2.3-54-g00ecf