changeset 219:ae8511176102

Fix CDL dependencies for stand-alone/system operation.
author gthomas
date Fri, 14 Jun 2002 22:00:56 +0000
parents 6882949455d7
children e3ee4b61fbea
files packages/devs/eth/amd/pcnet/current/ChangeLog packages/devs/eth/amd/pcnet/current/src/if_pcnet.c packages/devs/eth/arm/flexanet/current/ChangeLog packages/devs/eth/arm/flexanet/current/src/if_flexanet.c packages/devs/eth/arm/ks32c5000/current/ChangeLog packages/devs/eth/arm/ks32c5000/current/src/ks5000_ether.c packages/devs/eth/cf/current/ChangeLog packages/devs/eth/cf/current/src/if_sc_lpe.c packages/devs/eth/cl/cs8900a/current/ChangeLog packages/devs/eth/cl/cs8900a/current/src/if_cs8900a.c packages/devs/eth/h8300/aki3068net/current/ChangeLog packages/devs/eth/h8300/aki3068net/current/src/if_aki3068net.c packages/devs/eth/intel/i82544/current/ChangeLog packages/devs/eth/intel/i82544/current/src/if_i82544.c packages/devs/eth/intel/i82559/current/ChangeLog packages/devs/eth/intel/i82559/current/src/if_i82559.c packages/devs/eth/mcf52xx/mcf5272/current/src/if_mcf5272.c packages/devs/eth/mips/atlas/current/ChangeLog packages/devs/eth/mips/atlas/current/src/if_atlas.c packages/devs/eth/mips/upd985xx/current/ChangeLog packages/devs/eth/mips/upd985xx/current/src/if_upd985xx.c packages/devs/eth/ns/dp83902a/current/ChangeLog packages/devs/eth/ns/dp83902a/current/src/if_dp83902a.c packages/devs/eth/powerpc/fec/current/ChangeLog packages/devs/eth/powerpc/fec/current/src/if_fec.c packages/devs/eth/powerpc/quicc/current/ChangeLog packages/devs/eth/powerpc/quicc/current/src/if_quicc.c packages/devs/eth/sh/etherc/current/ChangeLog packages/devs/eth/sh/etherc/current/src/if_etherc.c packages/devs/eth/smsc/lan91cxx/current/ChangeLog packages/devs/eth/smsc/lan91cxx/current/src/if_lan91cxx.c packages/devs/eth/via/rhine/current/ChangeLog packages/devs/eth/via/rhine/current/src/if_rhine.c
diffstat 33 files changed, 126 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/packages/devs/eth/amd/pcnet/current/ChangeLog
+++ b/packages/devs/eth/amd/pcnet/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_pcnet.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-02-19  Jesper Skov  <jskov@redhat.com>
 
 	* src/if_pcnet.c: Fix a typo. Skip TX handling when there's no
--- a/packages/devs/eth/amd/pcnet/current/src/if_pcnet.c
+++ b/packages/devs/eth/amd/pcnet/current/src/if_pcnet.c
@@ -69,6 +69,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_amd_pcnet.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/hal/hal_intr.h>
--- a/packages/devs/eth/arm/flexanet/current/ChangeLog
+++ b/packages/devs/eth/arm/flexanet/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_flexanet.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2001-12-10  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* cdl/flexanet_eth_drivers.cdl (CYGDAT_DEVS_ETH_ARM_FLEXANET_ESA):
--- a/packages/devs/eth/arm/flexanet/current/src/if_flexanet.c
+++ b/packages/devs/eth/arm/flexanet/current/src/if_flexanet.c
@@ -63,6 +63,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_arm_flexanet.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #if defined(CYGPKG_REDBOOT)
 #include <pkgconf/redboot.h>
 #endif
--- a/packages/devs/eth/arm/ks32c5000/current/ChangeLog
+++ b/packages/devs/eth/arm/ks32c5000/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/ks5000_ether.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-30  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/ks5000_ether.c (ks32c5000_eth_send): Conditionalize on
--- a/packages/devs/eth/arm/ks32c5000/current/src/ks5000_ether.c
+++ b/packages/devs/eth/arm/ks32c5000/current/src/ks5000_ether.c
@@ -53,6 +53,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_arm_ks32c5000.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #if defined(CYGPKG_IO)
 #include <pkgconf/io.h>
 #include <cyg/io/io.h>
