summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-03-11 10:07:21 +0000
committerLyndon Brown <jnqnfe@gmail.com>2020-03-11 13:51:19 +0000
commit7a4a9f94b89d22c083c1610ecbcb7a173f1b73db (patch)
tree8b9345abe9e10fd91a4e8b84a247369abbd6b1b8 /functions
parent87e9543c98a5b8d22fe1659b73f2927bdf6e895f (diff)
downloadvyos-live-build-7a4a9f94b89d22c083c1610ecbcb7a173f1b73db.tar.gz
vyos-live-build-7a4a9f94b89d22c083c1610ecbcb7a173f1b73db.zip
amend copyright & licensing blocks
Current versions of the project files are built upon versions published and licensed by Daniel Baumann, but are modified copies of those files and thus need to be marked as such per licensing requirements (afaik he did not pass along ownership / licensing rights to anyone when he left the project). We should also be careful to not be misrepresenting such modified copies as being attributed to Daniel. Adding a new copyright line referring to "The Debian Live team" should suffice for this. The authorship block in man pages has also similarly been updated. Notes: - tweaked a copy of daniel copyright lines stating 2014 instead of 2015. both of these cases were in files that i had personally introduced in some of my past merged commits that moved some code around. i don't know why they stated 2014. - binary_onie was introduced in 2018, so that has a 2018 date instead of 2016 unlike the rest. - 'efi-image' is a 3rd-party (Canonical Ltd) work that we bundle, but it has been modified by 674794a8f4d61a729d2dbd6d99385d2826138694 and 36a3ba76347ef72df1c316312ed3a26aa4b0c816 so I similarly added a debian live copyright line. - 'grub-cpmodules' is similar. it was only changed by the indentation fix of 36a3ba76347ef72df1c316312ed3a26aa4b0c816 but modification is modification, and this does help cover any possible future changes that might be made.
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/aliases.sh1
-rwxr-xr-xfunctions/architectures.sh1
-rwxr-xr-xfunctions/arguments.sh1
-rwxr-xr-xfunctions/bootloaders.sh3
-rwxr-xr-xfunctions/breakpoints.sh1
-rwxr-xr-xfunctions/cache.sh1
-rwxr-xr-xfunctions/chroot.sh1
-rwxr-xr-xfunctions/chroot_bind_path.sh1
-rwxr-xr-xfunctions/color.sh1
-rwxr-xr-xfunctions/common.sh1
-rwxr-xr-xfunctions/conffile.sh1
-rwxr-xr-xfunctions/configuration.sh1
-rwxr-xr-xfunctions/defaults.sh1
-rwxr-xr-xfunctions/echo.sh1
-rwxr-xr-xfunctions/exit.sh1
-rwxr-xr-xfunctions/firmwarelists.sh1
-rwxr-xr-xfunctions/help.sh1
-rwxr-xr-xfunctions/init.sh3
-rwxr-xr-xfunctions/lockfile.sh1
-rwxr-xr-xfunctions/losetup.sh1
-rwxr-xr-xfunctions/man.sh1
-rwxr-xr-xfunctions/packagelists.sh1
-rwxr-xr-xfunctions/packages.sh1
-rwxr-xr-xfunctions/sourcelist.sh3
-rwxr-xr-xfunctions/stagefile.sh1
-rwxr-xr-xfunctions/usage.sh1
-rwxr-xr-xfunctions/wrapper.sh1
27 files changed, 30 insertions, 3 deletions
diff --git a/functions/aliases.sh b/functions/aliases.sh
index 7ec1cd3f2..c4fb634e2 100755
--- a/functions/aliases.sh
+++ b/functions/aliases.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/architectures.sh b/functions/architectures.sh
index df61a1edc..aeb298eb3 100755
--- a/functions/architectures.sh
+++ b/functions/architectures.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/arguments.sh b/functions/arguments.sh
index 6b3a5d117..9aa4b1f1c 100755
--- a/functions/arguments.sh
+++ b/functions/arguments.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/bootloaders.sh b/functions/bootloaders.sh
index 1898232e5..832d4eea1 100755
--- a/functions/bootloaders.sh
+++ b/functions/bootloaders.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2016 Adrian Gibanel Lopez <adrian15sgd@gmail.com>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
@@ -125,4 +126,4 @@ Check_Any_Bootloader_Role ()
exit 0
-} \ No newline at end of file
+}
diff --git a/functions/breakpoints.sh b/functions/breakpoints.sh
index 55f4d4240..6896c0521 100755
--- a/functions/breakpoints.sh
+++ b/functions/breakpoints.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/cache.sh b/functions/cache.sh
index 313aa51ae..4e4c4b884 100755
--- a/functions/cache.sh
+++ b/functions/cache.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/chroot.sh b/functions/chroot.sh
index 247d5957b..374cefd89 100755
--- a/functions/chroot.sh
+++ b/functions/chroot.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/chroot_bind_path.sh b/functions/chroot_bind_path.sh
index b296f69f8..e6695dd2f 100755
--- a/functions/chroot_bind_path.sh
+++ b/functions/chroot_bind_path.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/color.sh b/functions/color.sh
index 43be765f3..fef55e95f 100755
--- a/functions/color.sh
+++ b/functions/color.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/common.sh b/functions/common.sh
index 6ca94df55..3071c9a73 100755
--- a/functions/common.sh
+++ b/functions/common.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/conffile.sh b/functions/conffile.sh
index 13407c381..15f16c93f 100755
--- a/functions/conffile.sh
+++ b/functions/conffile.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/configuration.sh b/functions/configuration.sh
index 6c0fb2fcb..0fb84a962 100755
--- a/functions/configuration.sh
+++ b/functions/configuration.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 77700a586..63279a465 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/echo.sh b/functions/echo.sh
index 70a5b9041..55d87ac72 100755
--- a/functions/echo.sh
+++ b/functions/echo.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/exit.sh b/functions/exit.sh
index 9add3612c..737af29bc 100755
--- a/functions/exit.sh
+++ b/functions/exit.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/firmwarelists.sh b/functions/firmwarelists.sh
index fdd9d67ed..a31860622 100755
--- a/functions/firmwarelists.sh
+++ b/functions/firmwarelists.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/help.sh b/functions/help.sh
index ab6442f1c..e8035fd91 100755
--- a/functions/help.sh
+++ b/functions/help.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/init.sh b/functions/init.sh
index 4eb6e7299..23c403427 100755
--- a/functions/init.sh
+++ b/functions/init.sh
@@ -1,7 +1,8 @@
#!/bin/sh
## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2014 Daniel Baumann <mail@daniel-baumann.ch>
+## Copyright (C) 2016-2020 The Debian Live team
+## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
## This is free software, and you are welcome to redistribute it
diff --git a/functions/lockfile.sh b/functions/lockfile.sh
index cabb85f34..cf7e22d5f 100755
--- a/functions/lockfile.sh
+++ b/functions/lockfile.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/losetup.sh b/functions/losetup.sh
index cdf984b74..3bcb2feb6 100755
--- a/functions/losetup.sh
+++ b/functions/losetup.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/man.sh b/functions/man.sh
index 7896f5a9c..cb886fba1 100755
--- a/functions/man.sh
+++ b/functions/man.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/packagelists.sh b/functions/packagelists.sh
index b238e980e..4701c3c70 100755
--- a/functions/packagelists.sh
+++ b/functions/packagelists.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/packages.sh b/functions/packages.sh
index bb92ea119..f07bed35f 100755
--- a/functions/packages.sh
+++ b/functions/packages.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/sourcelist.sh b/functions/sourcelist.sh
index b00187554..3a2fcb485 100755
--- a/functions/sourcelist.sh
+++ b/functions/sourcelist.sh
@@ -1,7 +1,8 @@
#!/bin/sh
## live-build(7) - System Build Scripts
-## Copyright (C) 2006-2014 Daniel Baumann <mail@daniel-baumann.ch>
+## Copyright (C) 2016-2020 The Debian Live team
+## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
## This is free software, and you are welcome to redistribute it
diff --git a/functions/stagefile.sh b/functions/stagefile.sh
index fdbab3588..09168f5f4 100755
--- a/functions/stagefile.sh
+++ b/functions/stagefile.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/usage.sh b/functions/usage.sh
index 794a45032..19a91c110 100755
--- a/functions/usage.sh
+++ b/functions/usage.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
diff --git a/functions/wrapper.sh b/functions/wrapper.sh
index 136f4f98b..002de785e 100755
--- a/functions/wrapper.sh
+++ b/functions/wrapper.sh
@@ -1,6 +1,7 @@
#!/bin/sh
## live-build(7) - System Build Scripts
+## Copyright (C) 2016-2020 The Debian Live team
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.