summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2012-02-13 11:40:27 -0700
committerDenys Dmytriyenko <denys@ti.com>2012-02-20 21:29:45 -0500
commit5bd4167ac1580bb9a1a6efb55c0006a365342201 (patch)
tree88e6fb7075c1e94df100cecbb320b8cf9d9838f3
parent0022cd46d184d1d758fea6eceec7dc1719ad3d5d (diff)
downloadmeta-ti-5bd4167ac1580bb9a1a6efb55c0006a365342201.tar.gz
u-boot 2011.12: Add fw_env.config for beagleboard
beagleboard provides a correct fw_env.config file so add to the SRC_URI and RRECOMMENDS on u-boot-fw-utils. Signed-off-by: Tom Rini <trini@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r--recipes-bsp/u-boot/u-boot_2011.12.bb9
1 files changed, 8 insertions, 1 deletions
diff --git a/recipes-bsp/u-boot/u-boot_2011.12.bb b/recipes-bsp/u-boot/u-boot_2011.12.bb
index 36108379..35ffd4b7 100644
--- a/recipes-bsp/u-boot/u-boot_2011.12.bb
+++ b/recipes-bsp/u-boot/u-boot_2011.12.bb
@@ -6,7 +6,7 @@ UBOOT_IMAGE = "u-boot-${MACHINE}-${PV}-${PR}.img"
6UBOOT_SYMLINK = "u-boot-${MACHINE}.img" 6UBOOT_SYMLINK = "u-boot-${MACHINE}.img"
7 7
8PV = "2011.12" 8PV = "2011.12"
9PR = "r4" 9PR = "r5"
10 10
11# No patches for other machines yet 11# No patches for other machines yet
12COMPATIBLE_MACHINE = "(beagleboard|pandaboard|hawkboard|am3517-evm|am37x-evm|omap3evm)" 12COMPATIBLE_MACHINE = "(beagleboard|pandaboard|hawkboard|am3517-evm|am37x-evm|omap3evm)"
@@ -15,6 +15,10 @@ COMPATIBLE_MACHINE = "(beagleboard|pandaboard|hawkboard|am3517-evm|am37x-evm|oma
15CACHEFIX = "file://2011.12/0008-Revert-armv7-disable-L2-cache-in-cleanup_before_linu.patch" 15CACHEFIX = "file://2011.12/0008-Revert-armv7-disable-L2-cache-in-cleanup_before_linu.patch"
16CACHEFIX_omap4 = "" 16CACHEFIX_omap4 = ""
17 17
18# File is board-specific, only copy when it will be correct.
19FWENV_beagleboard = "file://fw_env.config"
20FWENV = ""
21
18SRC_URI = "git://www.denx.de/git/u-boot.git;protocol=git \ 22SRC_URI = "git://www.denx.de/git/u-boot.git;protocol=git \
19 file://2011.12/0001-beagleboard-mount-rootfs-RO-instead-of-RW-at-boot.patch \ 23 file://2011.12/0001-beagleboard-mount-rootfs-RO-instead-of-RW-at-boot.patch \
20 file://2011.12/0002-beagleboard-add-support-for-TCT-Beacon-board.patch \ 24 file://2011.12/0002-beagleboard-add-support-for-TCT-Beacon-board.patch \
@@ -26,6 +30,7 @@ SRC_URI = "git://www.denx.de/git/u-boot.git;protocol=git \
26 ${CACHEFIX} \ 30 ${CACHEFIX} \
27 file://2011.12/0009-Beagleboard-Correct-memory-size-on-rev-C4.patch \ 31 file://2011.12/0009-Beagleboard-Correct-memory-size-on-rev-C4.patch \
28 file://2011.12/0010-OMAP3-Correct-get_sdr_cs_offset-mask.patch \ 32 file://2011.12/0010-OMAP3-Correct-get_sdr_cs_offset-mask.patch \
33 ${FWENV} \
29 " 34 "
30 35
31 36
@@ -35,3 +40,5 @@ SRCREV = "cba9a894fdb1cb49b60fcd1d1d6919cbd7995dd5"
35LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb" 40LIC_FILES_CHKSUM = "file://COPYING;md5=1707d6db1d42237583f50183a5651ecb"
36 41
37S = "${WORKDIR}/git" 42S = "${WORKDIR}/git"
43
44RRECOMMENDS_${PN}_beagleboard = "u-boot-fw-utils"