mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
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>
22 lines
579 B
Makefile
22 lines
579 B
Makefile
#
|
|
# Copyright (C) 2019 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
I2C_BCM2835_MODULES:=\
|
|
CONFIG_I2C_BCM2835:drivers/i2c/busses/i2c-bcm2835
|
|
|
|
define KernelPackage/i2c-bcm2835
|
|
$(call i2c_defaults,$(I2C_BCM2835_MODULES),59)
|
|
TITLE:=Broadcom BCM2835 I2C master controller driver
|
|
DEPENDS:=@TARGET_bcm27xx +kmod-i2c-core
|
|
endef
|
|
|
|
define KernelPackage/i2c-bcm2835/description
|
|
This package contains the Broadcom 2835 I2C master controller driver
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,i2c-bcm2835))
|