summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-03-01 17:28:35 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-03-01 17:28:35 +0300
commit817cc620bc886569545bf5807c3d245866d9d70f (patch)
tree0aed96bbf171cfd7def99344c0ee55e3a72e6178
parent160ff352c521e9b549620c611ddeeddb11cc6a8c (diff)
downloadProject-Tick-817cc620bc886569545bf5807c3d245866d9d70f.tar.gz
Project-Tick-817cc620bc886569545bf5807c3d245866d9d70f.zip
add Copyright holder in pax source files
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
-rw-r--r--ar_io.c3
-rw-r--r--ar_subs.c3
-rw-r--r--buf_subs.c3
-rw-r--r--cache.c3
-rw-r--r--cache.h3
-rw-r--r--compat.c27
-rw-r--r--compat.h34
-rw-r--r--cpio.c3
-rw-r--r--cpio.h3
-rw-r--r--extern.h3
-rw-r--r--file_subs.c3
-rw-r--r--ftree.c3
-rw-r--r--ftree.h3
-rw-r--r--gen_subs.c3
-rw-r--r--linux_attrs.c34
-rw-r--r--options.c3
-rw-r--r--options.h3
-rw-r--r--pat_rep.c3
-rw-r--r--pat_rep.h3
-rw-r--r--pax.13
-rw-r--r--pax.c3
-rw-r--r--pax.h3
-rw-r--r--sel_subs.c3
-rw-r--r--sel_subs.h3
-rw-r--r--tables.c3
-rw-r--r--tables.h3
-rw-r--r--tar.c3
-rw-r--r--tar.h3
-rw-r--r--tty_subs.c3
29 files changed, 173 insertions, 0 deletions
diff --git a/ar_io.c b/ar_io.c
index 4f1cd614d7..2cada5b322 100644
--- a/ar_io.c
+++ b/ar_io.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/ar_subs.c b/ar_subs.c
index d5438a1ba2..2ab42e46e0 100644
--- a/ar_subs.c
+++ b/ar_subs.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/buf_subs.c b/buf_subs.c
index 7f9b31881d..839aab142e 100644
--- a/buf_subs.c
+++ b/buf_subs.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/cache.c b/cache.c
index d15c9c2234..d2277865d1 100644
--- a/cache.c
+++ b/cache.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/cache.h b/cache.h
index 266aacbe7c..daae1a8b04 100644
--- a/cache.h
+++ b/cache.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/compat.c b/compat.c
index 93722d82ce..ad017a0680 100644
--- a/compat.c
+++ b/compat.c
@@ -3,6 +3,33 @@
*
* Copyright (c) 2026
* Project Tick. All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Keith Muller of the University of California, San Diego.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
*/
#include "compat.h"
diff --git a/compat.h b/compat.h
index 46ae958069..fdc9ea9c5d 100644
--- a/compat.h
+++ b/compat.h
@@ -1,3 +1,37 @@
+/*-
+ * SPDX-License-Identifier: BSD-3-Clause
+ *
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Keith Muller of the University of California, San Diego.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
#ifndef PAX_COMPAT_H
#define PAX_COMPAT_H
diff --git a/cpio.c b/cpio.c
index d899f7459f..5f6b3a15d4 100644
--- a/cpio.c
+++ b/cpio.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/cpio.h b/cpio.h
index fba965f64a..50687785c3 100644
--- a/cpio.h
+++ b/cpio.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/extern.h b/extern.h
index 55fd13aeed..f259ee1468 100644
--- a/extern.h
+++ b/extern.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/file_subs.c b/file_subs.c
index 2ed26d1b67..69a196e8a0 100644
--- a/file_subs.c
+++ b/file_subs.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/ftree.c b/ftree.c
index 1512a76dec..9323a5e194 100644
--- a/ftree.c
+++ b/ftree.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/ftree.h b/ftree.h
index 5008930965..24cef187fb 100644
--- a/ftree.h
+++ b/ftree.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/gen_subs.c b/gen_subs.c
index 9edb9e63da..ceed03405b 100644
--- a/gen_subs.c
+++ b/gen_subs.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/linux_attrs.c b/linux_attrs.c
index e613f3f235..9aab7c077b 100644
--- a/linux_attrs.c
+++ b/linux_attrs.c
@@ -1,3 +1,37 @@
+/*-
+ * SPDX-License-Identifier: BSD-3-Clause
+ *
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Keith Muller of the University of California, San Diego.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
#include <sys/types.h>
#include <sys/xattr.h>
diff --git a/options.c b/options.c
index 89bb3ccb6c..2120f93f84 100644
--- a/options.c
+++ b/options.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/options.h b/options.h
index 49fef7bb75..12db4e08eb 100644
--- a/options.h
+++ b/options.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/pat_rep.c b/pat_rep.c
index 0c416741f5..15a2bf687a 100644
--- a/pat_rep.c
+++ b/pat_rep.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/pat_rep.h b/pat_rep.h
index 8560bfb77c..eea8242f82 100644
--- a/pat_rep.h
+++ b/pat_rep.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/pax.1 b/pax.1
index 0981e9c0ae..22acd85279 100644
--- a/pax.1
+++ b/pax.1
@@ -3,6 +3,9 @@
.\" Copyright (c) 1992, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
+.\" Copyright (c) 2026
+.\" Project Tick. All rights reserved.
+.\"
.\" This code is derived from software contributed to Berkeley by
.\" Keith Muller of the University of California, San Diego.
.\"
diff --git a/pax.c b/pax.c
index e8e758f166..426a6e439c 100644
--- a/pax.c
+++ b/pax.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/pax.h b/pax.h
index 7fa5eaa20f..3a7f47b6d3 100644
--- a/pax.h
+++ b/pax.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/sel_subs.c b/sel_subs.c
index ccbb77ccbb..df2e1d0032 100644
--- a/sel_subs.c
+++ b/sel_subs.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/sel_subs.h b/sel_subs.h
index 55f672b4ee..08f272f39e 100644
--- a/sel_subs.h
+++ b/sel_subs.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/tables.c b/tables.c
index 14488b1050..3926b7db1b 100644
--- a/tables.c
+++ b/tables.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/tables.h b/tables.h
index 9c6f2f48ba..f7877619ab 100644
--- a/tables.h
+++ b/tables.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/tar.c b/tar.c
index 959950e26a..4833d5175a 100644
--- a/tar.c
+++ b/tar.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/tar.h b/tar.h
index 3f44c43921..33c5d7f209 100644
--- a/tar.h
+++ b/tar.h
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*
diff --git a/tty_subs.c b/tty_subs.c
index 6a94270f90..9985cfb74a 100644
--- a/tty_subs.c
+++ b/tty_subs.c
@@ -5,6 +5,9 @@
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
+ * Copyright (c) 2026
+ * Project Tick. All rights reserved.
+ *
* This code is derived from software contributed to Berkeley by
* Keith Muller of the University of California, San Diego.
*