diff options
author | Jybz <j.biernacki@free.fr> | 2019-12-06 14:07:56 +0100 |
---|---|---|
committer | Jybz <j.biernacki@free.fr> | 2019-12-06 14:07:56 +0100 |
commit | f3a98a140717bdc0530f0be602dedbbfdf0e0304 (patch) | |
tree | f007835cd35279edc4efce98ece6572efac22023 /platforms | |
parent | b314f24a5ee99c4d029e481d14f6f684df2a4f27 (diff) | |
download | mageia4arm-f3a98a140717bdc0530f0be602dedbbfdf0e0304.tar mageia4arm-f3a98a140717bdc0530f0be602dedbbfdf0e0304.tar.gz mageia4arm-f3a98a140717bdc0530f0be602dedbbfdf0e0304.tar.bz2 mageia4arm-f3a98a140717bdc0530f0be602dedbbfdf0e0304.tar.xz mageia4arm-f3a98a140717bdc0530f0be602dedbbfdf0e0304.zip |
add ®
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/bananaPro/mageia4arm.cfg | 2 | ||||
-rw-r--r-- | platforms/bananaPro/second_stage_install.sh | 1 | ||||
-rwxr-xr-x | platforms/bananaPro/specialFunctions.sh | 18 | ||||
-rwxr-xr-x | platforms/rpi1/specialFunctions.sh | 17 | ||||
-rwxr-xr-x | platforms/rpi2/specialFunctions.sh | 17 | ||||
-rwxr-xr-x | platforms/rpi3+/specialFunctions.sh | 17 | ||||
-rwxr-xr-x | platforms/rpi3/specialFunctions.sh | 17 | ||||
-rwxr-xr-x | platforms/xu4/specialFunctions.sh | 17 |
8 files changed, 106 insertions, 0 deletions
diff --git a/platforms/bananaPro/mageia4arm.cfg b/platforms/bananaPro/mageia4arm.cfg index cb1925b..fc431a9 100644 --- a/platforms/bananaPro/mageia4arm.cfg +++ b/platforms/bananaPro/mageia4arm.cfg @@ -1,6 +1,8 @@ # Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <cj.biernacki@free.fr> # + # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or diff --git a/platforms/bananaPro/second_stage_install.sh b/platforms/bananaPro/second_stage_install.sh index 0dba4cc..cebc622 100644 --- a/platforms/bananaPro/second_stage_install.sh +++ b/platforms/bananaPro/second_stage_install.sh @@ -1,6 +1,7 @@ #!/bin/bash -x # Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <cj.biernacki@free.fr> # # This program is free software; you can redistribute it and/or modify diff --git a/platforms/bananaPro/specialFunctions.sh b/platforms/bananaPro/specialFunctions.sh index dfa67c9..04db807 100755 --- a/platforms/bananaPro/specialFunctions.sh +++ b/platforms/bananaPro/specialFunctions.sh @@ -1,5 +1,23 @@ #!/bin/bash +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <cj.biernacki@free.fr> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + #Fdisk partitionment commands : DEFAULT="" NEW_DOSTAB="o" diff --git a/platforms/rpi1/specialFunctions.sh b/platforms/rpi1/specialFunctions.sh index 71d75b0..d388bcd 100755 --- a/platforms/rpi1/specialFunctions.sh +++ b/platforms/rpi1/specialFunctions.sh @@ -1,5 +1,22 @@ #!/bin/bash +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <j.biernacki@free.fr> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + #RPI partitionning : DEFAULT="" NEW_PART=n diff --git a/platforms/rpi2/specialFunctions.sh b/platforms/rpi2/specialFunctions.sh index 97e25d4..dec8c36 100755 --- a/platforms/rpi2/specialFunctions.sh +++ b/platforms/rpi2/specialFunctions.sh @@ -1,5 +1,22 @@ #!/bin/bash +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <j.biernacki@free.fr> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + #RPI partitionning : DEFAULT="" NEW_PART=n diff --git a/platforms/rpi3+/specialFunctions.sh b/platforms/rpi3+/specialFunctions.sh index 34805d5..ad00c50 100755 --- a/platforms/rpi3+/specialFunctions.sh +++ b/platforms/rpi3+/specialFunctions.sh @@ -1,5 +1,22 @@ #!/bin/bash +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <j.biernacki@free.fr> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + #RPI partitionning : DEFAULT="" NEW_PART=n diff --git a/platforms/rpi3/specialFunctions.sh b/platforms/rpi3/specialFunctions.sh index 97e25d4..dec8c36 100755 --- a/platforms/rpi3/specialFunctions.sh +++ b/platforms/rpi3/specialFunctions.sh @@ -1,5 +1,22 @@ #!/bin/bash +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <j.biernacki@free.fr> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + #RPI partitionning : DEFAULT="" NEW_PART=n diff --git a/platforms/xu4/specialFunctions.sh b/platforms/xu4/specialFunctions.sh index 6b205bf..640f18e 100755 --- a/platforms/xu4/specialFunctions.sh +++ b/platforms/xu4/specialFunctions.sh @@ -1,5 +1,22 @@ #!/bin/bash +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki <j.biernacki@free.fr> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + #RPI partitionning : DEFAULT="" NEW_PART=n |