瀏覽代碼

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>
Tyler Hall 12 年之前
父節點
當前提交
4ff3a7835a
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      recipes-kernel/linux/linux-raspberrypi_3.2.27.bb

+ 3 - 3
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
 }