summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid-John Willis <John.Willis@Distant-earth.com>2012-05-10 20:32:06 +0100
committerDavid-John Willis <John.Willis@Distant-earth.com>2012-05-10 20:32:06 +0100
commit2a76170e153066a60def337d7447bd44a3aa34d9 (patch)
tree3c215286e5dab80a1cb957006801fb8445ce6850
parentc20be94e434ea2eb2a0147e61b433585bcbf6913 (diff)
downloadmeta-raspberrypi-2a76170e153066a60def337d7447bd44a3aa34d9.tar.gz
bcm2835-kernel-image/bcm2835-mkimage: Make machine specific.
-rw-r--r--recipes-bcm/kernel-image/bcm2835-kernel-image.bb4
-rw-r--r--recipes-bcm/kernel-image/bcm2835-mkimage.bb4
2 files changed, 6 insertions, 2 deletions
diff --git a/recipes-bcm/kernel-image/bcm2835-kernel-image.bb b/recipes-bcm/kernel-image/bcm2835-kernel-image.bb
index 06325f8..ced20b0 100644
--- a/recipes-bcm/kernel-image/bcm2835-kernel-image.bb
+++ b/recipes-bcm/kernel-image/bcm2835-kernel-image.bb
@@ -2,7 +2,9 @@ DESCRIPTION = "Helper recipe to make the munged kernel.img image for the Raspber
2LICENSE = "MIT" 2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" 3LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
4 4
5PR = "${MACHINE_KERNEL_PR}.0" 5COMPATIBLE_MACHINE = "raspberrypi"
6PR = "${MACHINE_KERNEL_PR}.1"
7
6DEPENDS = "bcm2835-bootfiles bcm2835-mkimage-native" 8DEPENDS = "bcm2835-bootfiles bcm2835-mkimage-native"
7 9
8S = "${WORKDIR}" 10S = "${WORKDIR}"
diff --git a/recipes-bcm/kernel-image/bcm2835-mkimage.bb b/recipes-bcm/kernel-image/bcm2835-mkimage.bb
index 5afca12..83d5d26 100644
--- a/recipes-bcm/kernel-image/bcm2835-mkimage.bb
+++ b/recipes-bcm/kernel-image/bcm2835-mkimage.bb
@@ -1,6 +1,8 @@
1DESCRIPTION = "Tools to append 32KB binary header to kernel image." 1DESCRIPTION = "Tools to append 32KB binary header to kernel image."
2LICENSE = "proprietary-binary" 2LICENSE = "proprietary-binary"
3PR = "${MACHINE_KERNEL_PR}.2" 3
4COMPATIBLE_MACHINE = "raspberrypi"
5PR = "${MACHINE_KERNEL_PR}.3"
4 6
5SECTION = "bootloader" 7SECTION = "bootloader"
6 8