859e808709
Set_boot_successful depends on CMOS parts that non-PC80 platforms do not have. For now, make the current path depend on CONFIG_PC80_SYSTEM, and make the alternative empty. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Signed-off-by: Stefan Reinauer <reinauer@google.com> Change-Id: I68cf63367c8054d09a7a22303e7c04fb35ad0153 Reviewed-on: http://review.coreboot.org/1954 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks <dhendrix@chromium.org>
12 lines
200 B
C
12 lines
200 B
C
#ifndef FALLBACK_H
|
|
#define FALLBACK_H
|
|
|
|
#if !defined(__ASSEMBLER__) && !defined(__PRE_RAM__)
|
|
|
|
void boot_successful(void);
|
|
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#define RTC_BOOT_BYTE 48
|
|
|
|
#endif /* FALLBACK_H */
|