mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
kboot: update copyright on these files.
host_syscalls.c: I've written, so put Netflix copyright on. It's possible in the confusion that Nathan wrote the host_gettimeofday implementation. syscall_nr: These files likely can't enjoy copyright protection since they are just facts (the per-arch Linux system calls), so add a note they are in the public domain. Sponsored by: Netflix (cherry picked from commit 8f7327dceecc225029b17378e4a26ae0b73a0a49)
This commit is contained in:
parent
b5fa90e2e2
commit
a975ee493d
4 changed files with 18 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue