]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - post/post.c
* Patches by Yuli Barcohen, 13 Jul 2003:
[people/ms/u-boot.git] / post / post.c
index 9d62f4088815d90117936b27c1c784dc3014f1e4..323447d1b3bfe94f6dec001cdec5500067e813f8 100644 (file)
@@ -68,7 +68,7 @@ void post_bootmode_init (void)
        if (bootmode == 0) {
                bootmode = POST_POWERON;
        } else if (bootmode == POST_POWERON) {
-               bootmode = POST_POWERNORMAL;
+               bootmode = POST_NORMAL;
        } else {
                return;
        }
@@ -153,8 +153,8 @@ static void post_bootmode_test_off (void)
 
 static void post_get_flags (int *test_flags)
 {
-       int flag[] = { POST_POWERON, POST_POWERNORMAL, POST_POWERFAIL };
-       char *var[] = { "post_poweron", "post_normal", "post_shutdown" };
+       int  flag[] = {  POST_POWERON,   POST_NORMAL,   POST_SLOWTEST };
+       char *var[] = { "post_poweron", "post_normal", "post_slowtest" };
        int varnum = sizeof (var) / sizeof (var[0]);
        char list[128];                 /* long enough for POST list */
        char *name;