boot_loader: add missing stubs

u_boot build still broken

Change-Id: Iba93ce7bf0d5c30a95ff98420a2e419eb28bb398
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2412
Reviewed-by: Adrien Destugues <[email protected]>
This commit is contained in:
Jérôme Duval
2020-03-23 18:29:56 +00:00
committed by waddlesplash
parent bed01fe356
commit 39a7a69b07
5 changed files with 32 additions and 0 deletions
@@ -105,3 +105,9 @@ cpu_init()
// ...or not!
}
extern "C" void
platform_load_ucode(BootVolume& volume)
{
}
@@ -130,3 +130,9 @@ cpu_init()
// ...or not!
}
extern "C" void
platform_load_ucode(BootVolume& volume)
{
}
@@ -12,6 +12,7 @@ UsePrivateHeaders [ FDirName graphics common ] ;
}
local platform_src =
cpu.cpp
console.cpp
debug.cpp
devices.cpp
@@ -0,0 +1,14 @@
/*
* Copyright 2020, Jérôme Duval, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <boot/platform.h>
extern "C" void
platform_load_ucode(BootVolume& volume)
{
}
+5
View File
@@ -36,3 +36,8 @@ cpu_init()
panic("You need a 6502 or higher in order to boot!\n");
}
extern "C" void
platform_load_ucode(BootVolume& volume)
{
}