Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/3] Update Boundary Devices boards support
@ 2015-10-19 15:02 Gary Bisson
  2015-10-19 15:02 ` [Buildroot] [PATCH 1/3] board/boundarydevices: update 6x_bootscript to use zImage Gary Bisson
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Gary Bisson @ 2015-10-19 15:02 UTC (permalink / raw)
  To: buildroot

Hi all,

This series is mainly about switching to zImage booting as well as updating
the U-Boot and Kernel revisions (still based on the 3.14.28-1.0.0-GA release).

Details about the U-Boot/Kernel revisions update are described in the patch
commit log.

Regards,
Gary

Gary Bisson (3):
  board/boundarydevices: update 6x_bootscript to use zImage
  nitrogen6*_defconfig: switch to zImage
  nitrogen6*_defconfig: bump u-boot and kernel revisions

 board/boundarydevices/nitrogen6x/6x_bootscript.txt | 8 ++++----
 configs/nitrogen6sx_defconfig                      | 8 ++++----
 configs/nitrogen6x_defconfig                       | 8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

-- 
2.6.1

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

* [Buildroot] [PATCH 1/3] board/boundarydevices: update 6x_bootscript to use zImage
  2015-10-19 15:02 [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Gary Bisson
@ 2015-10-19 15:02 ` Gary Bisson
  2015-10-19 15:02 ` [Buildroot] [PATCH 2/3] nitrogen6*_defconfig: switch to zImage Gary Bisson
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2015-10-19 15:02 UTC (permalink / raw)
  To: buildroot

As suggested by Thomas:
http://lists.busybox.net/pipermail/buildroot/2015-September/139884.html

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
 board/boundarydevices/nitrogen6x/6x_bootscript.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/board/boundarydevices/nitrogen6x/6x_bootscript.txt b/board/boundarydevices/nitrogen6x/6x_bootscript.txt
index 694a9b6..4a9be0b 100644
--- a/board/boundarydevices/nitrogen6x/6x_bootscript.txt
+++ b/board/boundarydevices/nitrogen6x/6x_bootscript.txt
@@ -1,7 +1,7 @@
 setenv bootargs ''
 
 a_script=0x10800000
-a_uImage=0x10800000
+a_zImage=0x10800000
 a_fdt=0x13000000
 
 setenv initrd_high 0xffffffff
@@ -20,7 +20,7 @@ if itest.s "x" == "x${dtbname}" ; then
 			dtbname=imx6sx-${board}-m4.dtb;
 		fi
 		a_script=0x80800000
-		a_uImage=0x80800000
+		a_zImage=0x80800000
 		a_fdt=0x83000000
 	else
 		dtbname=imx6q-${board}.dtb;
@@ -125,7 +125,7 @@ if itest.s "x" != "x${show_env}" ; then
 	printenv
 fi
 
-if load ${dtype} ${disk}:${bootpart} ${a_uImage} ${bootdir}/uImage ; then
-	bootm ${a_uImage} - ${a_fdt}
+if load ${dtype} ${disk}:${bootpart} ${a_zImage} ${bootdir}/zImage ; then
+	bootz ${a_zImage} - ${a_fdt}
 fi
 echo "Error loading kernel image"
-- 
2.6.1

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

* [Buildroot] [PATCH 2/3] nitrogen6*_defconfig: switch to zImage
  2015-10-19 15:02 [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Gary Bisson
  2015-10-19 15:02 ` [Buildroot] [PATCH 1/3] board/boundarydevices: update 6x_bootscript to use zImage Gary Bisson
