From: Kevin Mihelich <ke...@archlinuxarm.org>

Remove the individual attempts to load using ext2 and fat, replace with the
generic load command supporting available filesystem types.

Signed-off-by: Kevin Mihelich <ke...@archlinuxarm.org>
---
 include/configs/nitrogen6x.h | 20 ++++++++------------
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h
index 21a25e0..2167d77 100644
--- a/include/configs/nitrogen6x.h
+++ b/include/configs/nitrogen6x.h
@@ -270,13 +270,11 @@
                                "usb start ;" \
                        "fi; " \
                        "for disk in 0 1 ; do ${dtype} dev ${disk} ;" \
-                               "for fs in fat ext2 ; do " \
-                                       "${fs}load " \
-                                               "${dtype} ${disk}:1 " \
-                                               "10008000 " \
-                                               "/6x_bootscript" \
-                                               "&& source 10008000 ; " \
-                               "done ; " \
+                               "load " \
+                                       "${dtype} ${disk}:1 " \
+                                       "10008000 " \
+                                       "/6x_bootscript" \
+                                       "&& source 10008000 ; " \
                        "done ; " \
                "done; " \
                "setenv stdout serial,vga ; " \
@@ -287,11 +285,9 @@
        "upgradeu=for dtype in ${bootdevs}" \
                "; do " \
                "for disk in 0 1 ; do ${dtype} dev ${disk} ;" \
-                    "for fs in fat ext2 ; do " \
-                               "${fs}load ${dtype} ${disk}:1 10008000 " \
-                                       "/6x_upgrade " \
-                                       "&& source 10008000 ; " \
-                       "done ; " \
+                       "load ${dtype} ${disk}:1 10008000 " \
+                               "/6x_upgrade " \
+                               "&& source 10008000 ; " \
                "done ; " \
        "done\0" \
 
-- 
1.9.1

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to