diff options
author | David-John Willis <John.Willis@Distant-earth.com> | 2012-05-16 13:48:25 -0700 |
---|---|---|
committer | David-John Willis <John.Willis@Distant-earth.com> | 2012-05-16 13:48:25 -0700 |
commit | 03d3e7e6325d919ff2c64c39edd9008d0a93c7a4 (patch) | |
tree | 9c1cf211bcf96edd89b585846e5781f09056347a | |
parent | 2a76170e153066a60def337d7447bd44a3aa34d9 (diff) | |
parent | 54324ca7fd33d9c80714d3cd84f40fa6d95a11ac (diff) | |
download | meta-raspberrypi-03d3e7e6325d919ff2c64c39edd9008d0a93c7a4.tar.gz |
Merge pull request #1 from bluelightning/master
PULL REQUEST: A few minor changes
-rw-r--r-- | README | 4 | ||||
-rwxr-xr-x | recipes-bcm/bootfiles/bcm2835-bootfiles.bb | 14 | ||||
-rwxr-xr-x | recipes-bcm/bootfiles/bcm2835-bootfiles/LICENCE | 3 | ||||
-rwxr-xr-x | recipes-kernel/linux/linux-raspberrypi_3.1.9.bb | 4 |
4 files changed, 10 insertions, 15 deletions
@@ -23,10 +23,6 @@ URI: git://git.openembedded.org/meta-openembedded | |||
23 | branch: master | 23 | branch: master |
24 | revision: HEAD | 24 | revision: HEAD |
25 | 25 | ||
26 | URI: git://git.angstrom-distribution.org/meta-angstrom | ||
27 | branch: master | ||
28 | revision: HEAD | ||
29 | |||
30 | It is preferred that people raise pull requests using GIThub by forking the appropriate tree: | 26 | It 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 @@ | |||
1 | DESCRIPTION = "Closed source binary files to help boot the ARM on the BCM2835." | 1 | DESCRIPTION = "Closed source binary files to help boot the ARM on the BCM2835." |
2 | LICENSE = "proprietary-binary" | 2 | LICENSE = "proprietary-binary" |
3 | 3 | ||
4 | LIC_FILES_CHKSUM = "file://LICENCE;md5=d2defdc6f09addccc73d83b74f2dda58" | 4 | LIC_FILES_CHKSUM = "file://LICENCE.broadcom;md5=e86e693d19572ee64cc8b17fb062faa9" |
5 | 5 | ||
6 | # This is on the master branch | 6 | # This is on the master branch |
7 | SRCREV = "78d00079176a2751be9dd226f8463cbcc9c55073" | 7 | SRCREV = "56cd7ffb3f7244017c8eb3b492ea37592c678506" |
8 | 8 | ||
9 | SRC_URI = " \ | 9 | SRC_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 | ||
14 | S = "${WORKDIR}" | 13 | S = "${WORKDIR}/git/boot" |
15 | BOOT_FILES = "${S}/git/boot" | ||
16 | 14 | ||
17 | PR = "r0" | 15 | PR = "r1" |
18 | 16 | ||
19 | addtask deploy before do_package after do_install | 17 | addtask deploy before do_package after do_install |
20 | 18 | ||
21 | do_deploy() { | 19 | do_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 @@ | |||
1 | Proprietary binary firmware provided by Broadcom. | ||
2 | |||
3 | It 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 | ||
5 | DESCRIPTION = "Linux kernel for the RaspberryPi board" | 5 | DESCRIPTION = "Linux kernel for the RaspberryPi board" |
6 | 6 | ||
7 | PR = "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 |
9 | SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc" | 11 | SRCREV = "0ec4154d64ebba48ca2446cde60a90546311defc" |
@@ -20,6 +22,8 @@ S = "${WORKDIR}/git" | |||
20 | 22 | ||
21 | KERNEL_DEFCONFIG = "bcmrpi_defconfig" | 23 | KERNEL_DEFCONFIG = "bcmrpi_defconfig" |
22 | 24 | ||
25 | PARALLEL_MAKEINST = "" | ||
26 | |||
23 | do_configure_prepend() { | 27 | do_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 | } |