Changeset 2646

Show
Ignore:
Timestamp:
05/24/07 09:43:32 (2 years ago)
Author:
wbx
Message:

fix pcmcia kernel configuration

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/mk/modules.mk

    r2623 r2646  
    621621PCMCIA_SERIAL_MODULES = drivers/char/pcmcia/serial_cs 
    622622endif 
    623 $(eval $(call KMOD_template,PCMCIA_CORE,pcmcia-core,\ 
     623$(eval $(call KMOD_template,PCMCIA,pcmcia,\ 
    624624        $(foreach mod,$(PCMCIA_CORE_MODULES),$(MODULES_DIR)/kernel/$(mod)) \ 
    625625,50)) 
    626 $(eval $(call KMOD_template,PCMCIA_SERIAL,pcmcia-serial,\ 
     626$(eval $(call KMOD_template,PCMCIA_SERIAL_CS,pcmcia-serial,\ 
    627627        $(foreach mod,$(PCMCIA_SERIAL_MODULES),$(MODULES_DIR)/kernel/$(mod)) \ 
    628 ,51)) 
     628,55)) 
    629629 
    630630# 
  • trunk/freewrt/package/nozomi/Config.in

    r2504 r2646  
    33        tristate 
    44        default n 
    5         select FWRT_KPACKAGE_KMOD_PCMCIA_CORE 
     5        select FWRT_KPACKAGE_KMOD_PCMCIA 
    66        help 
    77          This module provides the serial interfaces needed to get a HSDPA/UMTS/GPRS 
  • trunk/freewrt/package/ppp/Config.in

    r2504 r2646  
    5555        default n 
    5656        select FWRT_PACKAGE_COMGT 
    57         select FWRT_KPACKAGE_KMOD_PCMCIA_SERIAL 
     57        select FWRT_KPACKAGE_KMOD_PCMCIA_SERIAL_CS 
    5858        select FWRT_KPACKAGE_KMOD_USB_SERIAL 
    5959        depends FWRT_PACKAGE_PPP 
  • trunk/freewrt/target/linux/config/Config.in.pcmcia

    r2504 r2646  
    22depends on FWRT_LINUX_2_4_BRCM_LINKSYS_WRT54G3G 
    33 
    4 config FWRT_KPACKAGE_KMOD_PCMCIA_CORE 
    5         prompt "kmod-pcmcia-core.................. PCMCIA/CardBus support" 
     4config FWRT_KERNEL_CARDBUS 
     5        boolean  
     6        default n 
     7 
     8config FWRT_KPACKAGE_KMOD_PCMCIA 
     9        prompt "kmod-pcmcia....................... PCMCIA/CardBus support" 
    610        tristate 
     11        select FWRT_KERNEL_CARDBUS 
    712        default y if FWRT_LINUX_2_4_BRCM_LINKSYS_WRT54G3G 
     13        depends on FWRT_LINUX_2_4_BRCM_LINKSYS_WRT54G3G 
    814        default n 
    9         depends on FWRT_LINUX_2_4_BRCM_LINKSYS_WRT54G3G 
    1015 
    11 config FWRT_KPACKAGE_KMOD_PCMCIA_SERIAL 
    12         prompt   "kmod-pcmcia-serial.............. PCMCIA/CardBus serial device support" 
     16config FWRT_KPACKAGE_KMOD_PCMCIA_SERIAL_CS 
     17        prompt   "kmod-pcmcia-serial................ PCMCIA/CardBus serial device support" 
    1318        tristate 
    1419        default n 
    15         depends FWRT_KPACKAGE_KMOD_PCMCIA_CORE 
     20        select FWRT_KPACKAGE_KMOD_PCMCIA 
    1621 
    1722source package/nozomi/Config.in 
    1823 
    1924endmenu 
    20  
    21