diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2016-09-19 16:45:02 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-09-20 14:33:52 +0200 |
commit | c4f453fd7e84617bd2082ebff0cdb526b6afd952 (patch) | |
tree | 85c1f99491cfe7bd9b5c500da29a0c64c5320ce6 /configs | |
parent | d8a19c5e4969a5d6485d3704cc72310989109150 (diff) |
configs/warp7: Add Wifi support
Warp7 has a BRCM43430 Wifi chipset. Add support for it.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/warp7_defconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configs/warp7_defconfig b/configs/warp7_defconfig index 95508d633..967df8ef5 100644 --- a/configs/warp7_defconfig +++ b/configs/warp7_defconfig @@ -8,12 +8,16 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_1=y # system BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0" +# rootfs overlay +BR2_ROOTFS_OVERLAY="board/warp7/rootfs_overlay" + # Kernel BR2_LINUX_KERNEL=y BR2_LINUX_KERNEL_CUSTOM_GIT=y BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com/Freescale/linux-fslc.git" BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="efaf36531fe7b1fc15a48033e5972825c91f9fc6" BR2_LINUX_KERNEL_DEFCONFIG="imx_v7" +BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/warp7/linux.fragment" BR2_LINUX_KERNEL_DTS_SUPPORT=y BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7s-warp" @@ -24,6 +28,15 @@ BR2_TARGET_UBOOT_CUSTOM_VERSION=y BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.09" BR2_TARGET_UBOOT_FORMAT_IMX=y +# wifi firmware for brcm43430 +BR2_PACKAGE_LINUX_FIRMWARE=y +BR2_PACKAGE_LINUX_FIRMWARE_BRCM_BCM43XXX=y + +# wireless packages +BR2_PACKAGE_WIRELESS_TOOLS=y +BR2_PACKAGE_WPA_SUPPLICANT=y +BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y + # Filesystem BR2_ROOTFS_POST_IMAGE_SCRIPT="board/warp7/post-image.sh" BR2_TARGET_ROOTFS_EXT2=y |