All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3
@ 2021-10-30 19:24 Giulio Benetti
  2021-10-30 19:24 ` [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: " Giulio Benetti
  2021-10-30 23:00 ` [Buildroot] [PATCH " Giulio Benetti
  0 siblings, 2 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-10-30 19:24 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Jagan Teki

When using pylibfdt on u-boot 2021.10 we need also to enable
BR2_TARGET_UBOOT_NEEDS_PYTHON3. This fix CI failure:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729667

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 configs/amarula_vyasa_rk3288_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/amarula_vyasa_rk3288_defconfig b/configs/amarula_vyasa_rk3288_defconfig
index 916a639387..ff96019e1e 100644
--- a/configs/amarula_vyasa_rk3288_defconfig
+++ b/configs/amarula_vyasa_rk3288_defconfig
@@ -13,6 +13,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="vyasa-rk3288"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
 BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: u-boot 2021.10 needs python3
  2021-10-30 19:24 [Buildroot] [PATCH 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3 Giulio Benetti
@ 2021-10-30 19:24 ` Giulio Benetti
  2021-10-30 23:00   ` Giulio Benetti
  2021-10-30 23:05   ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: " Giulio Benetti
  2021-10-30 23:00 ` [Buildroot] [PATCH " Giulio Benetti
  1 sibling, 2 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-10-30 19:24 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Jagan Teki

U-boot 2021.10 requires pylibfdt and consequently Python3, so let's
enable BR2_TARGET_UBOOT_NEEDS_PYLIBFDT
and BR2_TARGET_UBOOT_NEEDS_PYTHON3. This fix CI failure:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729725

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 configs/asus_tinker_rk3288_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/asus_tinker_rk3288_defconfig b/configs/asus_tinker_rk3288_defconfig
index 609d061b61..6963fa939f 100644
--- a/configs/asus_tinker_rk3288_defconfig
+++ b/configs/asus_tinker_rk3288_defconfig
@@ -13,6 +13,8 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="tinker-rk3288"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
 BR2_TARGET_UBOOT_FORMAT_DTB_BIN=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3
  2021-10-30 19:24 [Buildroot] [PATCH 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3 Giulio Benetti
  2021-10-30 19:24 ` [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: " Giulio Benetti
@ 2021-10-30 23:00 ` Giulio Benetti
  1 sibling, 0 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:00 UTC (permalink / raw)
  To: buildroot; +Cc: Jagan Teki

Please drop this patch, I'm going to reword it and send the v2.

Sorry for the noise.

-- 
Giulio Benetti
Benetti Engineering sas

On 10/30/21 9:24 PM, Giulio Benetti wrote:
> When using pylibfdt on u-boot 2021.10 we need also to enable
> BR2_TARGET_UBOOT_NEEDS_PYTHON3. This fix CI failure:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729667
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>   configs/amarula_vyasa_rk3288_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/configs/amarula_vyasa_rk3288_defconfig b/configs/amarula_vyasa_rk3288_defconfig
> index 916a639387..ff96019e1e 100644
> --- a/configs/amarula_vyasa_rk3288_defconfig
> +++ b/configs/amarula_vyasa_rk3288_defconfig
> @@ -13,6 +13,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
>   BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
>   BR2_TARGET_UBOOT_BOARD_DEFCONFIG="vyasa-rk3288"
>   BR2_TARGET_UBOOT_NEEDS_DTC=y
> +BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
>   BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
>   BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>   BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
> 

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: u-boot 2021.10 needs python3
  2021-10-30 19:24 ` [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: " Giulio Benetti
@ 2021-10-30 23:00   ` Giulio Benetti
  2021-10-30 23:05   ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: " Giulio Benetti
  1 sibling, 0 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:00 UTC (permalink / raw)
  To: buildroot; +Cc: Jagan Teki

Please drop this patch, I'm going to reword it and send the v2.

Sorry for the noise.

-- 
Giulio Benetti
Benetti Engineering sas

On 10/30/21 9:24 PM, Giulio Benetti wrote:
> U-boot 2021.10 requires pylibfdt and consequently Python3, so let's
> enable BR2_TARGET_UBOOT_NEEDS_PYLIBFDT
> and BR2_TARGET_UBOOT_NEEDS_PYTHON3. This fix CI failure:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729725
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
>   configs/asus_tinker_rk3288_defconfig | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/configs/asus_tinker_rk3288_defconfig b/configs/asus_tinker_rk3288_defconfig
> index 609d061b61..6963fa939f 100644
> --- a/configs/asus_tinker_rk3288_defconfig
> +++ b/configs/asus_tinker_rk3288_defconfig
> @@ -13,6 +13,8 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
>   BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
>   BR2_TARGET_UBOOT_BOARD_DEFCONFIG="tinker-rk3288"
>   BR2_TARGET_UBOOT_NEEDS_DTC=y
> +BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
> +BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
>   BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
>   BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
>   BR2_TARGET_UBOOT_FORMAT_DTB_BIN=y
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3
  2021-10-30 19:24 ` [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: " Giulio Benetti
  2021-10-30 23:00   ` Giulio Benetti
@ 2021-10-30 23:05   ` Giulio Benetti
  2021-10-30 23:05     ` [Buildroot] [PATCH v2 2/2] configs/asus_tinker_rk3288_defconfig: u-boot 2021.10 needs python3 and pylibfdt Giulio Benetti
  2021-11-03 22:06     ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3 Thomas Petazzoni
  1 sibling, 2 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:05 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Jagan Teki

Uboot 2021.10 needs python3 so enable it.

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729667

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
V1->V2:
* reword commit log adding Fixes: tag
---
 configs/amarula_vyasa_rk3288_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/amarula_vyasa_rk3288_defconfig b/configs/amarula_vyasa_rk3288_defconfig
index 916a639387..ff96019e1e 100644
--- a/configs/amarula_vyasa_rk3288_defconfig
+++ b/configs/amarula_vyasa_rk3288_defconfig
@@ -13,6 +13,7 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="vyasa-rk3288"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
 BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH v2 2/2] configs/asus_tinker_rk3288_defconfig: u-boot 2021.10 needs python3 and pylibfdt
  2021-10-30 23:05   ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: " Giulio Benetti
@ 2021-10-30 23:05     ` Giulio Benetti
  2021-11-03 22:06     ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3 Thomas Petazzoni
  1 sibling, 0 replies; 7+ messages in thread
From: Giulio Benetti @ 2021-10-30 23:05 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Jagan Teki

Uboot 2021.10 needs python3 and pylibfdt so enable them.

Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729725

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
V1->V2:
* reword commit log adding Fixes: tag
---
 configs/asus_tinker_rk3288_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/asus_tinker_rk3288_defconfig b/configs/asus_tinker_rk3288_defconfig
index 609d061b61..6963fa939f 100644
--- a/configs/asus_tinker_rk3288_defconfig
+++ b/configs/asus_tinker_rk3288_defconfig
@@ -13,6 +13,8 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="tinker-rk3288"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
+BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
+BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y
 BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
 BR2_TARGET_UBOOT_FORMAT_DTB_IMG=y
 BR2_TARGET_UBOOT_FORMAT_DTB_BIN=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3
  2021-10-30 23:05   ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: " Giulio Benetti
  2021-10-30 23:05     ` [Buildroot] [PATCH v2 2/2] configs/asus_tinker_rk3288_defconfig: u-boot 2021.10 needs python3 and pylibfdt Giulio Benetti
@ 2021-11-03 22:06     ` Thomas Petazzoni
  1 sibling, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2021-11-03 22:06 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Jagan Teki, buildroot

On Sun, 31 Oct 2021 01:05:37 +0200
Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:

> Uboot 2021.10 needs python3 so enable it.
> 
> Fixes:
> https://gitlab.com/buildroot.org/buildroot/-/jobs/1723729667
> 
> Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
> ---
> V1->V2:
> * reword commit log adding Fixes: tag
> ---
>  configs/amarula_vyasa_rk3288_defconfig | 1 +
>  1 file changed, 1 insertion(+)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-11-03 22:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-30 19:24 [Buildroot] [PATCH 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3 Giulio Benetti
2021-10-30 19:24 ` [Buildroot] [PATCH 2/2] configs/asus_tinker_rk3288_defconfig: " Giulio Benetti
2021-10-30 23:00   ` Giulio Benetti
2021-10-30 23:05   ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: " Giulio Benetti
2021-10-30 23:05     ` [Buildroot] [PATCH v2 2/2] configs/asus_tinker_rk3288_defconfig: u-boot 2021.10 needs python3 and pylibfdt Giulio Benetti
2021-11-03 22:06     ` [Buildroot] [PATCH v2 1/2] configs/amarula_vyasa_rk3288: u-boot 2021.10 needs python3 Thomas Petazzoni
2021-10-30 23:00 ` [Buildroot] [PATCH " Giulio Benetti

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.