diff options
author | Liming Wang <liming.wang@windriver.com> | 2013-09-04 15:08:29 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-04 11:00:14 +0100 |
commit | 3aa68fd9014a4745486a2e8ab03292b39ce11862 (patch) | |
tree | 50b59c21c032d0ba8b6b0076a4907007e0344965 /meta-yocto-bsp/conf/machine | |
parent | e3bc93c2eb6232f0c25517de3376a4d3c814f4f7 (diff) | |
download | poky-3aa68fd9014a4745486a2e8ab03292b39ce11862.tar.gz |
beagleboard: upgrade u-boot to the latest version
Now the latest version of u-boot is 2013.07 and it depends on
its own MLO, instead of x-load, as the Second Program Loader. So remove
x-load and use u-boot's MLO.
And also replace u-boot.bin with u-boot.img as the u-boot image file.
(From meta-yocto rev: 468326eca78f1fc16f83d2a1fc06a66fae2e6ba1)
Signed-off-by: Liming Wang <liming.wang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp/conf/machine')
-rw-r--r-- | meta-yocto-bsp/conf/machine/beagleboard.conf | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/beagleboard.conf b/meta-yocto-bsp/conf/machine/beagleboard.conf index 6633880da1..5f4c55a7b5 100644 --- a/meta-yocto-bsp/conf/machine/beagleboard.conf +++ b/meta-yocto-bsp/conf/machine/beagleboard.conf | |||
@@ -13,7 +13,7 @@ XSERVER ?= "xserver-xorg \ | |||
13 | MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" | 13 | MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" |
14 | 14 | ||
15 | # Allow for MMC booting (required by the NAND-less Beagleboard XM) | 15 | # Allow for MMC booting (required by the NAND-less Beagleboard XM) |
16 | EXTRA_IMAGEDEPENDS += "u-boot x-load" | 16 | EXTRA_IMAGEDEPENDS += "u-boot" |
17 | 17 | ||
18 | # Uncomment the following line to enable the hard floating point abi. Note that | 18 | # Uncomment the following line to enable the hard floating point abi. Note that |
19 | # this breaks some binary libraries and 3D (neither of which ship with | 19 | # this breaks some binary libraries and 3D (neither of which ship with |
@@ -33,6 +33,8 @@ PREFERRED_VERSION_linux-yocto ?= "3.4%" | |||
33 | 33 | ||
34 | KERNEL_IMAGETYPE = "uImage" | 34 | KERNEL_IMAGETYPE = "uImage" |
35 | 35 | ||
36 | SPL_BINARY = "MLO" | ||
37 | UBOOT_SUFFIX = "img" | ||
36 | UBOOT_MACHINE = "omap3_beagle_config" | 38 | UBOOT_MACHINE = "omap3_beagle_config" |
37 | UBOOT_ENTRYPOINT = "0x80008000" | 39 | UBOOT_ENTRYPOINT = "0x80008000" |
38 | UBOOT_LOADADDRESS = "0x80008000" | 40 | UBOOT_LOADADDRESS = "0x80008000" |