⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eth_drivers.cdl

📁 移植到WLIT项目的redboot源代码
💻 CDL
字号:
# ====================================================================##      eth_drivers.cdl##      Ethernet drivers - platform independent support## ====================================================================#####COPYRIGHTBEGIN#####                                                                          # -------------------------------------------                              # The contents of this file are subject to the Red Hat eCos Public License # Version 1.1 (the "License"); you may not use this file except in         # compliance with the License.  You may obtain a copy of the License at    # http://www.redhat.com/                                                   #                                                                          # Software distributed under the License is distributed on an "AS IS"      # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the # License for the specific language governing rights and limitations under # the License.                                                             #                                                                          # The Original Code is eCos - Embedded Configurable Operating System,      # released September 30, 1998.                                             #                                                                          # The Initial Developer of the Original Code is Red Hat.                   # Portions created by Red Hat are                                          # Copyright (C) 1998, 1999, 2000 Red Hat, Inc.                             # All Rights Reserved.                                                     # -------------------------------------------                              #                                                                          #####COPYRIGHTEND##### ====================================================================######DESCRIPTIONBEGIN###### Author(s):      gthomas# Original data:  gthomas# Contributors:# Date:           2000-01-25######DESCRIPTIONEND###### ====================================================================cdl_package CYGPKG_IO_ETH_DRIVERS {    display       "Common ethernet support"    include_dir   .    parent        CYGPKG_IO    description   "Platform independent ethernet drivers"    cdl_component CYGPKG_IO_ETH_DRIVERS_NET {        display       "Support for standard eCos TCP/IP stack."        flavor        bool        active_if     CYGPKG_NET        no_define        default_value 1        compile       net/eth_drv.c    	cdl_option CYGPKG_IO_ETH_DRIVERS_WARN_NO_MBUFS {	    display	"Warn when there are no more mbufs"	    flavor	bool	    default_value 1	    description "	        Warnings about running out of mbufs are printed to the	        diagnostic output channel via diag_printf() if this option	        is enabled.  Mbufs are the network stack's basic dynamic	        memory objects that hold all packets in transit; running	        out is bad for performance but not fatal, not a crash.                You might want to turn off the warnings to preserve realtime                properties of the system even in extremis."	}	cdl_component CYGPKG_IO_ETH_DRIVERS_SIMULATED_FAILURES {	    display		"Simulate network failures for testing"	    flavor		bool	    default_value	0	    description	"		This package contains a suite of simulated failure modes		for the ethernet device layer, including dropping and/or		corrupting received packets, dropping packets queued for		transmission, and simulating a complete network break.	        It requires the kernel as a source of time information."	    cdl_option CYGPKG_IO_ETH_DRIVERS_SIMULATE_DROP_RX {		display	"Drop incoming packets (percentage)"		flavor	booldata		legal_values 10 50 80		default_value 10	    }	    cdl_option CYGPKG_IO_ETH_DRIVERS_SIMULATE_CORRUPT_RX {		display	"Corrupt incoming packets (percentage)"		flavor	booldata		legal_values 10 50 80		default_value 10	    }	    cdl_option CYGPKG_IO_ETH_DRIVERS_SIMULATE_DROP_TX {		display	"Drop outgoing packets (percentage)"		flavor	booldata		legal_values 10 50 80		default_value 10	    }	    cdl_option CYGPKG_IO_ETH_DRIVERS_SIMULATE_LINE_CUT {		display	"Simulate a line cut from time to time"		flavor	bool		default_value 0		description "	    	This option causes the system to drop all packets for a	    	short random period (10s of seconds), and then act	    	normally for up to 4 times that long.  This simulates your	    	sysadmin fiddling with plugs in the network switch	    	cupboard."	    }	}    }    cdl_component CYGPKG_IO_ETH_DRIVERS_STAND_ALONE {        display       "Support for stand-alone network stack."        flavor        bool        active_if     !CYGPKG_NET        default_value 1        no_define        compile       stand_alone/eth_drv.c        cdl_option CYGNUM_IO_ETH_DRIVERS_NUM_PKT {            display          "Number of \[network\] buffers"            flavor           data            default_value    16            legal_values     2 to 32            description      "               This option is used to allocate space to buffer incoming network               packets.  These buffers are used to hold data until they can be               logically processed by higher layers."        }        cdl_option CYGSEM_IO_ETH_DRIVERS_WARN {            display          "Show driver warnings"            flavor           bool            default_value    0            description      "               Selecting this option will allows the stand-alone ethernet driver               to display warnings on the system console when incoming network               packets are being discarded due to lack of buffer space."        }        cdl_option CYGSEM_IO_ETH_DRIVERS_DEBUG {            display          "Print driver debug information"            flavor           bool            default_value    0            description      "               Selecting this option will enable the stand-alone driver to print               lots of information.  Useful only when getting a low-level hardware               driver to work."        }    }    cdl_component CYGPKG_IO_ETH_DRIVERS_OPTIONS {        display "Common ethernet support build options"        flavor  none	no_define        cdl_option CYGPKG_IO_ETH_DRIVERS_CFLAGS_ADD {            display "Additional compiler flags"            flavor  data            no_define            default_value { "-D_KERNEL -D__ECOS" }            description   "                This option modifies the set of compiler flags for                building the common ethernet support package. These flags are used in addition                to the set of global flags."        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -