aboutsummaryrefslogtreecommitdiff
path: root/stand/kboot
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2024-01-28 19:19:32 +0000
committerWarner Losh <imp@FreeBSD.org>2024-01-28 20:04:32 +0000
commit8f7327dceecc225029b17378e4a26ae0b73a0a49 (patch)
treeddadfbd2c65ac0d4a5bf88979dcb87b36f27cb4f /stand/kboot
parent2b7918f13c6fce378a75f8247b5dd203bf4a3c5d (diff)
downloadsrc-8f7327dceecc225029b17378e4a26ae0b73a0a49.tar.gz
src-8f7327dceecc225029b17378e4a26ae0b73a0a49.zip
Diffstat (limited to 'stand/kboot')
-rw-r--r--stand/kboot/include/arch/aarch64/syscall_nr.h4
-rw-r--r--stand/kboot/include/arch/amd64/syscall_nr.h4
-rw-r--r--stand/kboot/include/arch/powerpc64/syscall_nr.h4
-rw-r--r--stand/kboot/libkboot/host_syscalls.c6
4 files changed, 18 insertions, 0 deletions
diff --git a/stand/kboot/include/arch/aarch64/syscall_nr.h b/stand/kboot/include/arch/aarch64/syscall_nr.h
index 83069dd8dc76..5c776db81d03 100644
--- a/stand/kboot/include/arch/aarch64/syscall_nr.h
+++ b/stand/kboot/include/arch/aarch64/syscall_nr.h
@@ -1,3 +1,7 @@
+/*
+ * This file is in the public domain. It only recounts facts in the only way
+ * possible.
+ */
#define SYS_close 57
#define SYS_dup 23
#define SYS_exit 93
diff --git a/stand/kboot/include/arch/amd64/syscall_nr.h b/stand/kboot/include/arch/amd64/syscall_nr.h
index 2cf26d7ca4dc..705b39c62f44 100644
--- a/stand/kboot/include/arch/amd64/syscall_nr.h
+++ b/stand/kboot/include/arch/amd64/syscall_nr.h
@@ -1,3 +1,7 @@
+/*
+ * This file is in the public domain. It only recounts facts in the only way
+ * possible.
+ */
#define SYS_close 3
#define SYS_dup 32
#define SYS_exit 60
diff --git a/stand/kboot/include/arch/powerpc64/syscall_nr.h b/stand/kboot/include/arch/powerpc64/syscall_nr.h
index 735e79a09158..50946a4f058c 100644
--- a/stand/kboot/include/arch/powerpc64/syscall_nr.h
+++ b/stand/kboot/include/arch/powerpc64/syscall_nr.h
@@ -1,3 +1,7 @@
+/*
+ * This file is in the public domain. It only recounts facts in the only way
+ * possible.
+ */
#define SYS_close 6
#define SYS_dup 41
#define SYS_exit 1
diff --git a/stand/kboot/libkboot/host_syscalls.c b/stand/kboot/libkboot/host_syscalls.c
index 092ddfd133fd..551ff6b777d6 100644
--- a/stand/kboot/libkboot/host_syscalls.c
+++ b/stand/kboot/libkboot/host_syscalls.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022-2024, Netflix, Inc.
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
#include "host_syscall.h"
#include "syscall_nr.h"
#include <stand.h>