I've been looking into the reason why my wandboard would
not boot Fedora reliably.  I would typically get one
good boot every 3 or 4 tries.

It is late, and I need to stop now, but the following
proposed patch to uboot allows my board to boot without
errors, at least a dozen times in a row, which it has
never done before.

Basically, cmdtp->name is not valid for some reason,
so uboot goes off into the weeds.  I have not tracked
down the explanation, but if anyone else would like to
give this a try, I'd very much appreciate the feedback.

Signed-off-by: Steven A. Falco <[email protected]>

--

diff -ur BUILD.original/u-boot-2013.07/common/cmd_bootm.c 
BUILD/u-boot-2013.07/common/cmd_bootm.c
--- BUILD.original/u-boot-2013.07/common/cmd_bootm.c    2013-07-23 
07:58:13.000000000 -0400
+++ BUILD/u-boot-2013.07/common/cmd_bootm.c     2013-09-21 21:08:10.623374338 
-0400
@@ -997,7 +998,7 @@
                break;
 #endif
        default:
-               printf("Wrong Image Format for %s command\n", cmdtp->name);
+               printf("Wrong Image Format for command\n");
                bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
                return NULL;
        }


_______________________________________________
arm mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/arm

Reply via email to