Mercurial > ecos
changeset 1020:803bc4df6977
Fix compile problem with non-net configurations.
| author | gthomas |
|---|---|
| date | Wed, 14 May 2003 15:10:13 +0000 |
| parents | a06219a61324 |
| children | 669b3a1b9791 |
| files | packages/devs/eth/powerpc/fec/current/ChangeLog packages/devs/eth/powerpc/fec/current/cdl/fec_eth_drivers.cdl |
| diffstat | 2 files changed, 6 insertions(+), 1 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,8 @@ +2003-05-14 Gary Thomas <gary@mlbassoc.com> + + * cdl/fec_eth_drivers.cdl: Only force serial console for eCos + configurations (using actual network package). + 2003-05-04 Gary Thomas <gary@mlbassoc.com> * src/if_fec.c:
--- a/packages/devs/eth/powerpc/fec/current/cdl/fec_eth_drivers.cdl +++ b/packages/devs/eth/powerpc/fec/current/cdl/fec_eth_drivers.cdl @@ -65,7 +65,7 @@ cdl_package CYGPKG_DEVS_ETH_POWERPC_FEC include_files ; # none _exported_ whatsoever # Debug I/O during network stack initialization is not reliable - requires { CYGPKG_NET_FORCE_SERIAL_CONSOLE == 1 } + requires { !CYGPKG_NET || CYGPKG_NET_FORCE_SERIAL_CONSOLE == 1 } description "Fast ethernet driver for PowerPC MPC8xxT boards." compile -library=libextras.a if_fec.c
