7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2019 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define KernelPackage/spi-bcm2835
|
|
SUBMENU:=$(SPI_MENU)
|
|
TITLE:=BCM2835 SPI controller driver
|
|
KCONFIG:=\
|
|
CONFIG_SPI=y \
|
|
CONFIG_SPI_BCM2835 \
|
|
CONFIG_SPI_MASTER=y
|
|
FILES:=$(LINUX_DIR)/drivers/spi/spi-bcm2835.ko
|
|
AUTOLOAD:=$(call AutoLoad,89,spi-bcm2835)
|
|
DEPENDS:=@TARGET_bcm27xx
|
|
endef
|
|
|
|
define KernelPackage/spi-bcm2835/description
|
|
This package contains the Broadcom 2835 SPI master controller driver
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,spi-bcm2835))
|
|
|
|
|
|
define KernelPackage/spi-bcm2835-aux
|
|
SUBMENU:=$(SPI_MENU)
|
|
TITLE:=BCM2835 Aux SPI controller driver
|
|
KCONFIG:=\
|
|
CONFIG_SPI=y \
|
|
CONFIG_SPI_BCM2835AUX \
|
|
CONFIG_SPI_MASTER=y
|
|
FILES:=$(LINUX_DIR)/drivers/spi/spi-bcm2835aux.ko
|
|
AUTOLOAD:=$(call AutoLoad,89,spi-bcm2835aux)
|
|
DEPENDS:=@TARGET_bcm27xx
|
|
endef
|
|
|
|
define KernelPackage/spi-bcm2835-aux/description
|
|
This package contains the Broadcom 2835 Aux SPI master controller driver
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,spi-bcm2835-aux))
|