2010-04-24 21:34:51 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-bcm63xx
|
2010-04-24 21:53:31 +08:00
|
|
|
SUBMENU:=$(PCMCIA_MENU)
|
2010-04-24 21:34:51 +08:00
|
|
|
TITLE:=Broadcom BCM63xx PCMCIA support
|
2011-06-22 04:52:53 +08:00
|
|
|
DEPENDS:=@TARGET_brcm63xx +kmod-pcmcia-rsrc
|
2010-04-24 21:34:51 +08:00
|
|
|
KCONFIG:=CONFIG_PCMCIA_BCM63XX
|
2010-07-12 22:06:13 +08:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/bcm63xx_pcmcia.ko
|
2010-04-24 21:34:51 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,41,bcm63xx_pcmcia)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/pcmcia-bcm63xx/description
|
|
|
|
Kernel support for PCMCIA/CardBus controller on the BCM63xx SoC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,pcmcia-bcm63xx))
|
2014-01-14 13:23:20 +08:00
|
|
|
|
|
|
|
define KernelPackage/bcm63xx-udc
|
|
|
|
SUBMENU:=$(USB_MENU)
|
|
|
|
TITLE:=Broadcom BCM63xx UDC support
|
|
|
|
DEPENDS:=@TARGET_brcm63xx +kmod-usb-gadget
|
|
|
|
KCONFIG:=CONFIG_USB_BCM63XX_UDC
|
2015-03-15 22:19:10 +08:00
|
|
|
FILES:= \
|
2015-04-11 18:43:46 +08:00
|
|
|
$(LINUX_DIR)/drivers/usb/gadget/udc/bcm63xx_udc.ko
|
2014-01-14 13:23:20 +08:00
|
|
|
AUTOLOAD:=$(call AutoLoad,51,bcm63xx_udc)
|
|
|
|
$(call AddDepends/usb)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/bcm63xx-udc/description
|
|
|
|
Kernel support for the USB gadget (device) controller on the BCM63xx SoC
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,bcm63xx-udc))
|