All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] boot/uboot: bump to version 2019.10
@ 2019-10-07 21:46 Pierre-Jean Texier
  2019-10-07 21:46 ` [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions Pierre-Jean Texier
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Pierre-Jean Texier @ 2019-10-07 21:46 UTC (permalink / raw)
  To: buildroot

See https://lists.denx.de/pipermail/u-boot/2019-October/385775.html

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
---
 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 8642b58..b7f9ed4 100644
--- a/boot/uboot/Config.in
+++ b/boot/uboot/Config.in
@@ -39,7 +39,7 @@ choice
 	  Select the specific U-Boot version you want to use
 
 config BR2_TARGET_UBOOT_LATEST_VERSION
-	bool "2019.07"
+	bool "2019.10"
 
 config BR2_TARGET_UBOOT_CUSTOM_VERSION
 	bool "Custom version"
@@ -87,7 +87,7 @@ endif
 
 config BR2_TARGET_UBOOT_VERSION
 	string
-	default "2019.07"	if BR2_TARGET_UBOOT_LATEST_VERSION
+	default "2019.10"	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 d2830ee..1dd2456 100644
--- a/boot/uboot/uboot.hash
+++ b/boot/uboot/uboot.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256  bff4fa77e8da17521c030ca4c5b947a056c1b1be4d3e6ee8637020b8d50251d0  u-boot-2019.07.tar.bz2
+sha256  8d6d6070739522dd236cba7055b8736bfe92b4fac0ea18ad809829ca79667014  u-boot-2019.10.tar.bz2
 sha256  8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643  Licenses/gpl-2.0.txt
-- 
2.7.4

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
  2019-10-07 21:46 [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Pierre-Jean Texier
@ 2019-10-07 21:46 ` Pierre-Jean Texier
  2019-10-08  7:15   ` Thomas Petazzoni
  2019-10-07 22:05 ` [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Fabio Estevam
  2019-10-08  7:13 ` Thomas Petazzoni
  2 siblings, 1 reply; 13+ messages in thread
From: Pierre-Jean Texier @ 2019-10-07 21:46 UTC (permalink / raw)
  To: buildroot

Bump U-Boot to 2019.10 and kernel to version 5.3.4.

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
---
 configs/warp7_defconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
index cba4845..0481c46 100644
--- a/configs/warp7_defconfig
+++ b/configs/warp7_defconfig
@@ -15,7 +15,7 @@ BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.3.1"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.3.4"
 BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp"
@@ -25,7 +25,7 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="warp7"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.10"
 BR2_TARGET_UBOOT_FORMAT_DTB_IMX=y
 
 # wifi firmware for brcm43430
-- 
2.7.4

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

* [Buildroot] [PATCH] boot/uboot: bump to version 2019.10
  2019-10-07 21:46 [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Pierre-Jean Texier
  2019-10-07 21:46 ` [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions Pierre-Jean Texier
@ 2019-10-07 22:05 ` Fabio Estevam
  2019-10-08 11:18   ` Pierre-Jean Texier
  2019-10-08  7:13 ` Thomas Petazzoni
  2 siblings, 1 reply; 13+ messages in thread
From: Fabio Estevam @ 2019-10-07 22:05 UTC (permalink / raw)
  To: buildroot

On Mon, Oct 7, 2019 at 6:46 PM Pierre-Jean Texier <pjtexier@koncepto.io> wrote:

>  config BR2_TARGET_UBOOT_LATEST_VERSION
> -       bool "2019.07"
> +       bool "2019.10"

If possible, please also bump uboot-tools.

Thanks

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

* [Buildroot] [PATCH] boot/uboot: bump to version 2019.10
  2019-10-07 21:46 [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Pierre-Jean Texier
  2019-10-07 21:46 ` [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions Pierre-Jean Texier
  2019-10-07 22:05 ` [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Fabio Estevam
@ 2019-10-08  7:13 ` Thomas Petazzoni
  2 siblings, 0 replies; 13+ messages in thread
From: Thomas Petazzoni @ 2019-10-08  7:13 UTC (permalink / raw)
  To: buildroot

On Mon,  7 Oct 2019 23:46:36 +0200
Pierre-Jean Texier <pjtexier@koncepto.io> wrote:

> See https://lists.denx.de/pipermail/u-boot/2019-October/385775.html
> 
> Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
> ---
>  boot/uboot/Config.in  | 4 ++--
>  boot/uboot/uboot.hash | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
  2019-10-07 21:46 ` [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions Pierre-Jean Texier
@ 2019-10-08  7:15   ` Thomas Petazzoni
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Petazzoni @ 2019-10-08  7:15 UTC (permalink / raw)
  To: buildroot

On Mon,  7 Oct 2019 23:46:37 +0200
Pierre-Jean Texier <pjtexier@koncepto.io> wrote:

> Bump U-Boot to 2019.10 and kernel to version 5.3.4.
> 
> Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
> ---
>  configs/warp7_defconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] boot/uboot: bump to version 2019.10
  2019-10-07 22:05 ` [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Fabio Estevam
@ 2019-10-08 11:18   ` Pierre-Jean Texier
  0 siblings, 0 replies; 13+ messages in thread
From: Pierre-Jean Texier @ 2019-10-08 11:18 UTC (permalink / raw)
  To: buildroot


Le 08/10/2019 ? 00:05, Fabio Estevam a ?crit?:
> On Mon, Oct 7, 2019 at 6:46 PM Pierre-Jean Texier <pjtexier@koncepto.io> wrote:
> 
>>   config BR2_TARGET_UBOOT_LATEST_VERSION
>> -       bool "2019.07"
>> +       bool "2019.10"
> 
> If possible, please also bump uboot-tools.

Sure, I will do.

Thanks !

Pierre-Jean

> 
> Thanks
> 

-- 
Pierre-Jean Texier
Embedded Linux Engineer
https://koncepto.io

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

* Re: [Buildroot] [PATCH] configs/warp7: bump Kernel and U-Boot versions
  2021-10-26 17:22 [Buildroot] [PATCH] configs/warp7: bump Kernel and U-Boot versions Fabio Estevam
@ 2021-11-05 16:11 ` Peter Korsgaard
  0 siblings, 0 replies; 13+ messages in thread
From: Peter Korsgaard @ 2021-11-05 16:11 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: buildroot

>>>>> "Fabio" == Fabio Estevam <festevam@gmail.com> writes:

 > Bump U-Boot to 2021.10 and kernel to version 5.14.14.
 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH] configs/warp7: bump Kernel and U-Boot versions
@ 2021-10-26 17:22 Fabio Estevam
  2021-11-05 16:11 ` Peter Korsgaard
  0 siblings, 1 reply; 13+ messages in thread
From: Fabio Estevam @ 2021-10-26 17:22 UTC (permalink / raw)
  To: buildroot; +Cc: Fabio Estevam

Bump U-Boot to 2021.10 and kernel to version 5.14.14.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/warp7_defconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
index 23ae4c225716..830d5187c8c3 100644
--- a/configs/warp7_defconfig
+++ b/configs/warp7_defconfig
@@ -3,8 +3,8 @@ BR2_arm=y
 BR2_cortex_a7=y
 BR2_ARM_FPU_NEON_VFPV4=y
 
-# Linux headers same as kernel, a 5.13 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_13=y
+# Linux headers same as kernel, a 5.14 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_14=y
 
 # system
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
@@ -15,7 +15,7 @@ BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.13"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.14.14"
 BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp"
@@ -25,7 +25,7 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="warp7"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.10"
 BR2_TARGET_UBOOT_FORMAT_DTB_IMX=y
 
 # wifi firmware for brcm43430
-- 
2.25.1

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

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
  2019-07-08 20:11 [Buildroot] [PATCH] configs/warp7: Bump kernel " Pierre-Jean Texier
  2019-07-08 21:52 ` Joris Offouga
@ 2019-07-14  9:59 ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Peter Korsgaard @ 2019-07-14  9:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Pierre-Jean" == Pierre-Jean Texier <pjtexier@koncepto.io> writes:

 > Bump U-Boot to 2019.07 and kernel to version 5.1.16.
 > Also
 >  - adjust the U-Boot binary name after DM conversion.
 >  - add missing notes about DFU

 > Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
  2019-07-08 20:11 [Buildroot] [PATCH] configs/warp7: Bump kernel " Pierre-Jean Texier
@ 2019-07-08 21:52 ` Joris Offouga
  2019-07-14  9:59 ` Peter Korsgaard
  1 sibling, 0 replies; 13+ messages in thread
From: Joris Offouga @ 2019-07-08 21:52 UTC (permalink / raw)
  To: buildroot

Hi Pierre-Jean

Le 08/07/2019 ? 22:11, Pierre-Jean Texier a ?crit?:
> Bump U-Boot to 2019.07 and kernel to version 5.1.16.
>
> Also
>   - adjust the U-Boot binary name after DM conversion.
>   - add missing notes about DFU
>
> Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
> ---
> Logs:
> U-Boot 2019.07 (Jul 08 2019 - 21:48:39 +0200)
>
> CPU:   Freescale i.MX7S rev1.2 800 MHz (running at 792 MHz)
> CPU:   Extended Commercial temperature grade (-20C to 105C) at 41C
> Reset cause: POR
> Model: Warp i.MX7 Board
> Board: WARP7 in secure mode OPTEE DRAM 0x9d000000-0xa0000000
> DRAM:  464 MiB
> PMIC: PFUZE3000 DEV_ID=0x30 REV_ID=0x11
> MMC:   FSL_SDHC: 1, FSL_SDHC: 0
>
> => run bootcmd
> switch to partitions #0, OK
> mmc0(part 0) is current device
> switch to partitions #0, OK
> mmc0(part 0) is current device
> 8188560 bytes read in 118 ms (66.2 MiB/s)
> Booting from mmc ...
> ...
> Starting kernel ...
>
> [    0.000000] Booting Linux on physical CPU 0x0
> [    0.000000] Linux version 5.1.16 (pjtexier at menoah)
>
>   board/warp7/readme.txt  | 22 ++++++++++++++++++----
>   configs/warp7_defconfig | 10 +++++-----
>   2 files changed, 23 insertions(+), 9 deletions(-)
>
> diff --git a/board/warp7/readme.txt b/board/warp7/readme.txt
> index 47458e9..aff7a60 100644
> --- a/board/warp7/readme.txt
> +++ b/board/warp7/readme.txt
> @@ -20,7 +20,7 @@ You will find in output/images/ the following files:
>     - rootfs.ext4
>     - rootfs.tar
>     - sdcard.img
> -  - u-boot.imx
> +  - u-boot-dtb.imx
>     - zImage
>   
>   Flash the eMMC image
> @@ -61,11 +61,11 @@ Connect a USB to serial adapter between the host PC and warp7 serial
>   USB port, and also a USB cable between the OTG warp7 port and the host
>   PC.
>   
> -Copy u-boot.imx to the imx_usb_loader folder.
> +Copy u-boot-dtb.imx to the imx_usb_loader folder.
>   
> -Load u-boot.imx via USB:
> +Load u-boot-dtb.imx via USB:
>   
> -$ sudo ./imx_usb u-boot.imx
> +$ sudo ./imx_usb u-boot-dtb.imx
>   
>   Then U-Boot should start and its messages will appear in the console program.
>   
> @@ -75,6 +75,20 @@ Use the default environment variables:
>   
>   => env default -f -a
>   => saveenv
> +
> +Run the DFU command:
> +=> dfu 0 mmc 0
> +
> +Transfer u-boot-dtb.imx that will be flashed into the eMMC:
> +
> +$ sudo dfu-util -D u-boot-dtb.imx -a boot
> +
> +Then on the U-Boot prompt the following message should be seen after a
> +successful upgrade:
> +
> +#DOWNLOAD ... OK
> +Ctrl+C to exit ...
> +
>   => ums 0 mmc 0
>   
>   sudo dd if=output/images/sdcard.img of=/dev/<your-emmc-device>
> diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
> index 8acd730..9b10085 100644
> --- a/configs/warp7_defconfig
> +++ b/configs/warp7_defconfig
> @@ -3,8 +3,8 @@ BR2_arm=y
>   BR2_cortex_a7=y
>   BR2_ARM_FPU_NEON_VFPV4=y
>   
> -# Linux headers same as kernel, a 5.0 series
> -BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_0=y
> +# Linux headers same as kernel, a 5.1 series
> +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_1=y
>   
>   # system
>   BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
> @@ -15,7 +15,7 @@ BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay"
>   # Kernel
>   BR2_LINUX_KERNEL=y
>   BR2_LINUX_KERNEL_CUSTOM_VERSION=y
> -BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.0.9"
> +BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
>   BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
>   BR2_LINUX_KERNEL_DTS_SUPPORT=y
>   BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp"
> @@ -25,8 +25,8 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
>   BR2_TARGET_UBOOT=y
>   BR2_TARGET_UBOOT_BOARDNAME="warp7"
>   BR2_TARGET_UBOOT_CUSTOM_VERSION=y
> -BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.01"
> -BR2_TARGET_UBOOT_FORMAT_IMX=y
> +BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.07"
> +BR2_TARGET_UBOOT_FORMAT_DTB_IMX=y
>   
>   # wifi firmware for brcm43430
>   BR2_PACKAGE_LINUX_FIRMWARE=y

it works for me

U-Boot 2019.07 (Jul 08 2019 - 23:35:25 +0200)

CPU:?? Freescale i.MX7S rev1.2 800 MHz (running at 792 MHz)
CPU:?? Extended Commercial temperature grade (-20C to 105C) at 46C
Reset cause: POR
Model: Warp i.MX7 Board
Board: WARP7 in secure mode OPTEE DRAM 0x9d000000-0xa0000000
DRAM:? 464 MiB
PMIC: PFUZE3000 DEV_ID=0x30 REV_ID=0x11
MMC:?? FSL_SDHC: 1, FSL_SDHC: 0
Loading Environment from MMC... OK
In:??? serial at 30860000
Out:?? serial at 30860000
Err:?? serial at 30860000
SEC0: RNG instantiated
Net:?? usb_ether
Warning: usb_ether (eth0) using random MAC address - 4a:ec:76:9f:4e:28

Hit any key to stop autoboot:? 0
switch to partitions #0, OK
mmc0(part 0) is current device
switch to partitions #0, OK
mmc0(part 0) is current device
8188688 bytes read in 119 ms (65.6 MiB/s)
Booting from mmc ...
26889 bytes read in 10 ms (2.6 MiB/s)
Kernel image @ 0x80800000 [ 0x000000 - 0x7cf310 ]
## Flattened Device Tree blob at 83000000
 ?? Booting using the fdt blob at 0x83000000
 ?? Using Device Tree in place at 83000000, end 83009908

Starting kernel ...

Tested-by: Joris Offouga <offougajoris@gmail.com>

Best Regards,

Joris Offouga

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20190708/9be20de2/attachment.html>

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
@ 2019-07-08 20:11 Pierre-Jean Texier
  2019-07-08 21:52 ` Joris Offouga
  2019-07-14  9:59 ` Peter Korsgaard
  0 siblings, 2 replies; 13+ messages in thread
From: Pierre-Jean Texier @ 2019-07-08 20:11 UTC (permalink / raw)
  To: buildroot

Bump U-Boot to 2019.07 and kernel to version 5.1.16.

Also
 - adjust the U-Boot binary name after DM conversion.
 - add missing notes about DFU

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
---
Logs:
U-Boot 2019.07 (Jul 08 2019 - 21:48:39 +0200)

CPU:   Freescale i.MX7S rev1.2 800 MHz (running at 792 MHz)
CPU:   Extended Commercial temperature grade (-20C to 105C) at 41C
Reset cause: POR
Model: Warp i.MX7 Board
Board: WARP7 in secure mode OPTEE DRAM 0x9d000000-0xa0000000
DRAM:  464 MiB
PMIC: PFUZE3000 DEV_ID=0x30 REV_ID=0x11
MMC:   FSL_SDHC: 1, FSL_SDHC: 0

=> run bootcmd 
switch to partitions #0, OK
mmc0(part 0) is current device
switch to partitions #0, OK
mmc0(part 0) is current device
8188560 bytes read in 118 ms (66.2 MiB/s)
Booting from mmc ...
...
Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 5.1.16 (pjtexier at menoah)

 board/warp7/readme.txt  | 22 ++++++++++++++++++----
 configs/warp7_defconfig | 10 +++++-----
 2 files changed, 23 insertions(+), 9 deletions(-)

diff --git a/board/warp7/readme.txt b/board/warp7/readme.txt
index 47458e9..aff7a60 100644
--- a/board/warp7/readme.txt
+++ b/board/warp7/readme.txt
@@ -20,7 +20,7 @@ You will find in output/images/ the following files:
   - rootfs.ext4
   - rootfs.tar
   - sdcard.img
-  - u-boot.imx
+  - u-boot-dtb.imx
   - zImage
 
 Flash the eMMC image
@@ -61,11 +61,11 @@ Connect a USB to serial adapter between the host PC and warp7 serial
 USB port, and also a USB cable between the OTG warp7 port and the host
 PC.
 
-Copy u-boot.imx to the imx_usb_loader folder.
+Copy u-boot-dtb.imx to the imx_usb_loader folder.
 
-Load u-boot.imx via USB:
+Load u-boot-dtb.imx via USB:
 
-$ sudo ./imx_usb u-boot.imx
+$ sudo ./imx_usb u-boot-dtb.imx
 
 Then U-Boot should start and its messages will appear in the console program.
 
@@ -75,6 +75,20 @@ Use the default environment variables:
 
 => env default -f -a
 => saveenv
+
+Run the DFU command:
+=> dfu 0 mmc 0
+
+Transfer u-boot-dtb.imx that will be flashed into the eMMC:
+
+$ sudo dfu-util -D u-boot-dtb.imx -a boot
+
+Then on the U-Boot prompt the following message should be seen after a
+successful upgrade:
+
+#DOWNLOAD ... OK
+Ctrl+C to exit ...
+
 => ums 0 mmc 0
 
 sudo dd if=output/images/sdcard.img of=/dev/<your-emmc-device>
diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
index 8acd730..9b10085 100644
--- a/configs/warp7_defconfig
+++ b/configs/warp7_defconfig
@@ -3,8 +3,8 @@ BR2_arm=y
 BR2_cortex_a7=y
 BR2_ARM_FPU_NEON_VFPV4=y
 
-# Linux headers same as kernel, a 5.0 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_0=y
+# Linux headers same as kernel, a 5.1 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_1=y
 
 # system
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
@@ -15,7 +15,7 @@ BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.0.9"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.1.16"
 BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp"
@@ -25,8 +25,8 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="warp7"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.01"
-BR2_TARGET_UBOOT_FORMAT_IMX=y
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2019.07"
+BR2_TARGET_UBOOT_FORMAT_DTB_IMX=y
 
 # wifi firmware for brcm43430
 BR2_PACKAGE_LINUX_FIRMWARE=y
-- 
2.7.4

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
  2018-04-23 20:32 Fabio Estevam
@ 2018-04-25 19:27 ` Thomas Petazzoni
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Petazzoni @ 2018-04-25 19:27 UTC (permalink / raw)
  To: buildroot

Hello,

On Mon, 23 Apr 2018 17:32:44 -0300, Fabio Estevam wrote:
> Bump kernel to version 4.16.3 and U-Boot to 2018.03.
> 
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> ---
>  configs/warp7_defconfig | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions
@ 2018-04-23 20:32 Fabio Estevam
  2018-04-25 19:27 ` Thomas Petazzoni
  0 siblings, 1 reply; 13+ messages in thread
From: Fabio Estevam @ 2018-04-23 20:32 UTC (permalink / raw)
  To: buildroot

Bump kernel to version 4.16.3 and U-Boot to 2018.03.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/warp7_defconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
index e1744d8..95e538f 100644
--- a/configs/warp7_defconfig
+++ b/configs/warp7_defconfig
@@ -3,8 +3,8 @@ BR2_arm=y
 BR2_cortex_a7=y
 BR2_ARM_FPU_NEON_VFPV4=y
 
-# Linux headers same as kernel, a 4.15 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_15=y
+# Linux headers same as kernel, a 4.16 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_16=y
 
 # system
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
@@ -15,7 +15,7 @@ BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay"
 # Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.15.15"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.16.3"
 BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp"
@@ -25,7 +25,7 @@ BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BOARDNAME="warp7"
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2017.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2018.03"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
 
 # wifi firmware for brcm43430
-- 
2.7.4

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

end of thread, other threads:[~2021-11-05 16:11 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-07 21:46 [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Pierre-Jean Texier
2019-10-07 21:46 ` [Buildroot] [PATCH] configs/warp7: Bump kernel and U-Boot versions Pierre-Jean Texier
2019-10-08  7:15   ` Thomas Petazzoni
2019-10-07 22:05 ` [Buildroot] [PATCH] boot/uboot: bump to version 2019.10 Fabio Estevam
2019-10-08 11:18   ` Pierre-Jean Texier
2019-10-08  7:13 ` Thomas Petazzoni
  -- strict thread matches above, loose matches on Subject: below --
2021-10-26 17:22 [Buildroot] [PATCH] configs/warp7: bump Kernel and U-Boot versions Fabio Estevam
2021-11-05 16:11 ` Peter Korsgaard
2019-07-08 20:11 [Buildroot] [PATCH] configs/warp7: Bump kernel " Pierre-Jean Texier
2019-07-08 21:52 ` Joris Offouga
2019-07-14  9:59 ` Peter Korsgaard
2018-04-23 20:32 Fabio Estevam
2018-04-25 19:27 ` Thomas Petazzoni

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.