8655412673
- add some __PRE_RAM__ guards where needed - use OPTION_TABLE_H Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5317 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
13 lines
222 B
C
13 lines
222 B
C
#ifndef FALLBACK_H
|
|
#define FALLBACK_H
|
|
|
|
#if !defined(ASSEMBLY) && !defined(__PRE_RAM__)
|
|
|
|
void set_boot_successful(void);
|
|
void boot_successful(void);
|
|
|
|
#endif /* ASSEMBLY */
|
|
|
|
#define RTC_BOOT_BYTE 48
|
|
|
|
#endif /* FALLBACK_H */
|