diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-04-16 03:15:01 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-04-16 03:16:16 +0000 |
commit | 33f49ec6eea61888789011962bcbb6c291d32264 (patch) | |
tree | ae439e9b787ec1b38007fdef60f89476f43e2835 /gen_initramfs.sh | |
parent | Adjust licensing policy on copy_binaries() after a chat with robbat2 (diff) | |
download | genkernel-33f49ec6eea61888789011962bcbb6c291d32264.tar.gz genkernel-33f49ec6eea61888789011962bcbb6c291d32264.tar.bz2 genkernel-33f49ec6eea61888789011962bcbb6c291d32264.zip |
gen_initramfs: Use CC0 instead of public domain for copy_binaries to cover French jurisdiction concerns.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'gen_initramfs.sh')
-rwxr-xr-x | gen_initramfs.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gen_initramfs.sh b/gen_initramfs.sh index a7f8c1f..7db1c95 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -3,17 +3,19 @@ CPIO_ARGS="--quiet -o -H newc" -# The copy_binaries function is explicitly released into the public domain to +# The copy_binaries function is explicitly released under the CC0 license to # encourage wide adoption and re-use. That means: -# - You may use the code of copy_binaries() as Public domain outside of genkernel -# - Contributions to this function are put into the Public Domain as well. +# - You may use the code of copy_binaries() as CC0 outside of genkernel +# - Contributions to this function are licensed under CC0 as well. +# - If you change it outside of genkernel, please consider sending your +# modifications back to genkernel@gentoo.org. # # On a side note: "Both public domain works and the simple license provided by # CC0 are compatible with the GNU GPL." # (from https://www.gnu.org/licenses/license-list.html#CC0) # # Written by: -# - Sebastian Pipping <sebastian@pipping.org> (partly rewrite) +# - Sebastian Pipping <sebastian@pipping.org> (error checking) # - Robin H. Johnson <robbat2@gentoo.org> (complete rewrite) # - Richard Yao <ryao@cs.stonybrook.edu> (original concept) # Usage: |