diff options
author | Tyler Hall <tylerwhall@gmail.com> | 2012-09-26 00:15:50 -0400 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2012-09-27 17:06:57 +0300 |
commit | 4ff3a7835a7525e5b4f84a6030d8d87562917eab (patch) | |
tree | 72cbaaebaa9f267cfed180edf6fde7fa3a00a5e1 | |
parent | 09e966ec4e535c96290f10888e8233df6018b9e1 (diff) | |
download | meta-raspberrypi-4ff3a7835a7525e5b4f84a6030d8d87562917eab.tar.gz |
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>
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi_3.2.27.bb | 6 |
1 files 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 | |||
4 | 4 | ||
5 | DESCRIPTION = "Linux kernel for the RaspberryPi board" | 5 | DESCRIPTION = "Linux kernel for the RaspberryPi board" |
6 | 6 | ||
7 | PR = "r3" | 7 | PR = "r4" |
8 | 8 | ||
9 | # Bump MACHINE_KERNEL_PR in the machine config if you update the kernel. | 9 | # Bump MACHINE_KERNEL_PR in the machine config if you update the kernel. |
10 | # This is on the rpi-3.2.27 branch | 10 | # This is on the rpi-3.2.27 branch |
@@ -39,6 +39,6 @@ do_install_prepend() { | |||
39 | 39 | ||
40 | do_deploy_append() { | 40 | do_deploy_append() { |
41 | # Deploy cmdline.txt | 41 | # Deploy cmdline.txt |
42 | install -d ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles | 42 | install -d ${DEPLOYDIR}/bcm2835-bootfiles |
43 | echo "${CMDLINE}" > ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles/cmdline.txt | 43 | echo "${CMDLINE}" > ${DEPLOYDIR}/bcm2835-bootfiles/cmdline.txt |
44 | } | 44 | } |