From f3a98a140717bdc0530f0be602dedbbfdf0e0304 Mon Sep 17 00:00:00 2001 From: Jybz Date: Fri, 6 Dec 2019 14:07:56 +0100 Subject: [PATCH 1/3] =?UTF-8?q?add=20=C2=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- create_arm_img_urpmi.sh | 1 + platforms/bananaPro/mageia4arm.cfg | 2 ++ platforms/bananaPro/second_stage_install.sh | 1 + platforms/bananaPro/specialFunctions.sh | 18 ++++++++++++++++++ platforms/rpi1/specialFunctions.sh | 17 +++++++++++++++++ platforms/rpi2/specialFunctions.sh | 17 +++++++++++++++++ platforms/rpi3+/specialFunctions.sh | 17 +++++++++++++++++ platforms/rpi3/specialFunctions.sh | 17 +++++++++++++++++ platforms/xu4/specialFunctions.sh | 17 +++++++++++++++++ 9 files changed, 107 insertions(+) diff --git a/create_arm_img_urpmi.sh b/create_arm_img_urpmi.sh index a11d4c3..0611fa8 100755 --- a/create_arm_img_urpmi.sh +++ b/create_arm_img_urpmi.sh @@ -1,6 +1,7 @@ #!/bin/bash # Copyright (C) 2017-2018 Daniel Tartavel-jeannot +# Jean-Baptiste Biernacki # # 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 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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki # + # 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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki # # 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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# + +# 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 . + + #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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# + +# 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 . + #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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# + +# 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 . + #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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# + +# 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 . + #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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# + +# 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 . + #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 +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# + +# 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 . + #RPI partitionning : DEFAULT="" NEW_PART=n From 13106b7bdbbbabb3753354fa96c925dfc15b9668 Mon Sep 17 00:00:00 2001 From: Jybz Date: Fri, 6 Dec 2019 14:09:39 +0100 Subject: [PATCH 2/3] fixe courriel --- platforms/bananaPro/mageia4arm.cfg | 2 +- platforms/bananaPro/second_stage_install.sh | 2 +- platforms/bananaPro/specialFunctions.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/platforms/bananaPro/mageia4arm.cfg b/platforms/bananaPro/mageia4arm.cfg index fc431a9..051fa1b 100644 --- a/platforms/bananaPro/mageia4arm.cfg +++ b/platforms/bananaPro/mageia4arm.cfg @@ -1,6 +1,6 @@ # Copyright (C) 2017-2018 Daniel Tartavel-jeannot -# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki # # This program is free software; you can redistribute it and/or modify diff --git a/platforms/bananaPro/second_stage_install.sh b/platforms/bananaPro/second_stage_install.sh index cebc622..9bbcd87 100644 --- a/platforms/bananaPro/second_stage_install.sh +++ b/platforms/bananaPro/second_stage_install.sh @@ -1,7 +1,7 @@ #!/bin/bash -x # Copyright (C) 2017-2018 Daniel Tartavel-jeannot -# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki # # 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 04db807..84f846e 100755 --- a/platforms/bananaPro/specialFunctions.sh +++ b/platforms/bananaPro/specialFunctions.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright (C) 2017-2018 Daniel Tartavel-jeannot -# Copyright (C) 2019-2020 Jean-Baptiste Biernacki +# Copyright (C) 2019-2020 Jean-Baptiste Biernacki # # This program is free software; you can redistribute it and/or modify From 756d128e4cd2264aec29d4dc414b638b2e62eebe Mon Sep 17 00:00:00 2001 From: Jybz Date: Sat, 14 Dec 2019 19:35:13 +0100 Subject: [PATCH 3/3] BananaPro use kernel from repo update and not from testing --- platforms/bananaPro/second_stage_install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platforms/bananaPro/second_stage_install.sh b/platforms/bananaPro/second_stage_install.sh index 9bbcd87..7a10547 100644 --- a/platforms/bananaPro/second_stage_install.sh +++ b/platforms/bananaPro/second_stage_install.sh @@ -75,8 +75,9 @@ export ARCH=arm ########################################### ## Install a package from testing repo : ## ########################################### -urpmi.update Testing -urpmi --auto --media Testing kernel-desktop-latest +# urpmi.update Testing +# urpmi --auto --media Testing kernel-desktop-latest +urpmi --auto kernel-desktop-latest ############################################### ## Create a symlink for the lastest kernel : ##