* [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09
@ 2016-09-12 20:50 Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 2/3] wandboard: " Fabio Estevam
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Fabio Estevam @ 2016-09-12 20:50 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
configs/imx6ulpico_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/imx6ulpico_defconfig b/configs/imx6ulpico_defconfig
index 02507c9..f984bf4 100644
--- a/configs/imx6ulpico_defconfig
+++ b/configs/imx6ulpico_defconfig
@@ -36,7 +36,7 @@ BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="pico-imx6ul"
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.09"
BR2_TARGET_UBOOT_FORMAT_IMX=y
# required tools to create the eMMC image
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* [Buildroot] [PATCH 2/3] wandboard: Bump to U-Boot 2016.09
2016-09-12 20:50 [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Fabio Estevam
@ 2016-09-12 20:50 ` Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 3/3] warp7: Use mainline U-Boot Fabio Estevam
2016-09-12 20:56 ` [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2016-09-12 20:50 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
configs/wandboard_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig
index 67041a6..18d30d9 100644
--- a/configs/wandboard_defconfig
+++ b/configs/wandboard_defconfig
@@ -10,7 +10,7 @@ BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="wandboard"
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.07"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.09"
BR2_TARGET_UBOOT_FORMAT_IMG=y
BR2_TARGET_UBOOT_SPL=y
BR2_TARGET_UBOOT_SPL_NAME="SPL"
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 3/3] warp7: Use mainline U-Boot
2016-09-12 20:50 [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 2/3] wandboard: " Fabio Estevam
@ 2016-09-12 20:50 ` Fabio Estevam
2016-09-12 20:56 ` [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2016-09-12 20:50 UTC (permalink / raw)
To: buildroot
From: Fabio Estevam <fabio.estevam@nxp.com>
warp7 is well supported in mainline U-Boot 2016.09, so switch
to this version.
As the current supported kernel is based on a 4.1 kernel from NXP,
use the "warp7_secure" U-Boot target as NXP kernel needs to boot
in secure mode.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
configs/warp7_defconfig | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
index 0da34c3..95508d6 100644
--- a/configs/warp7_defconfig
+++ b/configs/warp7_defconfig
@@ -19,10 +19,9 @@ BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp"
# U-Boot
BR2_TARGET_UBOOT=y
-BR2_TARGET_UBOOT_BOARDNAME="warp7"
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://github.com/Freescale/u-boot-fslc.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="7a8868eb526b7c1d5dc274bc666bfaef9585ba7c"
+BR2_TARGET_UBOOT_BOARDNAME="warp7_secure"
+BR2_TARGET_UBOOT_CUSTOM_VERSION=y
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.09"
BR2_TARGET_UBOOT_FORMAT_IMX=y
# Filesystem
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09
2016-09-12 20:50 [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 2/3] wandboard: " Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 3/3] warp7: Use mainline U-Boot Fabio Estevam
@ 2016-09-12 20:56 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2016-09-12 20:56 UTC (permalink / raw)
To: buildroot
Hello,
On Mon, 12 Sep 2016 17:50:46 -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@nxp.com>
>
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
> configs/imx6ulpico_defconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
All three patches applied to master. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-09-12 20:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-12 20:50 [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 2/3] wandboard: " Fabio Estevam
2016-09-12 20:50 ` [Buildroot] [PATCH 3/3] warp7: Use mainline U-Boot Fabio Estevam
2016-09-12 20:56 ` [Buildroot] [PATCH 1/3] imx6ulpico: Bump to U-Boot 2016.09 Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox