* [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions
@ 2025-04-22 13:10 Fabio Estevam
2025-04-22 13:10 ` [Buildroot] [PATCH 2/2] configs/warp7: Improve Wifi instructions Fabio Estevam
2025-04-22 18:45 ` [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions Julien Olivain
0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2025-04-22 13:10 UTC (permalink / raw)
To: buildroot; +Cc: Fabio Estevam
Bump U-Boot to 2025.04 and kernel to version 6.12.24.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
configs/warp7_defconfig | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig
index 9b0e01d38a..68a87789f9 100644
--- a/configs/warp7_defconfig
+++ b/configs/warp7_defconfig
@@ -1,14 +1,14 @@
BR2_arm=y
BR2_cortex_a7=y
BR2_ARM_FPU_NEON_VFPV4=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_12=y
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/post-image.sh"
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.6"
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.12.24"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v6_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="nxp/imx/imx7s-warp"
@@ -23,7 +23,7 @@ BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="warp7"
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2023.10"
+BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2025.04"
BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
BR2_TARGET_UBOOT_FORMAT_DTB_IMX=y
BR2_PACKAGE_HOST_DOSFSTOOLS=y
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/2] configs/warp7: Improve Wifi instructions
2025-04-22 13:10 [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions Fabio Estevam
@ 2025-04-22 13:10 ` Fabio Estevam
2025-05-02 11:01 ` Arnout Vandecappelle via buildroot
2025-04-22 18:45 ` [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions Julien Olivain
1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2025-04-22 13:10 UTC (permalink / raw)
To: buildroot; +Cc: Fabio Estevam
The "modprobe brcmfmac" command is not necessary because this driver
is automatically loaded.
Remove the "iwconfig" line as it is considered deprecated:
warning: `iwconfig' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Remove the "-Dwext" parameter as it is not supported by the default kernel
configuration:
wlan0: Unsupported driver 'wext'
Tested Wifi by following the updated commands.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
board/warp7/readme.txt | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/board/warp7/readme.txt b/board/warp7/readme.txt
index aff7a601e5..39d845bd32 100644
--- a/board/warp7/readme.txt
+++ b/board/warp7/readme.txt
@@ -107,11 +107,9 @@ To boot your newly created system:
Using Wifi
==========
-# modprobe brcmfmac
-# iwconfig wlan0 essid ACCESSPOINTNAME
# wpa_passphrase ACCESSPOINTNAME > /etc/wpa.conf
(enter the wifi password and press enter)
-# wpa_supplicant -Dwext -iwlan0 -c /etc/wpa.conf &
+# wpa_supplicant -iwlan0 -c /etc/wpa.conf &
# udhcpc -i wlan0
# ping buildroot.org
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions
2025-04-22 13:10 [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions Fabio Estevam
2025-04-22 13:10 ` [Buildroot] [PATCH 2/2] configs/warp7: Improve Wifi instructions Fabio Estevam
@ 2025-04-22 18:45 ` Julien Olivain
1 sibling, 0 replies; 4+ messages in thread
From: Julien Olivain @ 2025-04-22 18:45 UTC (permalink / raw)
To: Fabio Estevam; +Cc: buildroot
Hi Fabio,
On 22/04/2025 15:10, Fabio Estevam wrote:
> Bump U-Boot to 2025.04 and kernel to version 6.12.24.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
Series applied to master, thanks.
For info, I added a missing BR2_TARGET_UBOOT_NEEDS_GNUTLS=y
(build was failing in the docker image).
As followup maintenance patches, could you also add
custom hashes (i.e. add BR2_DOWNLOAD_FORCE_CHECK_HASHES=y and
remove the .checkpackageignore entry). See for example commit [1].
Also, there was a decision last year to move defconfigs toward using
Bootlin external toolchains. See [2]. To make sure this compiler
change will not prevent the board to boot, a test with an actual
board is preferable. Doing so while updating defconfig kernel/uboot
is a good time to do so. See for example commit [3].
Best regards,
Julien.
[1]
https://gitlab.com/buildroot.org/buildroot/-/commit/b71d7eae59f82683e547b60f06538c4a2af8c5d3
[2]
https://elinux.org/Buildroot:DeveloperDaysELCE2024#Rules_for_defconfigs
[3]
https://gitlab.com/buildroot.org/buildroot/-/commit/310ab7d53393288aba5c574c49a6cae1bf1e1a1d
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] [PATCH 2/2] configs/warp7: Improve Wifi instructions
2025-04-22 13:10 ` [Buildroot] [PATCH 2/2] configs/warp7: Improve Wifi instructions Fabio Estevam
@ 2025-05-02 11:01 ` Arnout Vandecappelle via buildroot
0 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-05-02 11:01 UTC (permalink / raw)
To: Fabio Estevam, buildroot
On 22/04/2025 15:10, Fabio Estevam wrote:
> The "modprobe brcmfmac" command is not necessary because this driver
> is automatically loaded.
>
> Remove the "iwconfig" line as it is considered deprecated:
>
> warning: `iwconfig' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
>
> Remove the "-Dwext" parameter as it is not supported by the default kernel
> configuration:
>
> wlan0: Unsupported driver 'wext'
>
> Tested Wifi by following the updated commands.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
Applied to 2025.02.x, thanks.
Regards,
Arnout
> ---
> board/warp7/readme.txt | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/board/warp7/readme.txt b/board/warp7/readme.txt
> index aff7a601e5..39d845bd32 100644
> --- a/board/warp7/readme.txt
> +++ b/board/warp7/readme.txt
> @@ -107,11 +107,9 @@ To boot your newly created system:
> Using Wifi
> ==========
>
> -# modprobe brcmfmac
> -# iwconfig wlan0 essid ACCESSPOINTNAME
> # wpa_passphrase ACCESSPOINTNAME > /etc/wpa.conf
> (enter the wifi password and press enter)
> -# wpa_supplicant -Dwext -iwlan0 -c /etc/wpa.conf &
> +# wpa_supplicant -iwlan0 -c /etc/wpa.conf &
> # udhcpc -i wlan0
> # ping buildroot.org
>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-02 11:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-22 13:10 [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions Fabio Estevam
2025-04-22 13:10 ` [Buildroot] [PATCH 2/2] configs/warp7: Improve Wifi instructions Fabio Estevam
2025-05-02 11:01 ` Arnout Vandecappelle via buildroot
2025-04-22 18:45 ` [Buildroot] [PATCH 1/2] configs/warp7: Bump U-Boot and kernel versions Julien Olivain
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.