Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot
@ 2023-11-09  3:59 Jesse Taube
  2023-11-09  3:59 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Use zImage instead of uImage Jesse Taube
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Jesse Taube @ 2023-11-09  3:59 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Thomas Petazzoni, Jesse Taube

Bump Linux to 6.6 and U-Boot to 2024.01-rc2

Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
---
 configs/imxrt1050-evk_defconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/imxrt1050-evk_defconfig b/configs/imxrt1050-evk_defconfig
index af060fb9f4..0eb6f626c9 100644
--- a/configs/imxrt1050-evk_defconfig
+++ b/configs/imxrt1050-evk_defconfig
@@ -7,12 +7,12 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/freescale/imxrt1050evk/genimage.cfg"
 
 # Toolchain
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
 
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6"
 BR2_LINUX_KERNEL_DEFCONFIG="imxrt"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
@@ -30,7 +30,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-minimal.config"
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.10"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.01-rc2"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imxrt1050-evk"
 BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/freescale/imxrt1050evk/uboot.fragment"
 BR2_TARGET_UBOOT_FORMAT_IMG=y
-- 
2.42.0

_______________________________________________
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 v1] configs/imxrt1050-evk: Use zImage instead of uImage
  2023-11-09  3:59 [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse Taube
@ 2023-11-09  3:59 ` Jesse Taube
  2024-01-10 20:47   ` Thomas Petazzoni via buildroot
  2023-11-09  4:00 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse T
  2023-11-09 11:21 ` Giulio Benetti
  2 siblings, 1 reply; 7+ messages in thread
From: Jesse Taube @ 2023-11-09  3:59 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Thomas Petazzoni, Jesse Taube

imxrt1050-evk was using uImage switch to using zImage
now.

Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
---
 board/freescale/imxrt1050evk/genimage.cfg   | 2 +-
 board/freescale/imxrt1050evk/uboot.fragment | 2 +-
 configs/imxrt1050-evk_defconfig             | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/board/freescale/imxrt1050evk/genimage.cfg b/board/freescale/imxrt1050evk/genimage.cfg
index daa51bdbe0..64fc8452f8 100644
--- a/board/freescale/imxrt1050evk/genimage.cfg
+++ b/board/freescale/imxrt1050evk/genimage.cfg
@@ -1,7 +1,7 @@
 image boot.vfat {
 	vfat {
 		files = {
-			"uImage",
+			"zImage",
 			"imxrt1050-evk.dtb",
 		}
 	}
diff --git a/board/freescale/imxrt1050evk/uboot.fragment b/board/freescale/imxrt1050evk/uboot.fragment
index 1c5bb6af35..dd45ca4c29 100644
--- a/board/freescale/imxrt1050evk/uboot.fragment
+++ b/board/freescale/imxrt1050evk/uboot.fragment
@@ -1,2 +1,2 @@
 CONFIG_USE_BOOTCOMMAND=y
-CONFIG_BOOTCOMMAND="setenv bootargs console=ttyLP0 root=/dev/mmcblk0p2 rw earlycon rootwait;load mmc 0:1 0x80800000 imxrt1050-evk.dtb;load mmc 0:1 0x80000000 uImage;bootm 0x80000000 - 0x80800000"
+CONFIG_BOOTCOMMAND="setenv bootargs console=ttyLP0 root=/dev/mmcblk0p2 rw earlycon rootwait;load mmc 0:1 0x80800000 imxrt1050-evk.dtb;load mmc 0:1 0x80000000 zImage;bootz 0x80000000 - 0x80800000"
diff --git a/configs/imxrt1050-evk_defconfig b/configs/imxrt1050-evk_defconfig
index 0eb6f626c9..85d4783579 100644
--- a/configs/imxrt1050-evk_defconfig
+++ b/configs/imxrt1050-evk_defconfig
@@ -14,7 +14,7 @@ BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6"
 BR2_LINUX_KERNEL_DEFCONFIG="imxrt"
-BR2_LINUX_KERNEL_UIMAGE=y
+BR2_LINUX_KERNEL_ZIMAGE=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imxrt1050-evk"
 
-- 
2.42.0

_______________________________________________
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 v1] configs/imxrt1050-evk: Bump Kernel and U-boot
  2023-11-09  3:59 [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse Taube
  2023-11-09  3:59 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Use zImage instead of uImage Jesse Taube
@ 2023-11-09  4:00 ` Jesse T
  2023-11-09 11:21 ` Giulio Benetti
  2 siblings, 0 replies; 7+ messages in thread
From: Jesse T @ 2023-11-09  4:00 UTC (permalink / raw)
  To: buildroot; +Cc: Giulio Benetti, Thomas Petazzoni

On Wed, Nov 8, 2023 at 10:59 PM Jesse Taube <mr.bossman075@gmail.com> wrote:
>
> Bump Linux to 6.6 and U-Boot to 2024.01-rc2
>
> Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
> ---
>  configs/imxrt1050-evk_defconfig | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/configs/imxrt1050-evk_defconfig b/configs/imxrt1050-evk_defconfig
> index af060fb9f4..0eb6f626c9 100644
> --- a/configs/imxrt1050-evk_defconfig
> +++ b/configs/imxrt1050-evk_defconfig
> @@ -7,12 +7,12 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
>  BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/freescale/imxrt1050evk/genimage.cfg"
>
>  # Toolchain
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
>
>  # Kernel
>  BR2_LINUX_KERNEL=y
>  BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6"
>  BR2_LINUX_KERNEL_DEFCONFIG="imxrt"
>  BR2_LINUX_KERNEL_UIMAGE=y
>  BR2_LINUX_KERNEL_DTS_SUPPORT=y
> @@ -30,7 +30,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-minimal.config"
>  BR2_TARGET_UBOOT=y
>  BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
>  BR2_TARGET_UBOOT_CUSTOM_VERSION=y
> -BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.10"
> +BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.01-rc2"
>  BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imxrt1050-evk"
>  BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/freescale/imxrt1050evk/uboot.fragment"
>  BR2_TARGET_UBOOT_FORMAT_IMG=y
> --
> 2.42.0
>

Sorry for the late reply U-Boot has a regression.

Thanks,
Jesse Taube
_______________________________________________
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 v1] configs/imxrt1050-evk: Bump Kernel and U-boot
  2023-11-09  3:59 [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse Taube
  2023-11-09  3:59 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Use zImage instead of uImage Jesse Taube
  2023-11-09  4:00 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse T
@ 2023-11-09 11:21 ` Giulio Benetti
  2024-01-09 22:00   ` Giulio Benetti
  2 siblings, 1 reply; 7+ messages in thread
From: Giulio Benetti @ 2023-11-09 11:21 UTC (permalink / raw)
  To: Jesse Taube, buildroot; +Cc: Thomas Petazzoni

Hi Jesse,

On 09/11/23 04:59, Jesse Taube wrote:
> Bump Linux to 6.6 and U-Boot to 2024.01-rc2
> 
> Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
> ---
>   configs/imxrt1050-evk_defconfig | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/configs/imxrt1050-evk_defconfig b/configs/imxrt1050-evk_defconfig
> index af060fb9f4..0eb6f626c9 100644
> --- a/configs/imxrt1050-evk_defconfig
> +++ b/configs/imxrt1050-evk_defconfig
> @@ -7,12 +7,12 @@ BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
>   BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/freescale/imxrt1050evk/genimage.cfg"
>   
>   # Toolchain
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
>   
>   # Kernel
>   BR2_LINUX_KERNEL=y
>   BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6"
>   BR2_LINUX_KERNEL_DEFCONFIG="imxrt"
>   BR2_LINUX_KERNEL_UIMAGE=y
>   BR2_LINUX_KERNEL_DTS_SUPPORT=y
> @@ -30,7 +30,7 @@ BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-minimal.config"
>   BR2_TARGET_UBOOT=y
>   BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
>   BR2_TARGET_UBOOT_CUSTOM_VERSION=y
> -BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.10"
> +BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.01-rc2"

I would really avoid to bump to a rc version. Please use v2023.10
or let's wait for v2024.01 to be released.

Thank you
Best regards
-- 
Giulio Benetti
CEO&CTO@Benetti Engineering sas

>   BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imxrt1050-evk"
>   BR2_TARGET_UBOOT_CONFIG_FRAGMENT_FILES="board/freescale/imxrt1050evk/uboot.fragment"
>   BR2_TARGET_UBOOT_FORMAT_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 v1] configs/imxrt1050-evk: Bump Kernel and U-boot
  2023-11-09 11:21 ` Giulio Benetti
@ 2024-01-09 22:00   ` Giulio Benetti
  2024-01-10 20:45     ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 7+ messages in thread
From: Giulio Benetti @ 2024-01-09 22:00 UTC (permalink / raw)
  To: Jesse Taube, buildroot; +Cc: Thomas Petazzoni

Hi Jesse,

this patch has been superseded by V2 can you please set it in Patchwork?

https://patchwork.ozlabs.org/project/buildroot/patch/20231109035947.1852675-1-Mr.Bossman075@gmail.com/

Thank you!

Best regards
-- 
Giulio Benetti
CEO&CTO@Benetti Engineering sas

On 09/11/23 12:21, Giulio Benetti wrote:
> Hi Jesse,
> 
> On 09/11/23 04:59, Jesse Taube wrote:
>> Bump Linux to 6.6 and U-Boot to 2024.01-rc2
>>
>> Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
>> ---
>>   configs/imxrt1050-evk_defconfig | 6 +++---
>>   1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/configs/imxrt1050-evk_defconfig 
>> b/configs/imxrt1050-evk_defconfig
>> index af060fb9f4..0eb6f626c9 100644
>> --- a/configs/imxrt1050-evk_defconfig
>> +++ b/configs/imxrt1050-evk_defconfig
>> @@ -7,12 +7,12 @@ 
>> BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
>>   BR2_ROOTFS_POST_SCRIPT_ARGS="-c 
>> board/freescale/imxrt1050evk/genimage.cfg"
>>   # Toolchain
>> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
>> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
>>   # Kernel
>>   BR2_LINUX_KERNEL=y
>>   BR2_LINUX_KERNEL_CUSTOM_VERSION=y
>> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1"
>> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6"
>>   BR2_LINUX_KERNEL_DEFCONFIG="imxrt"
>>   BR2_LINUX_KERNEL_UIMAGE=y
>>   BR2_LINUX_KERNEL_DTS_SUPPORT=y
>> @@ -30,7 +30,7 @@ 
>> BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-minimal.config"
>>   BR2_TARGET_UBOOT=y
>>   BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
>>   BR2_TARGET_UBOOT_CUSTOM_VERSION=y
>> -BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2022.10"
>> +BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2024.01-rc2"
> 
> I would really avoid to bump to a rc version. Please use v2023.10
> or let's wait for v2024.01 to be released.
> 
> Thank you
> Best regards

_______________________________________________
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 v1] configs/imxrt1050-evk: Bump Kernel and U-boot
  2024-01-09 22:00   ` Giulio Benetti
@ 2024-01-10 20:45     ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-01-10 20:45 UTC (permalink / raw)
  To: Giulio Benetti; +Cc: Jesse Taube, buildroot

On Tue, 9 Jan 2024 23:00:09 +0100
Giulio Benetti <giulio.benetti@benettiengineering.com> wrote:

> this patch has been superseded by V2 can you please set it in Patchwork?
> 
> https://patchwork.ozlabs.org/project/buildroot/patch/20231109035947.1852675-1-Mr.Bossman075@gmail.com/

Done!

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] 7+ messages in thread

