kboot: Add aarch64 fdt fixup

Sponsored by:		Netflix
Reviewed by:		kevans
Differential Revision:	https://reviews.freebsd.org/D38256
This commit is contained in:
Warner Losh 2023-02-03 08:37:39 -07:00
parent d76330efd9
commit fb26a14fc4
2 changed files with 15 additions and 1 deletions

View file

@ -1,4 +1,4 @@
SRCS+= host_syscall.S tramp.S exec.c load_addr.c
SRCS+= host_syscall.S tramp.S exec.c load_addr.c fdt_arch.c
.PATH: ${BOOTSRC}/arm64/libarm64
CFLAGS+=-I${BOOTSRC}/arm64/libarm64

View file

@ -0,0 +1,14 @@
/*-
* Copyright (c) 2022 Netflix, Inc
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <sys/types.h>
#include "kboot.h"
void
fdt_arch_fixups(void *fdtp)
{
/* Unsure what to pass fixup */
}