diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-15 01:57:38 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-11-15 01:57:38 +0000 |
commit | 94b42bc235621ab72c23113394fb89717508ffe5 (patch) | |
tree | bf79469e735dfecd796871ca04568a546b4b14ec /openwrt/target | |
parent | 70ac7f073d2224792b09da4058afadba098699b3 (diff) |
add pcmcia support for 2.4/brcm and serial_cs kernel module
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2490 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target')
-rw-r--r-- | openwrt/target/linux/Config.in | 6 | ||||
-rw-r--r-- | openwrt/target/linux/control/kmod-pcmcia-serial.control | 4 | ||||
-rw-r--r-- | openwrt/target/linux/linux-2.4/Makefile | 4 | ||||
-rw-r--r-- | openwrt/target/linux/linux-2.4/config/brcm | 29 |
4 files changed, 42 insertions, 1 deletions
diff --git a/openwrt/target/linux/Config.in b/openwrt/target/linux/Config.in index 9d402130a..0c8d38a36 100644 --- a/openwrt/target/linux/Config.in +++ b/openwrt/target/linux/Config.in @@ -634,6 +634,12 @@ config BR2_PACKAGE_KMOD_PCMCIA_CORE tristate default m +config BR2_PACKAGE_KMOD_PCMCIA_SERIAL + prompt "kmod-pcmcia-serial.............. PCMCIA/CardBus serial device support" + tristate + default m + depends BR2_PACKAGE_KMOD_PCMCIA_CORE + comment "USB support" config BR2_PACKAGE_KMOD_USB diff --git a/openwrt/target/linux/control/kmod-pcmcia-serial.control b/openwrt/target/linux/control/kmod-pcmcia-serial.control new file mode 100644 index 000000000..7e8a03c95 --- /dev/null +++ b/openwrt/target/linux/control/kmod-pcmcia-serial.control @@ -0,0 +1,4 @@ +Package: kmod-pcmcia-serial +Priority: optional +Section: sys +Description: PCMCIA/CardBus serial device support diff --git a/openwrt/target/linux/linux-2.4/Makefile b/openwrt/target/linux/linux-2.4/Makefile index 5a16a7ed6..a42ba73d6 100644 --- a/openwrt/target/linux/linux-2.4/Makefile +++ b/openwrt/target/linux/linux-2.4/Makefile @@ -287,6 +287,10 @@ $(eval $(call KMOD_template,PCMCIA_CORE,pcmcia-core,\ $(MODULES_DIR)/kernel/drivers/pcmcia/yenta_socket.o \ ,CONFIG_PCMCIA,,50,pcmcia_core)) +$(eval $(call KMOD_template,PCMCIA_SERIAL,pcmcia-serial,\ + $(MODULES_DIR)/kernel/drivers/char/pcmcia/serial_cs.o \ +,CONFIG_PCMCIA_SERIAL_CS,kmod-pcmcia-core,51,serial_cs)) + # USB diff --git a/openwrt/target/linux/linux-2.4/config/brcm b/openwrt/target/linux/linux-2.4/config/brcm index 5e7626523..3ddadba06 100644 --- a/openwrt/target/linux/linux-2.4/config/brcm +++ b/openwrt/target/linux/linux-2.4/config/brcm @@ -145,7 +145,11 @@ CONFIG_HOTPLUG=y # # PCMCIA/CardBus support # -# CONFIG_PCMCIA is not set +CONFIG_PCMCIA=m +CONFIG_CARDBUS=y +# CONFIG_TCIC is not set +# CONFIG_I82092 is not set +# CONFIG_I82365 is not set # # PCI Hotplug Support @@ -696,6 +700,11 @@ CONFIG_SCSI_MULTI_LUN=y # CONFIG_SCSI_DEBUG is not set # +# PCMCIA SCSI adapter support +# +# CONFIG_SCSI_PCMCIA is not set + +# # Fusion MPT device support # # CONFIG_FUSION is not set @@ -835,6 +844,13 @@ CONFIG_WL=m # CONFIG_PCI_HERMES is not set # +# Wireless Pcmcia cards support +# +# CONFIG_PCMCIA_HERMES is not set +# CONFIG_AIRO_CS is not set +# CONFIG_PCMCIA_ATMEL is not set + +# # Prism54 PCI/PCMCIA GT/Duette Driver - 802.11(a/b/g) # # CONFIG_PRISM54 is not set @@ -854,6 +870,11 @@ CONFIG_SHAPER=m # CONFIG_WAN is not set # +# PCMCIA network device support +# +# CONFIG_NET_PCMCIA is not set + +# # Amateur Radio support # CONFIG_HAMRADIO=y @@ -995,6 +1016,12 @@ CONFIG_SOFT_WATCHDOG=y # CONFIG_DRM is not set # +# PCMCIA character devices +# +CONFIG_PCMCIA_SERIAL_CS=m +# CONFIG_SYNCLINK_CS is not set + +# # File systems # # CONFIG_QUOTA is not set |