Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Jan 2023 22:13:50 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 3f10d138f335 - stable/13 - kboot: Add missing license to termios
Message-ID:  <202301242213.30OMDoX1088990@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=3f10d138f335661e5f5869b4eefcbb6f7884890d

commit 3f10d138f335661e5f5869b4eefcbb6f7884890d
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-12-04 20:12:09 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-01-24 21:49:42 +0000

    kboot: Add missing license to termios
    
    I neglected to include the proper license markings on these
    files. Remedy that now.
    
    Sponsored by:           Netflix
    
    (cherry picked from commit 1fc8e9b833347e1376fa486ff1b0b756acdbfaf6)
---
 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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301242213.30OMDoX1088990>