mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +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>
37 lines
1013 B
Makefile
37 lines
1013 B
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/hwmon-raspberrypi
|
|
TITLE:=Raspberry Pi voltage monitor
|
|
KCONFIG:=CONFIG_SENSORS_RASPBERRYPI_HWMON
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/raspberrypi-hwmon.ko
|
|
AUTOLOAD:=$(call AutoLoad,60,raspberrypi-hwmon)
|
|
$(call AddDepends/hwmon,@TARGET_bcm27xx)
|
|
endef
|
|
|
|
define KernelPackage/hwmon-raspberrypi/description
|
|
Kernel module for voltage sensor on the Raspberry Pi
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,hwmon-raspberrypi))
|
|
|
|
|
|
define KernelPackage/hwmon-rpi-poe-fan
|
|
SUBMENU:=$(HWMON_MENU)
|
|
TITLE:=Raspberry Pi PoE HAT fan
|
|
DEPENDS:=@TARGET_bcm27xx +kmod-hwmon-core
|
|
KCONFIG:=CONFIG_SENSORS_RPI_POE_FAN
|
|
FILES:=$(LINUX_DIR)/drivers/hwmon/rpi-poe-fan.ko
|
|
AUTOLOAD:=$(call AutoProbe,rpi-poe-fan)
|
|
endef
|
|
|
|
define KernelPackage/hwmon-rpi-poe-fan/description
|
|
Raspberry Pi PoE HAT fan driver
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,hwmon-rpi-poe-fan))
|