* [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: u-boot 2024.01 needs host-openssl @ 2024-05-25 9:04 Peter Korsgaard 2024-05-25 9:04 ` [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: " Peter Korsgaard 2024-05-25 16:49 ` [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: " Peter Korsgaard 0 siblings, 2 replies; 6+ messages in thread From: Peter Korsgaard @ 2024-05-25 9:04 UTC (permalink / raw) To: buildroot Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/6918689094 Commit 113eeb55d67 (configs/orangepi_r1_defconfig: bump U-boot to v2024.01 to fix compatibility with setuptools >= 69) bumped U-Boot, but forgot to add a dependency on host-openssl. Fix that. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- configs/orangepi_r1_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/orangepi_r1_defconfig b/configs/orangepi_r1_defconfig index b48e6d0015..405e0a6763 100644 --- a/configs/orangepi_r1_defconfig +++ b/configs/orangepi_r1_defconfig @@ -26,6 +26,7 @@ BR2_TARGET_UBOOT_BOARD_DEFCONFIG="orangepi_r1" 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_CUSTOM=y BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin" BR2_PACKAGE_HOST_DOSFSTOOLS=y -- 2.39.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: u-boot 2024.01 needs host-openssl 2024-05-25 9:04 [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: u-boot 2024.01 needs host-openssl Peter Korsgaard @ 2024-05-25 9:04 ` Peter Korsgaard 2024-05-25 16:50 ` Peter Korsgaard 2024-05-25 16:49 ` [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: " Peter Korsgaard 1 sibling, 1 reply; 6+ messages in thread From: Peter Korsgaard @ 2024-05-25 9:04 UTC (permalink / raw) To: buildroot Commit 2e349be94a87db05d (configs/orangepi_pc_defconfig: bump U-boot to v2024.01 to fix compatibility with setuptools >= 69) bumped U-Boot, but forgot to add a dependency on host-openssl. Fix that. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- configs/orangepi_pc_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/orangepi_pc_defconfig b/configs/orangepi_pc_defconfig index 1713fc609f..17c6109222 100644 --- a/configs/orangepi_pc_defconfig +++ b/configs/orangepi_pc_defconfig @@ -29,6 +29,7 @@ BR2_TARGET_UBOOT_BOARD_DEFCONFIG="orangepi_pc" 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_CUSTOM=y BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin" BR2_PACKAGE_HOST_GENIMAGE=y -- 2.39.2 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: u-boot 2024.01 needs host-openssl 2024-05-25 9:04 ` [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: " Peter Korsgaard @ 2024-05-25 16:50 ` Peter Korsgaard 2024-06-08 15:25 ` Peter Korsgaard 0 siblings, 1 reply; 6+ messages in thread From: Peter Korsgaard @ 2024-05-25 16:50 UTC (permalink / raw) To: buildroot >>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes: > Commit 2e349be94a87db05d (configs/orangepi_pc_defconfig: bump U-boot to > v2024.01 to fix compatibility with setuptools >= 69) bumped U-Boot, but > forgot to add a dependency on host-openssl. Fix that. > Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Committed, thanks. -- Bye, Peter Korsgaard _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: u-boot 2024.01 needs host-openssl 2024-05-25 16:50 ` Peter Korsgaard @ 2024-06-08 15:25 ` Peter Korsgaard 0 siblings, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2024-06-08 15:25 UTC (permalink / raw) To: buildroot >>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes: >>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes: >> Commit 2e349be94a87db05d (configs/orangepi_pc_defconfig: bump U-boot to >> v2024.01 to fix compatibility with setuptools >= 69) bumped U-Boot, but >> forgot to add a dependency on host-openssl. Fix that. >> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> > Committed, thanks. Committed to 2024.02.x, thanks. -- Bye, Peter Korsgaard _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: u-boot 2024.01 needs host-openssl 2024-05-25 9:04 [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: u-boot 2024.01 needs host-openssl Peter Korsgaard 2024-05-25 9:04 ` [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: " Peter Korsgaard @ 2024-05-25 16:49 ` Peter Korsgaard 2024-06-08 15:25 ` Peter Korsgaard 1 sibling, 1 reply; 6+ messages in thread From: Peter Korsgaard @ 2024-05-25 16:49 UTC (permalink / raw) To: buildroot >>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes: > Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/6918689094 > Commit 113eeb55d67 (configs/orangepi_r1_defconfig: bump U-boot to v2024.01 > to fix compatibility with setuptools >= 69) bumped U-Boot, but forgot to add > a dependency on host-openssl. Fix that. > Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Committed, thanks. -- Bye, Peter Korsgaard _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: u-boot 2024.01 needs host-openssl 2024-05-25 16:49 ` [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: " Peter Korsgaard @ 2024-06-08 15:25 ` Peter Korsgaard 0 siblings, 0 replies; 6+ messages in thread From: Peter Korsgaard @ 2024-06-08 15:25 UTC (permalink / raw) To: buildroot >>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes: >>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes: >> Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/6918689094 >> Commit 113eeb55d67 (configs/orangepi_r1_defconfig: bump U-boot to v2024.01 >> to fix compatibility with setuptools >= 69) bumped U-Boot, but forgot to add >> a dependency on host-openssl. Fix that. >> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> > Committed, thanks. Committed to 2024.02.x, thanks. -- Bye, Peter Korsgaard _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-06-08 15:25 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-05-25 9:04 [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: u-boot 2024.01 needs host-openssl Peter Korsgaard 2024-05-25 9:04 ` [Buildroot] [PATCH 2/2] configs/orangepi_pc_defconfig: " Peter Korsgaard 2024-05-25 16:50 ` Peter Korsgaard 2024-06-08 15:25 ` Peter Korsgaard 2024-05-25 16:49 ` [Buildroot] [PATCH 1/2] configs/orangepi_r1_defconfig: " Peter Korsgaard 2024-06-08 15:25 ` Peter Korsgaard
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox