git: 1fc8e9b83334 - main - kboot: Add missing license to termios
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 04 Dec 2022 20:36:48 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=1fc8e9b833347e1376fa486ff1b0b756acdbfaf6 commit 1fc8e9b833347e1376fa486ff1b0b756acdbfaf6 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-12-04 20:12:09 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2022-12-04 20:31:06 +0000 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;