summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorJennifer Averett <jennifer.averett@oarcorp.com>2012-05-09 13:55:00 -0500
committerJennifer Averett <jennifer.averett@oarcorp.com>2012-05-09 13:55:00 -0500
commitb95c98901d7f6d06664204aabcb1e097873626c1 (patch)
tree0b4fd1cc982b6d19e9a6b642cfcfc89c13b84084 /testsuite
parentAdded EtherExpress, tulip, and Broadcom Nics. (diff)
downloadrtems-libbsd-b95c98901d7f6d06664204aabcb1e097873626c1.tar.bz2
Added subr_unit.c needed for addtional Nics.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/link01/test.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/testsuite/link01/test.c b/testsuite/link01/test.c
index 4259a1a7..c34e1305 100644
--- a/testsuite/link01/test.c
+++ b/testsuite/link01/test.c
@@ -15,6 +15,13 @@
*/
extern int _bsd_re_pcimodule_sys_init();
extern int _bsd_fxp_pcimodule_sys_init();
+extern int _bsd_dc_pcimodule_sys_init();
+extern int _bsd_em_pcimodule_sys_init();
+extern int _bsd_igb_pcimodule_sys_init();
+extern int _bsd_bce_pcimodule_sys_init();
+extern int _bsd_lem_pcimodule_sys_init();
+extern int _bsd_bfe_pcimodule_sys_init();
+extern int _bsd_bge_pcimodule_sys_init();
rtems_task Init(
rtems_task_argument ignored
@@ -31,7 +38,16 @@ rtems_task Init(
printf("Nic Driver Addresses\n");
printf("RealTek %p\n", &_bsd_re_pcimodule_sys_init );
- printf("EtherExpress k %p\n", &_bsd_fxp_pcimodule_sys_init );
+ printf("EtherExpress %p\n", &_bsd_fxp_pcimodule_sys_init );
+ printf("DEC tulip %p\n", &_bsd_dc_pcimodule_sys_init );
+ printf("Broadcom BCM570XX/BCM571XX %p\n", &_bsd_bce_pcimodule_sys_init );
+ printf("Broadcom BCM4401 %p\n", &_bsd_bfe_pcimodule_sys_init );
+
+#if 0
+ printf("Broadcom BCM570x %p\n", &_bsd_bge_pcimodule_sys_init );
+ printf("E1000 XXX %p\n", &_bsd_igb_pcimodule_sys_init );
+ printf("E1000 XXX %p\n", &_bsd_em_pcimodule_sys_init );
+#endif
printf( "*** END OF LIBFREEBSD INITIALIZATION TEST ***\n" );
exit( 0 );