Changeset 2522

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

fix ppp and madwifi configs, don't package nfs/ext2 if already activated in the kernel

Files:

Legend:

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

    r2520 r2522  
    507507,30)) 
    508508 
     509ifneq ($(FWRT_KERNEL_EXT2_FS),y)  
    509510$(eval $(call KMOD_template,EXT2_FS,fs-ext2,\ 
    510511        $(MODULES_DIR)/kernel/fs/ext2/ext2 \ 
    511512,30)) 
     513endif 
    512514 
    513515$(eval $(call KMOD_template,EXT3_FS,fs-ext3,\ 
     
    526528,30)) 
    527529 
     530ifneq ($(FWRT_KERNEL_NFS_FS),y)  
    528531$(eval $(call KMOD_template,NFS_FS,fs-nfs,\ 
    529532        $(MODULES_DIR)/kernel/net/sunrpc/sunrpc \ 
     
    531534        $(MODULES_DIR)/kernel/fs/nfs/nfs \ 
    532535,30)) 
     536endif 
    533537 
    534538$(eval $(call KMOD_template,NFSD,fs-nfsd,\ 
  • trunk/freewrt/package/madwifi/Config.in

    r550 r2522  
    22        prompt "kmod-madwifi...................... Atheros Wifi driver" 
    33        tristate 
     4        select FWRT_KERNEL_NET_RADIO 
    45        default n 
    56        help 
  • trunk/freewrt/target/linux/config/Config.in.netdevice

    r2504 r2522  
    5151 
    5252menu "Wireless card support" 
     53 
     54config FWRT_KERNEL_NET_RADIO 
     55        boolean 
     56        default n 
    5357 
    5458source package/broadcom-wl/Config.in 
  • trunk/freewrt/target/linux/config/Config.in.network

    r2519 r2522  
    1818 
    1919config FWRT_KERNEL_PPP_ASYNC 
     20        boolean 
     21        default n 
     22 
     23config FWRT_KERNEL_SLHC 
    2024        boolean 
    2125        default n 
     
    104108        prompt "kmod-ppp.......................... PPP support" 
    105109        tristate 
    106         depends FWRT_KPACKAGE_KMOD_PPP_ASYNC 
     110        select FWRT_KERNEL_PPP_ASYNC 
     111        select FWRT_KERNEL_SLHC 
    107112        default n 
    108113        help 
    109           Kernel support for PPP 
     114          PPP (Point to Point Protocol) is a newer and better SLIP.  It serves 
     115          the same purpose: sending Internet traffic over telephone (and other 
     116          serial) lines.  Ask your access provider if they support it, because 
     117          otherwise you can't use it; most Internet access providers these 
     118          days support PPP rather than SLIP. 
    110119 
    111 config FWRT_KPACKAGE_KMOD_MPPE 
    112         prompt   "kmod-mppe....................... PPP MPPE/MPPC module" 
     120          To use PPP, you need an additional program called pppd as described 
     121          in the PPP-HOWTO, available at 
     122          <http://www.tldp.org/docs.html#howto>.  Make sure that you have 
     123          the version of pppd recommended in <file:Documentation/Changes>. 
     124          The PPP option enlarges your kernel by about 16 KB. 
     125 
     126          There are actually two versions of PPP: the traditional PPP for 
     127          asynchronous lines, such as regular analog phone lines, and 
     128          synchronous PPP which can be used over digital ISDN lines for 
     129          example.  If you want to use PPP over phone lines or other 
     130          asynchronous serial lines, you need to say Y (or M) here and also to 
     131          the next option, "PPP support for async serial ports".  For PPP over 
     132          synchronous lines, you should say Y (or M) here and to "Support 
     133          synchronous PPP", below. 
     134 
     135config FWRT_KPACKAGE_KMOD_PPP_MPPE 
     136        prompt   "kmod-ppp-mppe................... PPP MPPE/MPPC module" 
    113137        tristate 
    114138        default n 
    115139        depends FWRT_KPACKAGE_KMOD_PPP 
    116140        select FWRT_KERNEL_CRYPTO 
     141        select FWRT_KPACKAGE_KMOD_CRYPTO_ARC4 
     142        select FWRT_KPACKAGE_KMOD_CRYPTO_SHA1 
     143        select FWRT_KPACKAGE_KMOD_CRYPTO_ECB if FWRT_LINUX_2_6 
    117144        help 
    118           Support for Microsoft PPP Encryption/Compression 
     145         Support for the MPPE Encryption protocol, as employed by the 
     146         Microsoft Point-to-Point Tunneling Protocol. 
     147 
     148         See http://pptpclient.sourceforge.net/ for information on 
     149         configuring PPTP clients and servers to utilize this method. 
    119150 
    120151#config FWRT_KPACKAGE_KMOD_PPPOATM