summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid-John Willis <John.Willis@Distant-earth.com>2012-05-16 13:48:25 -0700
committerDavid-John Willis <John.Willis@Distant-earth.com>2012-05-16 13:48:25 -0700
commit03d3e7e6325d919ff2c64c39edd9008d0a93c7a4 (patch)
tree9c1cf211bcf96edd89b585846e5781f09056347a
parent2a76170e153066a60def337d7447bd44a3aa34d9 (diff)
parent54324ca7fd33d9c80714d3cd84f40fa6d95a11ac (diff)
downloadmeta-raspberrypi-03d3e7e6325d919ff2c64c39edd9008d0a93c7a4.tar.gz
Merge pull request #1 from bluelightning/master
PULL REQUEST: A few minor changes
-rw-r--r--README4
-rwxr-xr-xrecipes-bcm/bootfiles/bcm2835-bootfiles.bb14
-rwxr-xr-xrecipes-bcm/bootfiles/bcm2835-bootfiles/LICENCE3
-rwxr-xr-xrecipes-kernel/linux/linux-raspberrypi_3.1.9.bb4
4 files changed, 10 insertions, 15 deletions
diff --git a/README b/README
index cd1903a..a667848 100644
--- a/README
+++ b/README
@@ -23,10 +23,6 @@ URI: git://git.openembedded.org/meta-openembedded
23branch: master 23branch: master
24revision: HEAD 24revision: HEAD
25 25
26URI: git://git.angstrom-distribution.org/meta-angstrom
27branch: master
28revision: HEAD
29
30It is preferred that people raise pull requests using GIThub by forking the appropriate tree: 26It is preferred that people raise pull requests using GIThub by forking the appropriate tree:
31 27
32 https://github.com/djwillis/ 28 https://github.com/djwillis/
diff --git a/recipes-bcm/bootfiles/bcm2835-bootfiles.bb b/recipes-bcm/bootfiles/bcm2835-bootfiles.bb
index 41c103a..c0e204d 100755
--- a/recipes-bcm/bootfiles/bcm2835-bootfiles.bb
+++ b/recipes-bcm/bootfiles/bcm2835-bootfiles.bb
@@ -1,29 +1,27 @@
1DESCRIPTION = "Closed source binary files to help boot the ARM on the BCM2835." 1DESCRIPTION = "Closed source binary files to help boot the ARM on the BCM2835."
2LICENSE = "proprietary-binary" 2LICENSE = "proprietary-binary"
3 3
4LIC_FILES_CHKSUM = "file://LICENCE;md5=d2defdc6f09addccc73d83b74f2dda58" 4LIC_FILES_CHKSUM = "file://LICENCE.broadcom;md5=e86e693d19572ee64cc8b17fb062faa9"
5 5
6# This is on the master branch 6# This is on the master branch
7SRCREV = "78d00079176a2751be9dd226f8463cbcc9c55073" 7SRCREV = "56cd7ffb3f7244017c8eb3b492ea37592c678506"
8 8
9SRC_URI = " \ 9SRC_URI = " \
10 file://LICENCE \
11 git://github.com/raspberrypi/firmware.git;protocol=git;branch=master \ 10 git://github.com/raspberrypi/firmware.git;protocol=git;branch=master \
12" 11"
13 12
14S = "${WORKDIR}" 13S = "${WORKDIR}/git/boot"
15BOOT_FILES = "${S}/git/boot"
16 14
17PR = "r0" 15PR = "r1"
18 16
19addtask deploy before do_package after do_install 17addtask deploy before do_package after do_install
20 18
21do_deploy() { 19do_deploy() {
22 install -d ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles 20 install -d ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
23 for i in ${BOOT_FILES}/*.elf ; do 21 for i in *.elf ; do
24 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles 22 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
25 done 23 done
26 for i in ${BOOT_FILES}/*.bin ; do 24 for i in *.bin ; do
27 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles 25 cp $i ${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles
28 done 26 done
29} 27}
diff --git a/recipes-bcm/bootfiles/bcm2835-bootfiles/LICENCE b/recipes-bcm/bootfiles/bcm2835-bootfiles/LICENCE
deleted file mode 100755
index e7f7f9f..0000000
--- a/recipes-bcm/bootfiles/bcm2835-bootfiles/LICENCE
+++ /dev/null
@@ -1,3 +0,0 @@
1Proprietary binary firmware provided by Broadcom.
2
3It is distributed with the express permission of the RaspberryPi foundation.
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}