diff options
author | Chris Blake <chrisrblake93@gmail.com> | 2017-01-25 11:23:19 -0600 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-03-01 20:37:35 +0100 |
commit | 9451cd7c5b6ccce9e790159fb8d71b054fa8325f (patch) | |
tree | 3cb950753b22c9f66a454b9bbbed992e275da8c6 /package/kernel/leds-apu2/Makefile | |
parent | 65b05463d78dd68db81e5c7236363128667b5699 (diff) | |
download | upstream-9451cd7c5b6ccce9e790159fb8d71b054fa8325f.tar.gz upstream-9451cd7c5b6ccce9e790159fb8d71b054fa8325f.tar.bz2 upstream-9451cd7c5b6ccce9e790159fb8d71b054fa8325f.zip |
leds-apu2: Add PC Engines APU2 LED driver
This adds support for the PCB LEDs and Reset Button found on the PC
Engines APU2/APU3 embedded boards.
Signed-off-by: Chris Blake <chrisrblake93@gmail.com>
Diffstat (limited to 'package/kernel/leds-apu2/Makefile')
-rw-r--r-- | package/kernel/leds-apu2/Makefile | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/package/kernel/leds-apu2/Makefile b/package/kernel/leds-apu2/Makefile new file mode 100644 index 0000000000..bab2315b07 --- /dev/null +++ b/package/kernel/leds-apu2/Makefile @@ -0,0 +1,52 @@ +# +# Copyright (C) 2017 Chris Blake <chrisrblake93@gmail.com> +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/kernel.mk + +PKG_NAME:=leds-apu2 +PKG_RELEASE:=1 + +PKG_MAINTAINER:=Chris Blake <chrisrblake93@gmail.com> +PKG_LICENSE:=GPL-2.0 + +include $(INCLUDE_DIR)/package.mk + +define KernelPackage/leds-apu2 + SUBMENU:=LED modules + TITLE:= PC Engines APU2/APU3 LED support + DEPENDS:= @GPIO_SUPPORT @TARGET_x86 + FILES:=$(PKG_BUILD_DIR)/leds-apu2.ko + AUTOLOAD:=$(call AutoLoad,41,leds-apu2,1) + KCONFIG:= +endef + +define KernelPackage/leds-apu2/description + Driver for the PC Engines APU2/APU3 LEDs & Reset Button. +endef + +EXTRA_KCONFIG:= \ + CONFIG_LEDS_APU2=m + +EXTRA_CFLAGS:= \ + $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=m,%,$(filter %=m,$(EXTRA_KCONFIG)))) \ + $(patsubst CONFIG_%, -DCONFIG_%=1, $(patsubst %=y,%,$(filter %=y,$(EXTRA_KCONFIG)))) \ + +MAKE_OPTS:= \ + ARCH="$(LINUX_KARCH)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + SUBDIRS="$(PKG_BUILD_DIR)" \ + EXTRA_CFLAGS="$(EXTRA_CFLAGS)" \ + $(EXTRA_KCONFIG) + +define Build/Compile + $(MAKE) -C "$(LINUX_DIR)" \ + $(MAKE_OPTS) \ + modules +endef + +$(eval $(call KernelPackage,leds-apu2)) |