config
docs
include
package
base-files
boot
devel
firmware
kernel
acx-mac80211
ar7-atm
avila-wdt
brcm2708-gpu-fw
broadcom-wl
button-hotplug
ep80579-drivers
gpio-button-hotplug
hostap-driver
i2c-gpio-custom
lantiq
linux
mac80211
mmc_over_gpio
mt76
mwlwifi
om-watchdog
rotary-gpio-custom
rtc-rv5c386a
spi-gpio-custom
trelay
w1-gpio-custom
wrt55agv2-spidevs
src
Makefile
libs
network
system
utils
Makefile
scripts
target
toolchain
tools
.gitattributes
.gitignore
BSDmakefile
Config.in
LICENSE
Makefile
README
feeds.conf.default
rules.mk
Rename 'atheros' target to more precise 'ath25'. Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> SVN-Revision: 44736
44 lines
953 B
Makefile
44 lines
953 B
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# 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:=wrt55agv2-spidevs
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/wrt55agv2-spidevs
|
|
SUBMENU:=Other modules
|
|
TITLE:=WRT55AG v2 SPI devices support
|
|
DEPENDS:=@TARGET_ath25 +kmod-spi-gpio-old +kmod-spi-ks8995
|
|
FILES:=$(PKG_BUILD_DIR)/wrt55agv2_spidevs.ko
|
|
endef
|
|
|
|
define KernelPackage/wrt55agv2-spidevs/description
|
|
Kernel module for the SPI devices on the WRT55AG v2 board.
|
|
endef
|
|
|
|
MAKE_OPTS:= \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
SUBDIRS="$(PKG_BUILD_DIR)"
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C "$(LINUX_DIR)" \
|
|
$(MAKE_OPTS) \
|
|
modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,wrt55agv2-spidevs))
|