Changeset 2508

Show
Ignore:
Timestamp:
05/14/07 19:35:31 (2 years ago)
Author:
le
Message:

enable network bonding to use multiple ehternet channels together

Files:

Legend:

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

    r2504 r2508  
    5959        $(MODULES_DIR)/kernel/drivers/net/tun \ 
    6060,20)) 
     61 
     62$(eval $(call KMOD_template,BONDING,bonding,\ 
     63        $(MODULES_DIR)/kernel/drivers/net/bonding/bonding \ 
     64,20)) 
     65 
    6166 
    6267# 
  • trunk/freewrt/target/linux/config/Config.in.network

    r2504 r2508  
    11menu "Network support" 
     2 
     3config FWRT_KERNEL_INET 
     4        boolean 
     5        default n 
    26 
    37config FWRT_KERNEL_IP_PNP_BOOTP 
     
    136140          Kernel support for the TUN/TAP tunneling device 
    137141 
     142config FWRT_KPACKAGE_KMOD_BONDING 
     143        prompt "kmod-bonding...................... Bonding driver support" 
     144        tristate 
     145        select FWRT_KERNEL_INET 
     146        default n 
     147        help 
     148          Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet 
     149          Channels together. This is called 'Etherchannel' by Cisco, 
     150          'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux. 
     151 
     152          The driver supports multiple bonding modes to allow for both high 
     153          performance and high availability operation. 
     154 
     155          Refer to <file:Documentation/networking/bonding.txt> for more 
     156          information. 
     157 
    138158source target/linux/config/Config.in.sched 
    139159