Mercurial > ecos
changeset 512:86bfbf46eeba
Increase allowed number of buffers - this had to wait for some recent QUICC changes in buffer management.
| author | gthomas |
|---|---|
| date | Mon, 20 Jan 2003 11:13:55 +0000 |
| parents | 403eb06720a7 |
| children | 75bb10dfa0df |
| files | packages/devs/eth/powerpc/fec/current/ChangeLog packages/devs/eth/powerpc/fec/current/cdl/fec_eth_drivers.cdl |
| diffstat | 2 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/devs/eth/powerpc/fec/current/ChangeLog +++ b/packages/devs/eth/powerpc/fec/current/ChangeLog @@ -1,3 +1,7 @@ +2003-01-20 Gary Thomas <gary@mlbassoc.com> + + * cdl/fec_eth_drivers.cdl: Increase number of allowed buffers. + 2002-11-14 Gary Thomas <gthomas@ecoscentric.com> * cdl/fec_eth_drivers.cdl: Increase default number of buffers (to a
--- a/packages/devs/eth/powerpc/fec/current/cdl/fec_eth_drivers.cdl +++ b/packages/devs/eth/powerpc/fec/current/cdl/fec_eth_drivers.cdl @@ -9,7 +9,7 @@ ## ------------------------------------------- ## This file is part of eCos, the Embedded Configurable Operating System. ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. -## Copyright (C) 2002 Gary Thomas +## Copyright (C) 2002, 2003 Gary Thomas ## ## eCos is free software; you can redistribute it and/or modify it under ## the terms of the GNU General Public License as published by the Free @@ -88,7 +88,7 @@ cdl_package CYGPKG_DEVS_ETH_POWERPC_FEC cdl_option CYGNUM_DEVS_ETH_POWERPC_FEC_TxNUM { display "Number of output buffers" flavor data - legal_values 2 to 16 + legal_values 2 to 64 default_value 16 description " This option specifies the number of output buffer packets @@ -98,7 +98,7 @@ cdl_package CYGPKG_DEVS_ETH_POWERPC_FEC cdl_option CYGNUM_DEVS_ETH_POWERPC_FEC_RxNUM { display "Number of input buffers" flavor data - legal_values 2 to 16 + legal_values 2 to 64 default_value 16 description " This option specifies the number of input buffer packets
