diff options
author | Kristian Amlie <kristian.amlie@mender.io> | 2016-12-16 08:32:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-17 09:57:37 +0000 |
commit | d0d260b0b85790ceb136dd6b0445e8e33d038f5e (patch) | |
tree | 5d6c913972a7810eea2d0fd774d5e8e0e2b7ce96 | |
parent | 7379035e2653be8bf632f767706f48244c0ff970 (diff) | |
download | poky-d0d260b0b85790ceb136dd6b0445e8e33d038f5e.tar.gz |
u-boot/beaglebone: Select Beaglebone Black target specifically.
The am335x_evm_config target has a subtle problem which is not present
in the am335x_boneblack_config target: When booting from an external
MMC card, the internal MMC is not accessible using the former target.
This problem was introduced in U-Boot in commit 80b24fcd3083515e6b961,
due to the addition of the CONFIG_DM_MMC option, and the
am335x_boneblack_config target does not have this problem.
(From meta-yocto rev: 18d0692f70e05b382e8404dbed34e9fad7f348aa)
Signed-off-by: Kristian Amlie <kristian.amlie@mender.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-yocto-bsp/conf/machine/beaglebone.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf index fc6a5277b2..24a95b4ced 100644 --- a/meta-yocto-bsp/conf/machine/beaglebone.conf +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf | |||
@@ -31,7 +31,7 @@ KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" | |||
31 | 31 | ||
32 | SPL_BINARY = "MLO" | 32 | SPL_BINARY = "MLO" |
33 | UBOOT_SUFFIX = "img" | 33 | UBOOT_SUFFIX = "img" |
34 | UBOOT_MACHINE = "am335x_evm_config" | 34 | UBOOT_MACHINE = "am335x_boneblack_config" |
35 | UBOOT_ENTRYPOINT = "0x80008000" | 35 | UBOOT_ENTRYPOINT = "0x80008000" |
36 | UBOOT_LOADADDRESS = "0x80008000" | 36 | UBOOT_LOADADDRESS = "0x80008000" |
37 | 37 | ||