blob: 88fa4b4c51be497b0495a2d7ac735137ea922a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# 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
SUBMENU:=$(PCMCIA_MENU)
TITLE:=Broadcom BCM63xx PCMCIA support
DEPENDS:=@TARGET_brcm63xx +kmod-pcmcia-rsrc
KCONFIG:=CONFIG_PCMCIA_BCM63XX
FILES:=$(LINUX_DIR)/drivers/pcmcia/bcm63xx_pcmcia.ko
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))
|