From 1fc8e9b833347e1376fa486ff1b0b756acdbfaf6 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sun, 4 Dec 2022 13:12:09 -0700 Subject: [PATCH] kboot: Add missing license to termios I neglected to include the proper license markings on these files. Remedy that now. Sponsored by: Netflix --- stand/kboot/arch/amd64/termios_arch.h | 6 ++++++ stand/kboot/arch/powerpc64/termios_arch.h | 8 ++++++++ stand/kboot/termios_gen.h | 8 ++++++++ 3 files changed, 22 insertions(+) diff --git a/stand/kboot/arch/amd64/termios_arch.h b/stand/kboot/arch/amd64/termios_arch.h index 0d5ae3718498..5db0b9831cdb 100644 --- a/stand/kboot/arch/amd64/termios_arch.h +++ b/stand/kboot/arch/amd64/termios_arch.h @@ -1 +1,7 @@ +/*- + * Copyright (c) 2022, Netflix, Inc. + * + * SPDX-License-Identifier: BSD-2-Clause + */ + #include "termios_gen.h" diff --git a/stand/kboot/arch/powerpc64/termios_arch.h b/stand/kboot/arch/powerpc64/termios_arch.h index 62b801ff16da..7b9e8f15a8ca 100644 --- a/stand/kboot/arch/powerpc64/termios_arch.h +++ b/stand/kboot/arch/powerpc64/termios_arch.h @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2005-2020 Rich Felker, et al. + * + * SPDX-License-Identifier: MIT + * + * Note: From the musl project, stripped down and repackaged with HOST_/host_ prepended + */ + #undef HOST_NCCS #define HOST_NCCS 19 struct host_termios { diff --git a/stand/kboot/termios_gen.h b/stand/kboot/termios_gen.h index 041205e6dd0a..6e26338d4496 100644 --- a/stand/kboot/termios_gen.h +++ b/stand/kboot/termios_gen.h @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2005-2020 Rich Felker, et al. + * + * SPDX-License-Identifier: MIT + * + * Note: From the musl project, stripped down and repackaged with HOST_/host_ prepended + */ + struct host_termios { host_tcflag_t c_iflag; host_tcflag_t c_oflag;