* [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1
@ 2024-01-10 15:22 Flávio Tapajós
2024-01-10 15:22 ` [Buildroot] [PATCH 2/2] configs/asus_tinker-s_rk3288: bump U-boot to 2024.01 Flávio Tapajós
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Flávio Tapajós @ 2024-01-10 15:22 UTC (permalink / raw)
To: buildroot; +Cc: Flávio Tapajós
All in-tree configs with the uboot bootloader use a custom version,
so this patch is mostly for the menuconfig default uboot version
Signed-off-by: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
---
boot/uboot/Config.in | 4 ++--
boot/uboot/uboot.hash | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in
index 21f19db890..beafb38930 100644
--- a/boot/uboot/Config.in
+++ b/boot/uboot/Config.in
@@ -41,7 +41,7 @@ choice
Select the specific U-Boot version you want to use
config BR2_TARGET_UBOOT_LATEST_VERSION
- bool "2022.04"
+ bool "2024.01"
config BR2_TARGET_UBOOT_CUSTOM_VERSION
bool "Custom version"
@@ -85,7 +85,7 @@ endif
config BR2_TARGET_UBOOT_VERSION
string
- default "2022.04" if BR2_TARGET_UBOOT_LATEST_VERSION
+ default "2024.01" if BR2_TARGET_UBOOT_LATEST_VERSION
default BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE \
if BR2_TARGET_UBOOT_CUSTOM_VERSION
default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
diff --git a/boot/uboot/uboot.hash b/boot/uboot/uboot.hash
index a8bd817900..fbe5d21540 100644
--- a/boot/uboot/uboot.hash
+++ b/boot/uboot/uboot.hash
@@ -1,3 +1,3 @@
# Locally computed:
-sha256 68e065413926778e276ec3abd28bb32fa82abaa4a6898d570c1f48fbdb08bcd0 u-boot-2022.04.tar.bz2
+sha256 b99611f1ed237bf3541bdc8434b68c96a6e05967061f992443cb30aabebef5b3 u-boot-2024.01.tar.bz2
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 Licenses/gpl-2.0.txt
--
2.43.0
_______________________________________________
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/asus_tinker-s_rk3288: bump U-boot to 2024.01
2024-01-10 15:22 [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Flávio Tapajós
@ 2024-01-10 15:22 ` Flávio Tapajós
2024-01-13 21:17 ` Peter Korsgaard
2024-01-10 15:55 ` [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Romain Naour
2024-01-13 21:17 ` Peter Korsgaard
2 siblings, 1 reply; 6+ messages in thread
From: Flávio Tapajós @ 2024-01-10 15:22 UTC (permalink / raw)
To: buildroot; +Cc: Flávio Tapajós
Signed-off-by: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
---
configs/asus_tinker-s_rk3288_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/asus_tinker-s_rk3288_defconfig b/configs/asus_tinker-s_rk3288_defconfig
index ad2ccec9f9..fc1b3b3505 100644
--- a/configs/asus_tinker-s_rk3288_defconfig
+++ b/configs/asus_tinker-s_rk3288_defconfig
@@ -10,7 +10,7 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2023.10"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.01"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="tinker-s-rk3288"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_NEEDS_PYTHON3=y
--
2.43.0
_______________________________________________
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 1/2] boot/uboot: bump to 2024.1
2024-01-10 15:22 [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Flávio Tapajós
2024-01-10 15:22 ` [Buildroot] [PATCH 2/2] configs/asus_tinker-s_rk3288: bump U-boot to 2024.01 Flávio Tapajós
@ 2024-01-10 15:55 ` Romain Naour
2024-01-10 16:39 ` Flávio Tapajós
2024-01-13 21:17 ` Peter Korsgaard
2 siblings, 1 reply; 6+ messages in thread
From: Romain Naour @ 2024-01-10 15:55 UTC (permalink / raw)
To: Flávio Tapajós, buildroot
Hello,
Le 10/01/2024 à 16:22, Flávio Tapajós a écrit :
> All in-tree configs with the uboot bootloader use a custom version,
> so this patch is mostly for the menuconfig default uboot version
>
Notice we have a uboot-tools package that was not updated since a while:
https://gitlab.com/buildroot.org/buildroot/-/blob/master/package/uboot-tools/uboot-tools.mk?ref_type=heads#L7
It would be great if you can update it too.
Thanks!
Best regards,
Romain
> Signed-off-by: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
> ---
> boot/uboot/Config.in | 4 ++--
> boot/uboot/uboot.hash | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in
> index 21f19db890..beafb38930 100644
> --- a/boot/uboot/Config.in
> +++ b/boot/uboot/Config.in
> @@ -41,7 +41,7 @@ choice
> Select the specific U-Boot version you want to use
>
> config BR2_TARGET_UBOOT_LATEST_VERSION
> - bool "2022.04"
> + bool "2024.01"
>
> config BR2_TARGET_UBOOT_CUSTOM_VERSION
> bool "Custom version"
> @@ -85,7 +85,7 @@ endif
>
> config BR2_TARGET_UBOOT_VERSION
> string
> - default "2022.04" if BR2_TARGET_UBOOT_LATEST_VERSION
> + default "2024.01" if BR2_TARGET_UBOOT_LATEST_VERSION
> default BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE \
> if BR2_TARGET_UBOOT_CUSTOM_VERSION
> default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
> diff --git a/boot/uboot/uboot.hash b/boot/uboot/uboot.hash
> index a8bd817900..fbe5d21540 100644
> --- a/boot/uboot/uboot.hash
> +++ b/boot/uboot/uboot.hash
> @@ -1,3 +1,3 @@
> # Locally computed:
> -sha256 68e065413926778e276ec3abd28bb32fa82abaa4a6898d570c1f48fbdb08bcd0 u-boot-2022.04.tar.bz2
> +sha256 b99611f1ed237bf3541bdc8434b68c96a6e05967061f992443cb30aabebef5b3 u-boot-2024.01.tar.bz2
> sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 Licenses/gpl-2.0.txt
_______________________________________________
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] boot/uboot: bump to 2024.1
2024-01-10 15:55 ` [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Romain Naour
@ 2024-01-10 16:39 ` Flávio Tapajós
0 siblings, 0 replies; 6+ messages in thread
From: Flávio Tapajós @ 2024-01-10 16:39 UTC (permalink / raw)
To: Romain Naour, buildroot
[-- Attachment #1.1: Type: text/plain, Size: 2301 bytes --]
Hello,
Even though updating a package is a simple task, I only sign-off a bump commit if I can understand/test the consequences of it, which is not the case for uboot-tools
Curiously enough, even without this patch uboot-tools is already with an older version (2021.07) than uboot (2022.04)
Em 10/01/2024 12:55, Romain Naour escreveu:
> Hello,
>
> Le 10/01/2024 à 16:22, Flávio Tapajós a écrit :
>> All in-tree configs with the uboot bootloader use a custom version,
>> so this patch is mostly for the menuconfig default uboot version
>>
> Notice we have a uboot-tools package that was not updated since a while:
>
> https://gitlab.com/buildroot.org/buildroot/-/blob/master/package/uboot-tools/uboot-tools.mk?ref_type=heads#L7
>
> It would be great if you can update it too.
>
> Thanks!
>
> Best regards,
> Romain
>
>
>> Signed-off-by: Flávio Tapajós<flavio.tapajos@newtesc.com.br>
>> ---
>> boot/uboot/Config.in | 4 ++--
>> boot/uboot/uboot.hash | 2 +-
>> 2 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/boot/uboot/Config.in b/boot/uboot/Config.in
>> index 21f19db890..beafb38930 100644
>> --- a/boot/uboot/Config.in
>> +++ b/boot/uboot/Config.in
>> @@ -41,7 +41,7 @@ choice
>> Select the specific U-Boot version you want to use
>>
>> config BR2_TARGET_UBOOT_LATEST_VERSION
>> - bool "2022.04"
>> + bool "2024.01"
>>
>> config BR2_TARGET_UBOOT_CUSTOM_VERSION
>> bool "Custom version"
>> @@ -85,7 +85,7 @@ endif
>>
>> config BR2_TARGET_UBOOT_VERSION
>> string
>> - default "2022.04" if BR2_TARGET_UBOOT_LATEST_VERSION
>> + default "2024.01" if BR2_TARGET_UBOOT_LATEST_VERSION
>> default BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE \
>> if BR2_TARGET_UBOOT_CUSTOM_VERSION
>> default "custom" if BR2_TARGET_UBOOT_CUSTOM_TARBALL
>> diff --git a/boot/uboot/uboot.hash b/boot/uboot/uboot.hash
>> index a8bd817900..fbe5d21540 100644
>> --- a/boot/uboot/uboot.hash
>> +++ b/boot/uboot/uboot.hash
>> @@ -1,3 +1,3 @@
>> # Locally computed:
>> -sha256 68e065413926778e276ec3abd28bb32fa82abaa4a6898d570c1f48fbdb08bcd0 u-boot-2022.04.tar.bz2
>> +sha256 b99611f1ed237bf3541bdc8434b68c96a6e05967061f992443cb30aabebef5b3 u-boot-2024.01.tar.bz2
>> sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 Licenses/gpl-2.0.txt
[-- Attachment #1.2: Type: text/html, Size: 3046 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
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] boot/uboot: bump to 2024.1
2024-01-10 15:22 [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Flávio Tapajós
2024-01-10 15:22 ` [Buildroot] [PATCH 2/2] configs/asus_tinker-s_rk3288: bump U-boot to 2024.01 Flávio Tapajós
2024-01-10 15:55 ` [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Romain Naour
@ 2024-01-13 21:17 ` Peter Korsgaard
2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2024-01-13 21:17 UTC (permalink / raw)
To: Flávio Tapajós; +Cc: buildroot
>>>>> "Flávio" == Flávio Tapajós <flavio.tapajos@newtesc.com.br> writes:
> All in-tree configs with the uboot bootloader use a custom version,
> so this patch is mostly for the menuconfig default uboot version
> Signed-off-by: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
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/asus_tinker-s_rk3288: bump U-boot to 2024.01
2024-01-10 15:22 ` [Buildroot] [PATCH 2/2] configs/asus_tinker-s_rk3288: bump U-boot to 2024.01 Flávio Tapajós
@ 2024-01-13 21:17 ` Peter Korsgaard
0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2024-01-13 21:17 UTC (permalink / raw)
To: Flávio Tapajós; +Cc: buildroot
>>>>> "Flávio" == Flávio Tapajós <flavio.tapajos@newtesc.com.br> writes:
> Signed-off-by: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
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
end of thread, other threads:[~2024-01-13 21:19 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-10 15:22 [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Flávio Tapajós
2024-01-10 15:22 ` [Buildroot] [PATCH 2/2] configs/asus_tinker-s_rk3288: bump U-boot to 2024.01 Flávio Tapajós
2024-01-13 21:17 ` Peter Korsgaard
2024-01-10 15:55 ` [Buildroot] [PATCH 1/2] boot/uboot: bump to 2024.1 Romain Naour
2024-01-10 16:39 ` Flávio Tapajós
2024-01-13 21:17 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox