All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/wandboard: bump kernel and U-Boot versions
@ 2021-05-09 10:01 Vincent Stehlé
  2021-05-09 12:03 ` Fabio Estevam
  2021-05-10  6:41 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Vincent Stehlé @ 2021-05-09 10:01 UTC (permalink / raw)
  To: buildroot

- Bump kernel to version 5.12.2.
- Bump U-Boot to version 2021.04.

While at it, switch U-Boot to the Kconfig build system and add some more
comments to the defconfig.

Signed-off-by: Vincent Stehl? <vincent.stehle@laposte.net>
Cc: Fabio Estevam <festevam@gmail.com>
---


Hi,

UART, SD card(s), USB, ethernet and HDMI work for me. More testers for e.g.
SATA and audio are welcome!

Fabio, if you do not like the additional comments in the defconfig please let
me know and I can re-submit without those.

Best regards,

Vincent.


 configs/wandboard_defconfig | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/configs/wandboard_defconfig b/configs/wandboard_defconfig
index 8f9e30a1a9..7915248cf1 100644
--- a/configs/wandboard_defconfig
+++ b/configs/wandboard_defconfig
@@ -1,32 +1,46 @@
+# Architecture
 BR2_arm=y
 BR2_cortex_a9=y
 BR2_ARM_ENABLE_NEON=y
 BR2_ARM_ENABLE_VFP=y
 BR2_ARM_FPU_VFPV3=y
-# Linux headers same as kernel, a 5.10 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10=y
+
+# Linux headers same as kernel, a 5.12 series
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_12=y
+
+# System
 BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
+
+# Image
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/wandboard/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
 BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/wandboard/genimage.cfg"
+
+# Filesystem
 BR2_TARGET_ROOTFS_EXT2=y
 BR2_TARGET_ROOTFS_EXT2_4=y
+
+# Bootloader
 BR2_TARGET_UBOOT=y
-BR2_TARGET_UBOOT_BOARDNAME="wandboard"
+BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.01"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.04"
+BR2_TARGET_UBOOT_BOARD_DEFCONFIG="wandboard"
 BR2_TARGET_UBOOT_FORMAT_IMG=y
 BR2_TARGET_UBOOT_SPL=y
 BR2_TARGET_UBOOT_SPL_NAME="SPL"
+
+# Kernel
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.10.9"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.12.2"
 BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
 BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-wandboard imx6dl-wandboard imx6q-wandboard-revb1 imx6dl-wandboard-revb1 imx6q-wandboard-revd1 imx6dl-wandboard-revd1 imx6qp-wandboard-revd1"
 BR2_LINUX_KERNEL_INSTALL_TARGET=y
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
-# required tools to create the SD card image
+
+# Required tools to create the SD image
 BR2_PACKAGE_HOST_DOSFSTOOLS=y
 BR2_PACKAGE_HOST_GENIMAGE=y
 BR2_PACKAGE_HOST_MTOOLS=y
-- 
2.30.2

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

* [Buildroot] [PATCH] configs/wandboard: bump kernel and U-Boot versions
  2021-05-09 10:01 [Buildroot] [PATCH] configs/wandboard: bump kernel and U-Boot versions Vincent Stehlé
@ 2021-05-09 12:03 ` Fabio Estevam
  2021-05-10  6:41 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2021-05-09 12:03 UTC (permalink / raw)
  To: buildroot

Hi Vincent,

On Sun, May 9, 2021 at 7:01 AM Vincent Stehl?
<vincent.stehle@laposte.net> wrote:
>
> - Bump kernel to version 5.12.2.
> - Bump U-Boot to version 2021.04.
>
> While at it, switch U-Boot to the Kconfig build system and add some more
> comments to the defconfig.
>
> Signed-off-by: Vincent Stehl? <vincent.stehle@laposte.net>
> Cc: Fabio Estevam <festevam@gmail.com>

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

Thanks

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

* [Buildroot] [PATCH] configs/wandboard: bump kernel and U-Boot versions
  2021-05-09 10:01 [Buildroot] [PATCH] configs/wandboard: bump kernel and U-Boot versions Vincent Stehlé
  2021-05-09 12:03 ` Fabio Estevam
@ 2021-05-10  6:41 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-05-10  6:41 UTC (permalink / raw)
  To: buildroot

>>>>> "Vincent" == Vincent Stehl? via buildroot <buildroot@busybox.net> writes:

 > - Bump kernel to version 5.12.2.
 > - Bump U-Boot to version 2021.04.

 > While at it, switch U-Boot to the Kconfig build system and add some more
 > comments to the defconfig.

 > Signed-off-by: Vincent Stehl? <vincent.stehle@laposte.net>
 > Cc: Fabio Estevam <festevam@gmail.com>
 > ---


 > Hi,

 > UART, SD card(s), USB, ethernet and HDMI work for me. More testers for e.g.
 > SATA and audio are welcome!

 > Fabio, if you do not like the additional comments in the defconfig please let
 > me know and I can re-submit without those.

 > Best regards,

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2021-05-10  6:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-09 10:01 [Buildroot] [PATCH] configs/wandboard: bump kernel and U-Boot versions Vincent Stehlé
2021-05-09 12:03 ` Fabio Estevam
2021-05-10  6:41 ` Peter Korsgaard

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.