Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11
@ 2016-12-29 12:43 Fabio Estevam
  2016-12-29 12:43 ` [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Fabio Estevam @ 2016-12-29 12:43 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx6ulpico_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/imx6ulpico_defconfig b/configs/imx6ulpico_defconfig
index 662b9ab..60de7d7 100644
--- a/configs/imx6ulpico_defconfig
+++ b/configs/imx6ulpico_defconfig
@@ -33,7 +33,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.09.01"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.11"
 BR2_TARGET_UBOOT_FORMAT_IMX=y
 
 # required tools to create the eMMC image
-- 
2.7.4

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

* [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point
  2016-12-29 12:43 [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Fabio Estevam
@ 2016-12-29 12:43 ` Fabio Estevam
  2016-12-30 21:16   ` Peter Korsgaard
  2016-12-29 12:43 ` [Buildroot] [PATCH 3/3] configs/imx6ulpico: Select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV Fabio Estevam
  2016-12-30 21:16 ` [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2016-12-29 12:43 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
 configs/imx6ulpico_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/imx6ulpico_defconfig b/configs/imx6ulpico_defconfig
index 60de7d7..f7f7f20 100644
--- a/configs/imx6ulpico_defconfig
+++ b/configs/imx6ulpico_defconfig
@@ -1,6 +1,7 @@
 # architecture
 BR2_arm=y
 BR2_cortex_a7=y
+BR2_ARM_FPU_NEON_VFPV4=y
 
 # Linux headers same as kernel, a 4.9 series
 BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9=y
-- 
2.7.4

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

* [Buildroot] [PATCH 3/3] configs/imx6ulpico: Select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV
  2016-12-29 12:43 [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Fabio Estevam
  2016-12-29 12:43 ` [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point Fabio Estevam
@ 2016-12-29 12:43 ` Fabio Estevam
  2016-12-30 21:16   ` Peter Korsgaard
  2016-12-30 21:16 ` [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Peter Korsgaard
  2 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2016-12-29 12:43 UTC (permalink / raw)
  To: buildroot

BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV allows the Broadcom wireless driver
to be automatically loaded on boot.

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

diff --git a/configs/imx6ulpico_defconfig b/configs/imx6ulpico_defconfig
index f7f7f20..96ac038 100644
--- a/configs/imx6ulpico_defconfig
+++ b/configs/imx6ulpico_defconfig
@@ -25,6 +25,9 @@ BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6ul-pico-hobbit"
 BR2_PACKAGE_LINUX_FIRMWARE=y
 BR2_PACKAGE_LINUX_FIRMWARE_BRCM_BCM43XX=y
 
+# For automatic firmware loading
+BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
+
 # wireless packages
 BR2_PACKAGE_WIRELESS_TOOLS=y
 BR2_PACKAGE_WPA_SUPPLICANT=y
-- 
2.7.4

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

* [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11
  2016-12-29 12:43 [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Fabio Estevam
  2016-12-29 12:43 ` [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point Fabio Estevam
  2016-12-29 12:43 ` [Buildroot] [PATCH 3/3] configs/imx6ulpico: Select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV Fabio Estevam
@ 2016-12-30 21:16 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2016-12-30 21:16 UTC (permalink / raw)
  To: buildroot

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

 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point
  2016-12-29 12:43 ` [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point Fabio Estevam
@ 2016-12-30 21:16   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2016-12-30 21:16 UTC (permalink / raw)
  To: buildroot

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

 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 3/3] configs/imx6ulpico: Select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV
  2016-12-29 12:43 ` [Buildroot] [PATCH 3/3] configs/imx6ulpico: Select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV Fabio Estevam
@ 2016-12-30 21:16   ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2016-12-30 21:16 UTC (permalink / raw)
  To: buildroot

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

 > BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV allows the Broadcom wireless driver
 > to be automatically loaded on boot.

 > Signed-off-by: Fabio Estevam <festevam@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-12-30 21:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-29 12:43 [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Fabio Estevam
2016-12-29 12:43 ` [Buildroot] [PATCH 2/3] configs/imx6ulpico: Select floating point Fabio Estevam
2016-12-30 21:16   ` Peter Korsgaard
2016-12-29 12:43 ` [Buildroot] [PATCH 3/3] configs/imx6ulpico: Select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV Fabio Estevam
2016-12-30 21:16   ` Peter Korsgaard
2016-12-30 21:16 ` [Buildroot] [PATCH 1/3] configs/imx6ulpico: Bump to U-Boot 2016.11 Peter Korsgaard

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