summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-05-15 11:54:51 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2012-05-15 14:29:14 +0100
commitc8057784c18687ac787bd60eb68993a1b0933e18 (patch)
tree394b42472410fb48a4ee64b3e193d100088e60c2
parent595b974df1e122609add5891764edb8d452f04c4 (diff)
downloadmeta-raspberrypi-c8057784c18687ac787bd60eb68993a1b0933e18.tar.gz
linux-raspberrypi: fix for parallel make install failures
Disable parallel "make install" as this seems to fail with -j4. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rwxr-xr-xrecipes-kernel/linux/linux-raspberrypi_3.1.9.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi_3.1.9.bb b/recipes-kernel/linux/linux-raspberrypi_3.1.9.bb
index 8a24051..1ab698b 100755
--- a/recipes-kernel/linux/linux-raspberrypi_3.1.9.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_3.1.9.bb
@@ -4,6 +4,8 @@ require linux.inc
4 4
5DESCRIPTION = "Linux kernel for the RaspberryPi board" 5DESCRIPTION = "Linux kernel for the RaspberryPi board"
6 6
7PR = "r1"
8
7# 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.
8# This is on the rpi-patches branch 10# This is on the rpi-patches branch
9SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc" 11SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc"
@@ -20,6 +22,8 @@ S = "${WORKDIR}/git"
20 22
21KERNEL_DEFCONFIG = "bcmrpi_defconfig" 23KERNEL_DEFCONFIG = "bcmrpi_defconfig"
22 24
25PARALLEL_MAKEINST = ""
26
23do_configure_prepend() { 27do_configure_prepend() {
24 install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." 28 install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
25} 29}