@ 2015-10-19 15:02 ` Gary Bisson
  2015-10-19 15:02 ` [Buildroot] [PATCH 3/3] nitrogen6*_defconfig: bump u-boot and kernel revisions Gary Bisson
  2015-10-19 20:32 ` [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2015-10-19 15:02 UTC (permalink / raw)
  To: buildroot

As now using zImage/bootz in the 6x_bootscript.

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
 configs/nitrogen6sx_defconfig | 2 +-
 configs/nitrogen6x_defconfig  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configs/nitrogen6sx_defconfig b/configs/nitrogen6sx_defconfig
index 70006d5..3cdf41b 100644
--- a/configs/nitrogen6sx_defconfig
+++ b/configs/nitrogen6sx_defconfig
@@ -31,7 +31,7 @@ BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
 # Last version of branch boundary-imx_3.14.28_1.0.0_ga
 BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/linux-imx6/tarball/3417c66/linux-imx6-3417c66.tar.gz"
 BR2_LINUX_KERNEL_DEFCONFIG="nitrogen6x"
+BR2_LINUX_KERNEL_ZIMAGE=y
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
-BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x80008000"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6sx-nitrogen6sx"
diff --git a/configs/nitrogen6x_defconfig b/configs/nitrogen6x_defconfig
index 51c5161..cffbc25 100644
--- a/configs/nitrogen6x_defconfig
+++ b/configs/nitrogen6x_defconfig
@@ -31,7 +31,7 @@ BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
 # Last version of branch boundary-imx_3.14.28_1.0.0_ga
 BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/linux-imx6/tarball/3417c66/linux-imx6-3417c66.tar.gz"
 BR2_LINUX_KERNEL_DEFCONFIG="nitrogen6x"
+BR2_LINUX_KERNEL_ZIMAGE=y
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
-BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x10008000"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6dl-nit6xlite imx6dl-nitrogen6_vm imx6dl-nitrogen6x imx6q-nitrogen6x imx6q-nitrogen6_max imx6q-sabrelite"
-- 
2.6.1

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

* [Buildroot] [PATCH 3/3] nitrogen6*_defconfig: bump u-boot and kernel revisions
  2015-10-19 15:02 [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Gary Bisson
  2015-10-19 15:02 ` [Buildroot] [PATCH 1/3] board/boundarydevices: update 6x_bootscript to use zImage Gary Bisson
  2015-10-19 15:02 ` [Buildroot] [PATCH 2/3] nitrogen6*_defconfig: switch to zImage Gary Bisson
@ 2015-10-19 15:02 ` Gary Bisson
  2015-10-19 20:32 ` [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2015-10-19 15:02 UTC (permalink / raw)
  To: buildroot

This update brings several improvements such as:
- switch to a generic Boundary defconfig
  - same across all the Boundary Devices platforms
- support of HDMI to MIPI daugther board
https://boundarydevices.com/product/bd_hdmi_mipi/
- enhanced display support
  - LCD ASIT500MA6F5D
  - LCD A030JN01
  - HDMI 480p

For a complete list of changes:
https://github.com/boundarydevices/linux-imx6/commits/d7a412b
https://github.com/boundarydevices/u-boot-imx6/commits/a4070a8

Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
---
 configs/nitrogen6sx_defconfig | 6 +++---
 configs/nitrogen6x_defconfig  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/configs/nitrogen6sx_defconfig b/configs/nitrogen6sx_defconfig
index 3cdf41b..3670798 100644
--- a/configs/nitrogen6sx_defconfig
+++ b/configs/nitrogen6sx_defconfig
@@ -23,14 +23,14 @@ BR2_TARGET_UBOOT_BOARDNAME="nitrogen6sx"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
 # Last version of branch boundary-v2015.07
-BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="http://github.com/boundarydevices/u-boot-imx6/tarball/5115a9e/u-boot-5115a9e.tar.gz"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="http://github.com/boundarydevices/u-boot-imx6/tarball/a4070a8/u-boot-a4070a8.tar.gz"
 
 # kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
 # Last version of branch boundary-imx_3.14.28_1.0.0_ga
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/linux-imx6/tarball/3417c66/linux-imx6-3417c66.tar.gz"
-BR2_LINUX_KERNEL_DEFCONFIG="nitrogen6x"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/linux-imx6/tarball/d7a412b/linux-imx6-d7a412b.tar.gz"
+BR2_LINUX_KERNEL_DEFCONFIG="boundary"
 BR2_LINUX_KERNEL_ZIMAGE=y
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
diff --git a/configs/nitrogen6x_defconfig b/configs/nitrogen6x_defconfig
index cffbc25..979bf09 100644
--- a/configs/nitrogen6x_defconfig
+++ b/configs/nitrogen6x_defconfig
@@ -23,14 +23,14 @@ BR2_TARGET_UBOOT_BOARDNAME="nitrogen6q"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
 # Last version of branch boundary-v2015.07
-BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="http://github.com/boundarydevices/u-boot-imx6/tarball/5115a9e/u-boot-5115a9e.tar.gz"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="http://github.com/boundarydevices/u-boot-imx6/tarball/a4070a8/u-boot-a4070a8.tar.gz"
 
 # kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
 # Last version of branch boundary-imx_3.14.28_1.0.0_ga
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/linux-imx6/tarball/3417c66/linux-imx6-3417c66.tar.gz"
-BR2_LINUX_KERNEL_DEFCONFIG="nitrogen6x"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/boundarydevices/linux-imx6/tarball/d7a412b/linux-imx6-d7a412b.tar.gz"
+BR2_LINUX_KERNEL_DEFCONFIG="boundary"
 BR2_LINUX_KERNEL_ZIMAGE=y
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
-- 
2.6.1

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

* [Buildroot] [PATCH 0/3] Update Boundary Devices boards support
  2015-10-19 15:02 [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Gary Bisson
                   ` (2 preceding siblings ...)
  2015-10-19 15:02 ` [Buildroot] [PATCH 3/3] nitrogen6*_defconfig: bump u-boot and kernel revisions Gary Bisson
@ 2015-10-19 20:32 ` Thomas Petazzoni
  3 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2015-10-19 20:32 UTC (permalink / raw)
  To: buildroot

Dear Gary Bisson,

On Mon, 19 Oct 2015 17:02:31 +0200, Gary Bisson wrote:

> Gary Bisson (3):
>   board/boundarydevices: update 6x_bootscript to use zImage
>   nitrogen6*_defconfig: switch to zImage
>   nitrogen6*_defconfig: bump u-boot and kernel revisions

All three patches applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-10-19 20:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-19 15:02 [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Gary Bisson
2015-10-19 15:02 ` [Buildroot] [PATCH 1/3] board/boundarydevices: update 6x_bootscript to use zImage Gary Bisson
2015-10-19 15:02 ` [Buildroot] [PATCH 2/3] nitrogen6*_defconfig: switch to zImage Gary Bisson
2015-10-19 15:02 ` [Buildroot] [PATCH 3/3] nitrogen6*_defconfig: bump u-boot and kernel revisions Gary Bisson
2015-10-19 20:32 ` [Buildroot] [PATCH 0/3] Update Boundary Devices boards support Thomas Petazzoni

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