diff options
author | John Crispin <blogic@openwrt.org> | 2014-11-26 09:00:56 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-11-26 09:00:56 +0000 |
commit | dadf44d9bbd7a4e55b5cd206fa118a8ca310e6b0 (patch) | |
tree | 6b09cb57009a5bbfd3ba50723f3cdc53904b2ab9 /package/boot | |
parent | 71d392cfcc06fa944c4a69e2b6be1090ec146415 (diff) | |
download | upstream-dadf44d9bbd7a4e55b5cd206fa118a8ca310e6b0.tar.gz upstream-dadf44d9bbd7a4e55b5cd206fa118a8ca310e6b0.tar.bz2 upstream-dadf44d9bbd7a4e55b5cd206fa118a8ca310e6b0.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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43392 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/boot')
-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 " \ |