mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:47:47 +00:00
Prekernel: Make build on aarch64
Add a dummy Arch/aarch64/boot.S that for now does nothing but let all processor cores sleep. For now, none of the actual Prekernel code is built for aarch64.
This commit is contained in:
parent
da785bd4bd
commit
9c5e947e0e
3 changed files with 45 additions and 15 deletions
16
Kernel/Prekernel/Arch/aarch64/boot.S
Normal file
16
Kernel/Prekernel/Arch/aarch64/boot.S
Normal file
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Nico Weber <thakis@chromium.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
.text
|
||||
|
||||
.global start
|
||||
.type start, @function
|
||||
start:
|
||||
b Lhalt
|
||||
|
||||
Lhalt:
|
||||
wfi
|
||||
b Lhalt
|
Loading…
Add table
Add a link
Reference in a new issue