0ad1067db5
The board support package includes the following components: - U-Boot 2016.11 - Linux 4.9.3 - packages: - alsa-utils for basic audio usage of the on-board headphone jack and microphone - iw and wpa_supplicant for managing the wireless interface Two Linux patches are necessary to enable audio and wifi support. Both patches are fetched from the Linux next branch and are probably mainlined in Linux 4.11. A Linux configuration fragment enables the wireless device driver, which is not enabled by default in the mainline defconfig of the board. The wifi chip needs a NVRAM configuration file which is provided in the rootfs overlay. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> [Thomas: remove e2fsprogs from the target packages, add entry in DEVELOPERS file, remove C++ support.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
76 lines
2.0 KiB
Plaintext
76 lines
2.0 KiB
Plaintext
# Architecture
|
|
BR2_arm=y
|
|
BR2_cortex_a7=y
|
|
BR2_ARM_EABIHF=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
|
|
|
|
# Toolchain
|
|
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
|
|
|
|
# Build options
|
|
BR2_GLOBAL_PATCH_DIR="board/lemaker/bananapro/patches"
|
|
|
|
# System configuration
|
|
BR2_TARGET_GENERIC_HOSTNAME="bananapro"
|
|
BR2_TARGET_GENERIC_ISSUE="Welcome to Banana Pro!"
|
|
BR2_TARGET_GENERIC_GETTY=y
|
|
BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
|
|
BR2_ROOTFS_OVERLAY="board/lemaker/bananapro/rootfs_overlay"
|
|
BR2_ROOTFS_POST_BUILD_SCRIPT="board/lemaker/bananapro/post-build.sh"
|
|
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/lemaker/bananapro/post-image.sh"
|
|
|
|
# Kernel
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="4.9.3"
|
|
BR2_LINUX_KERNEL_USE_DEFCONFIG=y
|
|
BR2_LINUX_KERNEL_DEFCONFIG="sunxi"
|
|
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/lemaker/bananapro/linux-wifi.fragment"
|
|
BR2_LINUX_KERNEL_DTS_SUPPORT=y
|
|
BR2_LINUX_KERNEL_INTREE_DTS_NAME="sun7i-a20-bananapro"
|
|
BR2_LINUX_KERNEL_INSTALL_TARGET=y
|
|
|
|
# Filesystem
|
|
BR2_TARGET_ROOTFS_EXT2=y
|
|
BR2_TARGET_ROOTFS_EXT2_4=y
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
|
|
# Bootloaders
|
|
BR2_TARGET_UBOOT=y
|
|
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
|
|
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
|
|
BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2016.11"
|
|
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="Bananapro"
|
|
BR2_TARGET_UBOOT_NEEDS_DTC=y
|
|
BR2_TARGET_UBOOT_FORMAT_BIN=y
|
|
BR2_TARGET_UBOOT_SPL=y
|
|
BR2_TARGET_UBOOT_SPL_NAME="u-boot-sunxi-with-spl.bin"
|
|
|
|
# Wifi firmware for brcm43362
|
|
BR2_PACKAGE_LINUX_FIRMWARE=y
|
|
BR2_PACKAGE_LINUX_FIRMWARE_BRCM_BCM43XXX=y
|
|
|
|
# Audio
|
|
BR2_PACKAGE_ALSA_UTILS=y
|
|
# BR2_PACKAGE_ALSA_UTILS_ALSAMIXER is not set
|
|
BR2_PACKAGE_ALSA_UTILS_AMIXER=y
|
|
BR2_PACKAGE_ALSA_UTILS_APLAY=y
|
|
|
|
# For automatic firmware loading
|
|
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
|
|
|
|
# Wireless packages
|
|
BR2_PACKAGE_IW=y
|
|
BR2_PACKAGE_WPA_SUPPLICANT=y
|
|
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
|
|
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
|
|
|
|
# Host tools
|
|
BR2_PACKAGE_HOST_DOSFSTOOLS=y
|
|
BR2_PACKAGE_HOST_GENIMAGE=y
|
|
BR2_PACKAGE_HOST_MTOOLS=y
|
|
BR2_PACKAGE_HOST_UBOOT_TOOLS=y
|