* Re: [Buildroot] [PATCH v1] configs/imxrt1050-evk: Use zImage instead of uImage
  2023-11-09  3:59 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Use zImage instead of uImage Jesse Taube
@ 2024-01-10 20:47   ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-01-10 20:47 UTC (permalink / raw)
  To: Jesse Taube; +Cc: Giulio Benetti, buildroot

On Wed,  8 Nov 2023 22:59:47 -0500
Jesse Taube <mr.bossman075@gmail.com> wrote:

> imxrt1050-evk was using uImage switch to using zImage
> now.
> 
> Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com>
> ---
>  board/freescale/imxrt1050evk/genimage.cfg   | 2 +-
>  board/freescale/imxrt1050evk/uboot.fragment | 2 +-
>  configs/imxrt1050-evk_defconfig             | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)

Applied to master, 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:[~2024-01-10 20:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-09  3:59 [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse Taube
2023-11-09  3:59 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Use zImage instead of uImage Jesse Taube
2024-01-10 20:47   ` Thomas Petazzoni via buildroot
2023-11-09  4:00 ` [Buildroot] [PATCH v1] configs/imxrt1050-evk: Bump Kernel and U-boot Jesse T
2023-11-09 11:21 ` Giulio Benetti
2024-01-09 22:00   ` Giulio Benetti
2024-01-10 20:45     ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox