diff options
author | John Crispin <john@openwrt.org> | 2014-11-26 09:00:56 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-11-26 09:00:56 +0000 |
commit | a91b2eb5f4b898205ba4962be6560deab304c39c (patch) | |
tree | 0ab9df88c146ab1277849ea562653b8e8fb4c5c6 /package/boot/uboot-omap | |
parent | 8dfb87bebc2c64863d75c0248b73a7144c3c00c9 (diff) | |
download | upstream-a91b2eb5f4b898205ba4962be6560deab304c39c.tar.gz upstream-a91b2eb5f4b898205ba4962be6560deab304c39c.tar.bz2 upstream-a91b2eb5f4b898205ba4962be6560deab304c39c.zip |
uboot-omap: add C4 revision in findfdt
fixes BeagleBoard C4 detection
error message in serial console was:
"WARNING: Could not determine device tree to use"
change is found in upstream u-boot
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 43392
Diffstat (limited to 'package/boot/uboot-omap')
-rw-r--r-- | package/boot/uboot-omap/patches/003-fix_findfdt_C4.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/boot/uboot-omap/patches/003-fix_findfdt_C4.patch b/package/boot/uboot-omap/patches/003-fix_findfdt_C4.patch new file mode 100644 index 0000000000..b0b85e5f51 --- /dev/null +++ b/package/boot/uboot-omap/patches/003-fix_findfdt_C4.patch @@ -0,0 +1,11 @@ +--- a/include/configs/omap3_beagle.h ++++ b/include/configs/omap3_beagle.h +@@ -242,6 +242,8 @@ + "setenv fdtfile omap3-beagle.dtb; fi; " \ + "if test $beaglerev = Cx; then " \ + "setenv fdtfile omap3-beagle.dtb; fi; " \ ++ "if test $beaglerev = C4; then " \ ++ "setenv fdtfile omap3-beagle.dtb; fi; " \ + "if test $beaglerev = xMAB; then " \ + "setenv fdtfile omap3-beagle-xm.dtb; fi; " \ + "if test $beaglerev = xMC; then " \ |