--- a/packages/devs/eth/cf/current/ChangeLog
+++ b/packages/devs/eth/cf/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_sc_lpe.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-30  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_sc_lpe.c: Conditionalize use of thread on CYGPKG_KERNEL
--- a/packages/devs/eth/cf/current/src/if_sc_lpe.c
+++ b/packages/devs/eth/cf/current/src/if_sc_lpe.c
@@ -62,6 +62,8 @@
 //==========================================================================
 
 #include <pkgconf/system.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/infra/diag.h>
--- a/packages/devs/eth/cl/cs8900a/current/ChangeLog
+++ b/packages/devs/eth/cl/cs8900a/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_cs8900a.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-30  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* include/cs8900.h: Check for lost ints if we can - when kernel present.
--- a/packages/devs/eth/cl/cs8900a/current/src/if_cs8900a.c
+++ b/packages/devs/eth/cl/cs8900a/current/src/if_cs8900a.c
@@ -71,6 +71,7 @@
 #include <cyg/kernel/kapi.h>
 #endif
 #include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/hal/hal_intr.h>
--- a/packages/devs/eth/h8300/aki3068net/current/ChangeLog
+++ b/packages/devs/eth/h8300/aki3068net/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_aki3068net.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-28  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_aki3068net.c: Remove unused includes.
--- a/packages/devs/eth/h8300/aki3068net/current/src/if_aki3068net.c
+++ b/packages/devs/eth/h8300/aki3068net/current/src/if_aki3068net.c
@@ -62,6 +62,8 @@
 //==========================================================================
 
 #include <pkgconf/system.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/infra/diag.h>
--- a/packages/devs/eth/intel/i82544/current/ChangeLog
+++ b/packages/devs/eth/intel/i82544/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_i82544.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-02-25  Mark Salter  <msalter@redhat.com>
 
 	* src/if_i82544.c: Don't call PacketRxReady in standalone configuration
--- a/packages/devs/eth/intel/i82544/current/src/if_i82544.c
+++ b/packages/devs/eth/intel/i82544/current/src/if_i82544.c
@@ -150,6 +150,7 @@
 #include <pkgconf/io_eth_drivers.h>
 #endif
 #include <pkgconf/devs_eth_intel_i82544.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/infra/cyg_ass.h>
 #include <cyg/hal/hal_arch.h>
--- a/packages/devs/eth/intel/i82559/current/ChangeLog
+++ b/packages/devs/eth/intel/i82559/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_i82559.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-04-09  Hugo Tyson  <hmt@redhat.com>
 
 	* src/if_i82559.c (i82559_stop): Free up any pending transmissions
--- a/packages/devs/eth/intel/i82559/current/src/if_i82559.c
+++ b/packages/devs/eth/intel/i82559/current/src/if_i82559.c
@@ -146,6 +146,7 @@
 #include <pkgconf/io_eth_drivers.h>
 #endif
 #include <pkgconf/devs_eth_intel_i82559.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/infra/cyg_ass.h>
 #include <cyg/hal/hal_arch.h>
--- a/packages/devs/eth/mcf52xx/mcf5272/current/src/if_mcf5272.c
+++ b/packages/devs/eth/mcf52xx/mcf5272/current/src/if_mcf5272.c
@@ -41,9 +41,12 @@
 
 
 // Ethernet device driver for Fast Ethernet MCF5272_fec
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/hal/drv_api.h>
 #include <cyg/io/eth/netdev.h>
 #include <cyg/io/eth/eth_drv.h>
+
 #include <cyg/devs/eth/nbuf.h>
 #include <cyg/devs/eth/if_mcf5272.h>
 #include <cyg/devs/eth/if_mcf5272_private_data.h>
--- a/packages/devs/eth/mips/atlas/current/ChangeLog
+++ b/packages/devs/eth/mips/atlas/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_atlas.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2001-10-18  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_atlas.c: net_debug is no longer used.
--- a/packages/devs/eth/mips/atlas/current/src/if_atlas.c
+++ b/packages/devs/eth/mips/atlas/current/src/if_atlas.c
@@ -66,6 +66,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_mips_atlas.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #ifdef CYGPKG_NET
 #include <pkgconf/net.h>
 #include <cyg/kernel/kapi.h>
--- a/packages/devs/eth/mips/upd985xx/current/ChangeLog
+++ b/packages/devs/eth/mips/upd985xx/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_upd985xx.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2001-09-13  Hugo Tyson  <hmt@redhat.com>
 
 	* src/if_upd985xx.c (upd985xx_eth_upd985xx_init): Fake an ESA if
