summaryrefslogtreecommitdiffstats
path: root/bsd_eth_drivers/libbsdport/modini.c
diff options
context:
space:
mode:
authorcvs2git <rtems-devel@rtems.org>2009-04-23 00:37:08 +0000
committercvs2git <rtems-devel@rtems.org>2009-04-23 00:37:08 +0000
commit3f43db5361c6869c470af596679de2f02c3befe1 (patch)
treec4d7b028770989e35fe0261ac65ad47c73021fb4 /bsd_eth_drivers/libbsdport/modini.c
parent - importing original version I had sent Joel on 20090214 (diff)
downloadlibbsdport-3f43db5361c6869c470af596679de2f02c3befe1.tar.bz2
This commit was manufactured by cvs2svn to create tag 'vers_20090214'.vers_20090214
Sprout from base 2009-04-23 00:37:07 UTC Till Straumann <strauman@slac.stanford.edu> ' - importing original version I had sent Joel on 20090214' Delete: bootstrap bsd_eth_drivers/Makefile bsd_eth_drivers/if_em/LICENSE bsd_eth_drivers/if_em/Makefile bsd_eth_drivers/if_em/README.rtems bsd_eth_drivers/if_em/freebsd_cvs_status bsd_eth_drivers/if_le/Makefile bsd_eth_drivers/if_le/README.rtems bsd_eth_drivers/if_le/am7990.c bsd_eth_drivers/if_le/if_le_cbus.c bsd_eth_drivers/if_le/if_le_isa.c bsd_eth_drivers/if_le/if_le_lebuffer.c bsd_eth_drivers/if_le/if_le_ledma.c bsd_eth_drivers/if_le/lebuffer_sbus.c bsd_eth_drivers/if_pcn/Makefile bsd_eth_drivers/if_pcn/README.rtems bsd_eth_drivers/if_re/Makefile.am bsd_eth_drivers/if_re/if_re.c bsd_eth_drivers/if_re/if_rlreg.h bsd_eth_drivers/libbsdport/Makefile bsd_eth_drivers/libbsdport/modini.c m4/acinclude.m4 m4/multilib-fix.m4 m4/multilib-installdir.m4 m4/rtems-bsp-postlink.m4 m4/rtems-isml.m4 m4/rtems-ismultibsp.m4 m4/rtems-multilib.m4
Diffstat (limited to 'bsd_eth_drivers/libbsdport/modini.c')
-rw-r--r--bsd_eth_drivers/libbsdport/modini.c100
1 files changed, 0 insertions, 100 deletions
diff --git a/bsd_eth_drivers/libbsdport/modini.c b/bsd_eth_drivers/libbsdport/modini.c
deleted file mode 100644
index 3156c16..0000000
--- a/bsd_eth_drivers/libbsdport/modini.c
+++ /dev/null
@@ -1,100 +0,0 @@
-#include "devicet.h"
-#include <rtems/rtems_bsdnet.h>
-
-struct {
- struct device dev;
- struct {
- char space[4096];
- } softc;
-} thele = {
- {
- bushdr: {
-/* mvme5500 { x, x, x } */
-/* qemu */ { 0, 3, 0 }
- },
- type: DEV_TYPE_PCI,
- name: "le",
- nameunit: { 'l', 'e', '1', 0},
- unit: 1,
- },
- {
- { 0, }
- }
-};
-
-void *thelesoftc = &thele.softc;
-
-
-struct {
- struct device dev;
- struct {
- char space[4096];
- } softc;
-} theem = {
- {
- bushdr: {
-/* mvme5500 { 2, 0xa, 0 } */
-/* cpci */ { 7, 0, 0 }
- },
- type: DEV_TYPE_PCI,
- name: "em",
- nameunit: { 'e', 'm', '1', 0},
- unit: 1,
- },
- {
- { 0, }
- }
-};
-
-void *theemsoftc = &theem.softc;
-
-struct {
- struct device dev;
- struct {
- char space[4096];
- } softc;
-} thepcn = {
- {
- bushdr: {
-/* mvme5500 { x, 0xx, x } */
-/* cpci */ { 4, 6, 0 }
- },
- type: DEV_TYPE_PCI,
- name: "pcn",
- nameunit: { 'p', 'c', 'n', '1', 0},
- unit: 1,
- },
- {
- { 0, }
- }
-};
-
-void *thepcnsoftc = &thepcn.softc;
-
-extern driver_t rtems_em_driver;
-extern driver_t rtems_le_pci_driver;
-extern driver_t rtems_pcn_driver;
-
-driver_t *rtems_netdriver_table[] = {
- &rtems_em_driver,
- &rtems_le_pci_driver,
- &rtems_pcn_driver,
- 0
-};
-
-struct rtems_bsdnet_ifconfig pcncfg = {
- name: "pcn",
- rbuf_count:20,
- xbuf_count:3,
-};
-
-#ifdef DEBUG_MODULAR
-void
-_cexpModuleInitialize(void *unused)
-{
-extern void * rtems_callout_initialize();
-extern void * rtems_taskqueue_initialize();
- rtems_callout_initialize();
- rtems_taskqueue_initialize();
-}
-#endif