mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
Fix a simple error in stage1.c (missing else).
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@548 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
parent
75c6c210de
commit
06f72c080f
1 changed files with 2 additions and 2 deletions
|
@ -176,8 +176,8 @@ void __attribute__((stdcall)) stage1_main(u32 bist)
|
|||
entry = load_file_segments(&archive, "normal/payload");
|
||||
if (entry != (void*)-1)
|
||||
run_address(entry);
|
||||
|
||||
die("FATAL: No usable payload found.\n");
|
||||
else
|
||||
die("FATAL: No usable payload found.\n");
|
||||
|
||||
die ("FATAL: Last stage returned to LinuxBIOS.\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue