diff --git a/compile.sh b/compile.sh index f2b719bbea..4febf8171b 100755 --- a/compile.sh +++ b/compile.sh @@ -6,8 +6,8 @@ # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. # -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ SRC=$(dirname $(realpath ${BASH_SOURCE})) # fallback for Trusty diff --git a/lib/build-all.sh b/lib/build-all.sh index c243c68280..1a43fa4c18 100644 --- a/lib/build-all.sh +++ b/lib/build-all.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) Authors: http://www.armbian.com/authors # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # Include here to make "display_alert" and "prepare_host" available source $SRC/lib/general.sh diff --git a/lib/chroot-buildpackages.sh b/lib/chroot-buildpackages.sh index d11b139637..d69dc1f0ee 100644 --- a/lib/chroot-buildpackages.sh +++ b/lib/chroot-buildpackages.sh @@ -1,13 +1,12 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ + # Functions: # create_chroot # chroot_prepare_distccd diff --git a/lib/compilation.sh b/lib/compilation.sh index 98e825903b..8c1addc6a8 100644 --- a/lib/compilation.sh +++ b/lib/compilation.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # Functions: # compile_uboot diff --git a/lib/configuration.sh b/lib/configuration.sh index 3d5d22e04f..19b6019e66 100644 --- a/lib/configuration.sh +++ b/lib/configuration.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # common options # daily beta build contains date in subrevision diff --git a/lib/debootstrap-ng.sh b/lib/debootstrap-ng.sh index b0519c6745..33f9626463 100644 --- a/lib/debootstrap-ng.sh +++ b/lib/debootstrap-ng.sh @@ -3,9 +3,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # Functions: # debootstrap_ng diff --git a/lib/desktop.sh b/lib/desktop.sh index 8550c6a3b7..c574131d28 100644 --- a/lib/desktop.sh +++ b/lib/desktop.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ install_desktop () { diff --git a/lib/distributions.sh b/lib/distributions.sh index 3802c07cab..9fa58e71f2 100644 --- a/lib/distributions.sh +++ b/lib/distributions.sh @@ -1,13 +1,12 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ + # Functions: # install_common # install_distribution_specific diff --git a/lib/fel-load.sh b/lib/fel-load.sh index 4f0836bf89..0807561bfe 100644 --- a/lib/fel-load.sh +++ b/lib/fel-load.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # FEL_ROOTFS should be set to path to debootstrapped root filesystem # unless you want to kill your /etc/fstab and share your rootfs on NFS diff --git a/lib/general.sh b/lib/general.sh index 6207f41807..f00211e227 100644 --- a/lib/general.sh +++ b/lib/general.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # Functions: # cleaning @@ -344,11 +342,11 @@ fingerprint_image() Title: Armbian $REVISION ${BOARD^} $DISTRIBUTION $RELEASE $BRANCH Kernel: Linux $VER Build date: $(date +'%d.%m.%Y') - Authors: http://www.armbian.com/authors - Sources: http://github.com/igorpecovnik/lib - Support: http://forum.armbian.com/ - Changelog: http://www.armbian.com/logbook/ - Documantation: http://docs.armbian.com/ + Authors: https://www.armbian.com/authors + Sources: https://github.com/armbian/ + Support: https://forum.armbian.com/ + Changelog: https://www.armbian.com/logbook/ + Documantation: https://docs.armbian.com/ -------------------------------------------------------------------------------- $(cat $SRC/LICENSE) -------------------------------------------------------------------------------- diff --git a/lib/main.sh b/lib/main.sh index b208d126a8..969c1a65fe 100644 --- a/lib/main.sh +++ b/lib/main.sh @@ -1,14 +1,12 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ + # Main program # diff --git a/lib/makeboarddeb.sh b/lib/makeboarddeb.sh index ac5d856c01..fb01b693a0 100644 --- a/lib/makeboarddeb.sh +++ b/lib/makeboarddeb.sh @@ -1,14 +1,12 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ + # Create board support packages # # Functions: diff --git a/lib/repo-show.sh b/lib/repo-show.sh index fe56ae54f4..c9bc655b0f 100644 --- a/lib/repo-show.sh +++ b/lib/repo-show.sh @@ -5,9 +5,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # This script shows packages in local repository diff --git a/lib/repo-update.sh b/lib/repo-update.sh index cc49bd01e4..96f0095672 100644 --- a/lib/repo-update.sh +++ b/lib/repo-update.sh @@ -5,9 +5,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # This script recreates deb repository from files in directory POT # diff --git a/packages/extras/firmware.sh b/packages/extras/firmware.sh index 6b6ab05f47..5cfe4d1c5e 100644 --- a/packages/extras/firmware.sh +++ b/packages/extras/firmware.sh @@ -3,9 +3,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ build_firmware() { diff --git a/packages/extras/mt7601.sh b/packages/extras/mt7601.sh index 8738781bb1..ddde9e70e4 100644 --- a/packages/extras/mt7601.sh +++ b/packages/extras/mt7601.sh @@ -3,9 +3,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ install_mt7601() { diff --git a/packages/extras/rtl8192cu.sh b/packages/extras/rtl8192cu.sh index 29c36e41e6..5c17817474 100644 --- a/packages/extras/rtl8192cu.sh +++ b/packages/extras/rtl8192cu.sh @@ -3,9 +3,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # NOTE: NEeds gcc5 specific fixes like other wireless drivers diff --git a/packages/extras/tools.sh b/packages/extras/tools.sh index 0ce81f4bf5..c837659566 100644 --- a/packages/extras/tools.sh +++ b/packages/extras/tools.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# # Copyright (c) 2015 Igor Pecovnik, igor.pecovnik@gma**.com # # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ compile_tools() { diff --git a/packages/extras/usb-redirector.sh b/packages/extras/usb-redirector.sh index 90205610a8..c40e2f8c2e 100644 --- a/packages/extras/usb-redirector.sh +++ b/packages/extras/usb-redirector.sh @@ -3,9 +3,9 @@ # This file is licensed under the terms of the GNU General Public # License version 2. This program is licensed "as is" without any # warranty of any kind, whether express or implied. -# -# This file is a part of tool chain https://github.com/igorpecovnik/lib -# + +# This file is a part of the Armbian build script +# https://github.com/armbian/build/ # USB redirector tools http://www.incentivespro.com