diff options
Diffstat (limited to 'include/post.h')
-rw-r--r-- | include/post.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/post.h b/include/post.h index 8f8f185..0f63668 100644 --- a/include/post.h +++ b/include/post.h @@ -30,8 +30,8 @@ #ifdef CONFIG_POST #define POST_POWERON 0x01 /* test runs on power-on booting */ -#define POST_POWERNORMAL 0x02 /* test runs on normal booting */ -#define POST_POWERFAIL 0x04 /* test runs on power-fail booting */ +#define POST_NORMAL 0x02 /* test runs on normal booting */ +#define POST_SLOWTEST 0x04 /* test is slow, enabled by key press */ #define POST_POWERTEST 0x08 /* test runs after watchdog reset */ #define POST_ROM 0x0100 /* test runs in ROM */ @@ -41,9 +41,9 @@ #define POST_PREREL 0x1000 /* test runs before relocation */ #define POST_MEM (POST_RAM | POST_ROM) -#define POST_ALWAYS (POST_POWERNORMAL | \ - POST_POWERFAIL | \ - POST_MANUAL | \ +#define POST_ALWAYS (POST_NORMAL | \ + POST_SLOWTEST | \ + POST_MANUAL | \ POST_POWERON ) #ifndef __ASSEMBLY__ @@ -71,6 +71,7 @@ unsigned long post_time_ms (unsigned long base); extern struct post_test post_list[]; extern unsigned int post_list_size; +extern int post_hotkeys_pressed(gd_t *); #endif /* __ASSEMBLY__ */ |