598b29585e
Use SPDX license tags to allow machines to check licenses. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
34 lines
937 B
Makefile
34 lines
937 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2019 OpenWrt.org
|
|
|
|
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))
|