mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:44:39 +02:00
a8cab73a4c
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24814 3c298f89-4303-0410-b956-a3cf2f4a3e73
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define KernelPackage/mmc-at91
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=MMC/SD Card Support on AT91
|
|
DEPENDS:=@TARGET_at91 +kmod-mmc
|
|
KCONFIG:=CONFIG_MMC_AT91
|
|
FILES:=$(LINUX_DIR)/drivers/mmc/host/at91_mci.ko
|
|
AUTOLOAD:=$(call AutoLoad,90,at91_mci,1)
|
|
endef
|
|
|
|
define KernelPackage/mmc-at91/description
|
|
Kernel support for MMC/SD cards on the AT91 target
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,mmc-at91))
|
|
|
|
define KernelPackage/pwm-atmel
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=PWM on atmel SoC
|
|
DEPENDS:=@TARGET_at91
|
|
KCONFIG:=CONFIG_GENERIC_PWM \
|
|
CONFIG_ATMEL_PWM
|
|
FILES:=$(LINUX_DIR)/drivers/pwm/atmel-pwm.ko
|
|
AUTOLOAD:=$(call AutoLoad,51,atmel-pwm)
|
|
endef
|
|
|
|
define KernelPackage/pwm-atmel/description
|
|
Kernel module to use the PWM channel on ATMEL SoC
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,pwm-atmel))
|
|
|
|
define KernelPackage/at91-adc
|
|
SUBMENU:=$(OTHER_MENU)
|
|
TITLE:=ADC on atmel SoC
|
|
DEPENDS:=@TARGET_at91
|
|
KCONFIG:=CONFIG_AT91_ADC
|
|
FILES:=$(LINUX_DIR)/drivers/misc/at91-adc.ko
|
|
AUTOLOAD:=$(call AutoLoad,40,at91-adc)
|
|
endef
|
|
|
|
define KernelPackage/at91-adc/description
|
|
Kernel module to use the ADC channels of SoC
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,at91-adc))
|