mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 20:41:53 +02:00
package/kernel: move PCMCIA modules to their own file & submenu
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21136 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d2dff2d53e
commit
77db1e61b6
@ -101,88 +101,6 @@ endef
|
|||||||
$(eval $(call KernelPackage,lp))
|
$(eval $(call KernelPackage,lp))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-core
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=PCMCIA/CardBus support
|
|
||||||
DEPENDS:=@PCMCIA_SUPPORT
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_PCMCIA \
|
|
||||||
CONFIG_CARDBUS \
|
|
||||||
CONFIG_PCCARD \
|
|
||||||
PCMCIA_DEBUG=n
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-core/2.4
|
|
||||||
# KCONFIG:= \
|
|
||||||
# CONFIG_PCMCIA \
|
|
||||||
# CONFIG_CARDBUS
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/ds.$(LINUX_KMOD_SUFFIX) \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX)
|
|
||||||
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core ds yenta_socket)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-core/2.6
|
|
||||||
# KCONFIG:= \
|
|
||||||
# CONFIG_PCCARD \
|
|
||||||
# CONFIG_PCMCIA \
|
|
||||||
# PCMCIA_DEBUG=n
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/pcmcia.$(LINUX_KMOD_SUFFIX)
|
|
||||||
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core pcmcia)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-core/description
|
|
||||||
Kernel support for PCMCIA/CardBus controllers
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,pcmcia-core))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-yenta
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=yenta socket driver
|
|
||||||
DEPENDS:=@LINUX_2_6 kmod-pcmcia-core
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_PCCARD_NONSTATIC \
|
|
||||||
CONFIG_YENTA
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.$(LINUX_KMOD_SUFFIX) \
|
|
||||||
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX)
|
|
||||||
AUTOLOAD:=$(call AutoLoad,41,rsrc_nonstatic yenta_socket)
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,pcmcia-yenta))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-serial
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=Serial devices support
|
|
||||||
DEPENDS:=kmod-pcmcia-core
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_PCMCIA_SERIAL_CS \
|
|
||||||
CONFIG_SERIAL_8250_CS
|
|
||||||
AUTOLOAD:=$(call AutoLoad,45,serial_cs)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-serial/2.4
|
|
||||||
# KCONFIG:=CONFIG_PCMCIA_SERIAL_CS
|
|
||||||
FILES:=$(LINUX_DIR)/drivers/char/pcmcia/serial_cs.$(LINUX_KMOD_SUFFIX)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-serial/2.6
|
|
||||||
# KCONFIG:=CONFIG_SERIAL_8250_CS
|
|
||||||
FILES:=$(LINUX_DIR)/drivers/serial/serial_cs.$(LINUX_KMOD_SUFFIX)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-serial/description
|
|
||||||
Kernel support for PCMCIA/CardBus serial devices
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,pcmcia-serial))
|
|
||||||
|
|
||||||
define KernelPackage/ssb
|
define KernelPackage/ssb
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=Silicon Sonics Backplane glue code
|
TITLE:=Silicon Sonics Backplane glue code
|
||||||
|
90
package/kernel/modules/pcmcia.mk
Normal file
90
package/kernel/modules/pcmcia.mk
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2006-2010 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
PCMCIA_MENU:=PCMCIA support
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-core
|
||||||
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
|
TITLE:=PCMCIA/CardBus support
|
||||||
|
DEPENDS:=@PCMCIA_SUPPORT
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_PCMCIA \
|
||||||
|
CONFIG_CARDBUS \
|
||||||
|
CONFIG_PCCARD \
|
||||||
|
PCMCIA_DEBUG=n
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-core/2.4
|
||||||
|
# KCONFIG:= \
|
||||||
|
# CONFIG_PCMCIA \
|
||||||
|
# CONFIG_CARDBUS
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/ds.$(LINUX_KMOD_SUFFIX) \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core ds yenta_socket)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-core/2.6
|
||||||
|
# KCONFIG:= \
|
||||||
|
# CONFIG_PCCARD \
|
||||||
|
# CONFIG_PCMCIA \
|
||||||
|
# PCMCIA_DEBUG=n
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia_core.$(LINUX_KMOD_SUFFIX) \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/pcmcia.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,25,pcmcia_core pcmcia)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-core/description
|
||||||
|
Kernel support for PCMCIA/CardBus controllers
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,pcmcia-core))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-yenta
|
||||||
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
|
TITLE:=yenta socket driver
|
||||||
|
DEPENDS:=@LINUX_2_6 kmod-pcmcia-core
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_PCCARD_NONSTATIC \
|
||||||
|
CONFIG_YENTA
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/rsrc_nonstatic.$(LINUX_KMOD_SUFFIX) \
|
||||||
|
$(LINUX_DIR)/drivers/pcmcia/yenta_socket.$(LINUX_KMOD_SUFFIX)
|
||||||
|
AUTOLOAD:=$(call AutoLoad,41,rsrc_nonstatic yenta_socket)
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,pcmcia-yenta))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-serial
|
||||||
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
|
TITLE:=Serial devices support
|
||||||
|
DEPENDS:=kmod-pcmcia-core
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_PCMCIA_SERIAL_CS \
|
||||||
|
CONFIG_SERIAL_8250_CS
|
||||||
|
AUTOLOAD:=$(call AutoLoad,45,serial_cs)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-serial/2.4
|
||||||
|
# KCONFIG:=CONFIG_PCMCIA_SERIAL_CS
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/char/pcmcia/serial_cs.$(LINUX_KMOD_SUFFIX)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-serial/2.6
|
||||||
|
# KCONFIG:=CONFIG_SERIAL_8250_CS
|
||||||
|
FILES:=$(LINUX_DIR)/drivers/serial/serial_cs.$(LINUX_KMOD_SUFFIX)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/pcmcia-serial/description
|
||||||
|
Kernel support for PCMCIA/CardBus serial devices
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,pcmcia-serial))
|
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
define KernelPackage/pcmcia-au1000
|
define KernelPackage/pcmcia-au1000
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
TITLE:=RMI/AMD Au1000 PCMCIA support
|
TITLE:=RMI/AMD Au1000 PCMCIA support
|
||||||
DEPENDS:=@TARGET_au1000 kmod-pcmcia-core
|
DEPENDS:=@TARGET_au1000 kmod-pcmcia-core
|
||||||
FILES:=$(LINUX_DIR)/drivers/pcmcia/au1x00_ss.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/drivers/pcmcia/au1x00_ss.$(LINUX_KMOD_SUFFIX)
|
||||||
|
@ -22,7 +22,7 @@ $(eval $(call KernelPackage,bcm63xx-spi))
|
|||||||
|
|
||||||
|
|
||||||
define KernelPackage/pcmcia-bcm63xx
|
define KernelPackage/pcmcia-bcm63xx
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(PCMCIA_MENU)
|
||||||
TITLE:=Broadcom BCM63xx PCMCIA support
|
TITLE:=Broadcom BCM63xx PCMCIA support
|
||||||
DEPENDS:=@TARGET_brcm63xx kmod-pcmcia-core
|
DEPENDS:=@TARGET_brcm63xx kmod-pcmcia-core
|
||||||
KCONFIG:=CONFIG_PCMCIA_BCM63XX
|
KCONFIG:=CONFIG_PCMCIA_BCM63XX
|
||||||
|
Loading…
Reference in New Issue
Block a user