--- a/packages/devs/eth/mips/upd985xx/current/src/if_upd985xx.c
+++ b/packages/devs/eth/mips/upd985xx/current/src/if_upd985xx.c
@@ -64,6 +64,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_mips_upd985xx.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/infra/cyg_ass.h>
 #include <cyg/hal/hal_arch.h>
--- a/packages/devs/eth/ns/dp83902a/current/ChangeLog
+++ b/packages/devs/eth/ns/dp83902a/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_dp83902a.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-30  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_dp83902a.c: Use CYGINT_IO_ETH_INT_SUPPORT_REQUIRED instead
--- a/packages/devs/eth/ns/dp83902a/current/src/if_dp83902a.c
+++ b/packages/devs/eth/ns/dp83902a/current/src/if_dp83902a.c
@@ -65,13 +65,14 @@
 //==========================================================================
 
 #include <pkgconf/system.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/infra/diag.h>
 #include <cyg/hal/drv_api.h>
 #include <cyg/io/eth/eth_drv.h>
 #include <cyg/io/eth/netdev.h>
-#include <pkgconf/io_eth_drivers.h>
 
 #include <cyg/io/dp83902a.h>
 
--- a/packages/devs/eth/powerpc/fec/current/ChangeLog
+++ b/packages/devs/eth/powerpc/fec/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_fec.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-30  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_fec.c: Use CYGINT_IO_ETH_INT_SUPPORT_REQUIRED where
--- a/packages/devs/eth/powerpc/fec/current/src/if_fec.c
+++ b/packages/devs/eth/powerpc/fec/current/src/if_fec.c
@@ -55,6 +55,7 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_powerpc_fec.h>
+#include <pkgconf/io_eth_drivers.h>
 
 #ifdef CYGPKG_NET
 #include <pkgconf/net.h>
--- a/packages/devs/eth/powerpc/quicc/current/ChangeLog
+++ b/packages/devs/eth/powerpc/quicc/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_quicc.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-05-30  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_quicc.c: Use CYGINT_IO_ETH_INT_SUPPORT_REQUIRED where
--- a/packages/devs/eth/powerpc/quicc/current/src/if_quicc.c
+++ b/packages/devs/eth/powerpc/quicc/current/src/if_quicc.c
@@ -65,6 +65,7 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_powerpc_quicc.h>
+#include <pkgconf/io_eth_drivers.h>
 
 #ifdef CYGPKG_NET
 #include <pkgconf/net.h>
--- a/packages/devs/eth/sh/etherc/current/ChangeLog
+++ b/packages/devs/eth/sh/etherc/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_etherc.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2002-03-18  Jonathan Larmour  <jlarmour@redhat.com>
 
 	* src/if_etherc.c (etherc_RxEvent): ensure Receive Request is always
--- a/packages/devs/eth/sh/etherc/current/src/if_etherc.c
+++ b/packages/devs/eth/sh/etherc/current/src/if_etherc.c
@@ -55,6 +55,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_sh_etherc.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/hal/hal_intr.h>
--- a/packages/devs/eth/smsc/lan91cxx/current/ChangeLog
+++ b/packages/devs/eth/smsc/lan91cxx/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_lan91cxx.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2001-12-12  Hugo Tyson  <hmt@redhat.com>
 
 	* src/if_lan91cxx.c (lan91cxx_recv): If discarding data due to
--- a/packages/devs/eth/smsc/lan91cxx/current/src/if_lan91cxx.c
+++ b/packages/devs/eth/smsc/lan91cxx/current/src/if_lan91cxx.c
@@ -77,6 +77,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_smsc_lan91cxx.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/hal/hal_intr.h>
--- a/packages/devs/eth/via/rhine/current/ChangeLog
+++ b/packages/devs/eth/via/rhine/current/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-14  Gary Thomas  <gary@chez-thomas.org>
+
+	* src/if_rhine.c: 
+	Need to include <pkgconf/io_eth_drivers.h> for proper configuration
+	of stand-alone (polled) vs. system (interrupt driven) mode.
+
 2001-08-22  Gary Thomas  <gthomas@redhat.com>
 
 	* src/via_rhine.h: 
--- a/packages/devs/eth/via/rhine/current/src/if_rhine.c
+++ b/packages/devs/eth/via/rhine/current/src/if_rhine.c
@@ -67,6 +67,8 @@
 
 #include <pkgconf/system.h>
 #include <pkgconf/devs_eth_via_rhine.h>
+#include <pkgconf/io_eth_drivers.h>
+
 #include <cyg/infra/cyg_type.h>
 #include <cyg/hal/hal_arch.h>
 #include <cyg/hal/hal_intr.h>