* [Buildroot] [PATCH 1/6] configs/olimex_a10_olinuxino: uboot 2021.10 needs openssl and python3
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
@ 2021-10-30 23:46 ` Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 2/6] configs/olimex_a13_olinuxino: uboot 2021.10 needs openssl, pylibfdt " Giulio Benetti
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:46 UTC (permalink / raw)
To: buildroot; +Cc: Luca Ceresoli, Giulio Benetti, Leon Anavi, Jagan Teki
Uboot 2021.10 needs openssl and python3 so enable them.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723730014
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
configs/olimex_a10_olinuxino_lime_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/olimex_a10_olinuxino_lime_defconfig b/configs/olimex_a10_olinuxino_lime_defconfig
index c3b4f0161b..b168792b00 100644
--- a/configs/olimex_a10_olinuxino_lime_defconfig
+++ b/configs/olimex_a10_olinuxino_lime_defconfig
@@ -36,7 +36,9 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A10-OLinuXino-Lime"
BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
BR2_TARGET_UBOOT_FORMAT_BIN=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH 2/6] configs/olimex_a13_olinuxino: uboot 2021.10 needs openssl, pylibfdt and python3
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 1/6] configs/olimex_a10_olinuxino: uboot 2021.10 needs openssl and python3 Giulio Benetti
@ 2021-10-30 23:46 ` Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 3/6] configs/olimex_a20_olinuxino_lime2: uboot 2021.10 needs openssl Giulio Benetti
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:46 UTC (permalink / raw)
To: buildroot; +Cc: Luca Ceresoli, Giulio Benetti, Leon Anavi, Jagan Teki
Uboot 2021.10 needs openssl, pylibfdt and python3 so enable them.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723730015
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
configs/olimex_a13_olinuxino_defconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configs/olimex_a13_olinuxino_defconfig b/configs/olimex_a13_olinuxino_defconfig
index 14cec97d49..d18a9ee6bd 100644
--- a/configs/olimex_a13_olinuxino_defconfig
+++ b/configs/olimex_a13_olinuxino_defconfig
@@ -18,6 +18,9 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A13-OLinuXino"
BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
BR2_TARGET_UBOOT_FORMAT_BIN=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH 3/6] configs/olimex_a20_olinuxino_lime2: uboot 2021.10 needs openssl
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 1/6] configs/olimex_a10_olinuxino: uboot 2021.10 needs openssl and python3 Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 2/6] configs/olimex_a13_olinuxino: uboot 2021.10 needs openssl, pylibfdt " Giulio Benetti
@ 2021-10-30 23:46 ` Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 4/6] configs/olimex_a20_olinuxino_lime: " Giulio Benetti
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:46 UTC (permalink / raw)
To: buildroot; +Cc: Luca Ceresoli, Giulio Benetti, Leon Anavi, Jagan Teki
Uboot 2021.10 needs openssl so enable it. Let's also alphabetize
BR2_TARGET_UBOOT_NEEDS_*.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723730017
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
configs/olimex_a20_olinuxino_lime2_defconfig | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configs/olimex_a20_olinuxino_lime2_defconfig b/configs/olimex_a20_olinuxino_lime2_defconfig
index 248e5d7207..a298ca19ed 100644
--- a/configs/olimex_a20_olinuxino_lime2_defconfig
+++ b/configs/olimex_a20_olinuxino_lime2_defconfig
@@ -47,8 +47,9 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A20-OLinuXino-Lime2"
BR2_TARGET_UBOOT_NEEDS_DTC=y
-BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
BR2_TARGET_UBOOT_FORMAT_BIN=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH 4/6] configs/olimex_a20_olinuxino_lime: uboot 2021.10 needs openssl
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
` (2 preceding siblings ...)
2021-10-30 23:46 ` [Buildroot] [PATCH 3/6] configs/olimex_a20_olinuxino_lime2: uboot 2021.10 needs openssl Giulio Benetti
@ 2021-10-30 23:46 ` Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 5/6] configs/olimex_a20_olinuxino_micro: uboot 2021.10 needs openssl, pylibfdt and python3 Giulio Benetti
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:46 UTC (permalink / raw)
To: buildroot; +Cc: Luca Ceresoli, Giulio Benetti, Leon Anavi, Jagan Teki
Uboot 2021.10 needs openssl so enable it. Let's also alphabetize
BR2_TARGET_UBOOT_NEEDS_*.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723730020
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
configs/olimex_a20_olinuxino_lime_defconfig | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configs/olimex_a20_olinuxino_lime_defconfig b/configs/olimex_a20_olinuxino_lime_defconfig
index fb095c8b7b..964e4449ae 100644
--- a/configs/olimex_a20_olinuxino_lime_defconfig
+++ b/configs/olimex_a20_olinuxino_lime_defconfig
@@ -47,8 +47,9 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A20-OLinuXino-Lime"
BR2_TARGET_UBOOT_NEEDS_DTC=y
-BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
BR2_TARGET_UBOOT_FORMAT_BIN=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH 5/6] configs/olimex_a20_olinuxino_micro: uboot 2021.10 needs openssl, pylibfdt and python3
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
` (3 preceding siblings ...)
2021-10-30 23:46 ` [Buildroot] [PATCH 4/6] configs/olimex_a20_olinuxino_lime: " Giulio Benetti
@ 2021-10-30 23:46 ` Giulio Benetti
2021-10-30 23:46 ` [Buildroot] [PATCH 6/6] configs/olimex_a33_olinuxino: uboot 2021.10 needs openssl " Giulio Benetti
2021-10-31 17:42 ` [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Thomas Petazzoni
6 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:46 UTC (permalink / raw)
To: buildroot; +Cc: Luca Ceresoli, Giulio Benetti, Leon Anavi, Jagan Teki
Uboot 2021.10 needs openssl, pylibfdt and python3 so enable them.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723730020
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
configs/olimex_a20_olinuxino_micro_defconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configs/olimex_a20_olinuxino_micro_defconfig b/configs/olimex_a20_olinuxino_micro_defconfig
index 93912b95c0..9115358a69 100644
--- a/configs/olimex_a20_olinuxino_micro_defconfig
+++ b/configs/olimex_a20_olinuxino_micro_defconfig
@@ -36,6 +36,9 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A20-OLinuXino_MICRO"
BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
BR2_PACKAGE_HOST_UBOOT_TOOLS=y
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Buildroot] [PATCH 6/6] configs/olimex_a33_olinuxino: uboot 2021.10 needs openssl and python3
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
` (4 preceding siblings ...)
2021-10-30 23:46 ` [Buildroot] [PATCH 5/6] configs/olimex_a20_olinuxino_micro: uboot 2021.10 needs openssl, pylibfdt and python3 Giulio Benetti
@ 2021-10-30 23:46 ` Giulio Benetti
2021-10-31 17:42 ` [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Thomas Petazzoni
6 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:46 UTC (permalink / raw)
To: buildroot; +Cc: Luca Ceresoli, Giulio Benetti, Leon Anavi, Jagan Teki
Uboot 2021.10 needs openssl and python3 so enable them.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723730024
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
configs/olimex_a33_olinuxino_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/olimex_a33_olinuxino_defconfig b/configs/olimex_a33_olinuxino_defconfig
index e2474db2ec..2067335951 100644
--- a/configs/olimex_a33_olinuxino_defconfig
+++ b/configs/olimex_a33_olinuxino_defconfig
@@ -19,7 +19,9 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="A33-OLinuXino"
BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
BR2_TARGET_UBOOT_FORMAT_BIN=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
--
2.25.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs
2021-10-30 23:46 [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Giulio Benetti
` (5 preceding siblings ...)
2021-10-30 23:46 ` [Buildroot] [PATCH 6/6] configs/olimex_a33_olinuxino: uboot 2021.10 needs openssl " Giulio Benetti
@ 2021-10-31 17:42 ` Thomas Petazzoni
2021-10-31 17:46 ` Giulio Benetti
6 siblings, 1 reply; 9+ messages in thread
From: Thomas Petazzoni @ 2021-10-31 17:42 UTC (permalink / raw)
To: Giulio Benetti; +Cc: Luca Ceresoli, Leon Anavi, Jagan Teki, buildroot
Hello,
On Sun, 31 Oct 2021 01:46:44 +0200
Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:
> Giulio Benetti (6):
> configs/olimex_a10_olinuxino: uboot 2021.10 needs openssl and python3
> configs/olimex_a13_olinuxino: uboot 2021.10 needs openssl, pylibfdt
> and python3
> configs/olimex_a20_olinuxino_lime2: uboot 2021.10 needs openssl
> configs/olimex_a20_olinuxino_lime: uboot 2021.10 needs openssl
> configs/olimex_a20_olinuxino_micro: uboot 2021.10 needs openssl,
> pylibfdt and python3
> configs/olimex_a33_olinuxino: uboot 2021.10 needs openssl and python3
I've applied the entire series, but I changed something: the options in
a defconfig are not sorted alphabetically, but they are sorted in their
"natural" order in a defconfig (when generated with "make
savedefconfig").
Of course, those hand-edited defconfigs, with extra comments, makes
using "make savedefconfig" bit less convenient, but still I think we
should follow the ordering of option that "make savedefconfig"
provides, which is based on the ordering of options in Config.in files.
Thanks!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs
2021-10-31 17:42 ` [Buildroot] [PATCH 0/6] configs/olimex_*: fix uboot build failure on gitlab jobs Thomas Petazzoni
@ 2021-10-31 17:46 ` Giulio Benetti
0 siblings, 0 replies; 9+ messages in thread
From: Giulio Benetti @ 2021-10-31 17:46 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: Luca Ceresoli, Leon Anavi, Jagan Teki, buildroot
On 10/31/21 6:42 PM, Thomas Petazzoni wrote:
> Hello,
>
> On Sun, 31 Oct 2021 01:46:44 +0200
> Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:
>
>> Giulio Benetti (6):
>> configs/olimex_a10_olinuxino: uboot 2021.10 needs openssl and python3
>> configs/olimex_a13_olinuxino: uboot 2021.10 needs openssl, pylibfdt
>> and python3
>> configs/olimex_a20_olinuxino_lime2: uboot 2021.10 needs openssl
>> configs/olimex_a20_olinuxino_lime: uboot 2021.10 needs openssl
>> configs/olimex_a20_olinuxino_micro: uboot 2021.10 needs openssl,
>> pylibfdt and python3
>> configs/olimex_a33_olinuxino: uboot 2021.10 needs openssl and python3
>
> I've applied the entire series, but I changed something: the options in
> a defconfig are not sorted alphabetically, but they are sorted in their
> "natural" order in a defconfig (when generated with "make
> savedefconfig").
>
> Of course, those hand-edited defconfigs, with extra comments, makes
> using "make savedefconfig" bit less convenient, but still I think we
> should follow the ordering of option that "make savedefconfig"
> provides, which is based on the ordering of options in Config.in files.
Ok, thank you for pointing.
Kind regards
--
Giulio Benetti
Benetti Engineering sas
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 9+ messages in thread