don't emit ifup hotplug events on dhcp renew - use a new iface hotplug type 'update...
[openwrt/svn-archive/archive.git] / package / mmc_over_gpio / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/kernel.mk
9
10 PKG_NAME:=mmc-over-gpio
11 PKG_RELEASE:=2
12
13 include $(INCLUDE_DIR)/package.mk
14
15
16 define KernelPackage/mmc-over-gpio
17 SUBMENU:=Other modules
18 DEPENDS:=@GPIO_SUPPORT +kmod-mmc-spi +kmod-spi-gpio
19 KCONFIG:=CONFIG_GPIOMMC CONFIG_CONFIGFS_FS=y
20 TITLE:=MMC/SD card over GPIO support
21 FILES:=$(LINUX_DIR)/drivers/mmc/host/gpiommc.$(LINUX_KMOD_SUFFIX)
22 AUTOLOAD:=$(call AutoLoad,93,spi_gpio gpiommc)
23 endef
24
25 define KernelPackage/mmc-over-gpio/description
26 Support for driving an MMC/SD card over GPIO pins via SPI.
27 endef
28
29 define Build/Prepare
30 mkdir -p $(PKG_BUILD_DIR)
31 endef
32
33 define Build/Compile
34 endef
35
36 define KernelPackage/mmc-over-gpio/install
37 $(INSTALL_DIR) $(1)/etc/init.d
38 $(INSTALL_BIN) ./files/mmc_over_gpio.init $(1)/etc/init.d/mmc_over_gpio
39 endef
40
41 $(eval $(call KernelPackage,mmc-over-gpio))