Added fxp driver for the Intel Pro/100 series ethernet cards

Print PC in hex for easier debugging.
This commit is contained in:
Philip Homburg
2005-05-19 13:27:05 +00:00
parent 2ebe535030
commit 129b82d207
13 changed files with 3441 additions and 4 deletions
+3 -2
View File
@@ -54,12 +54,13 @@
#define FLOPPY (AT_WINI + ENABLE_FLOPPY) /* floppy disk */
#define PRINTER (FLOPPY + ENABLE_PRINTER) /* Centronics */
#define USR8139 (PRINTER + ENABLE_RTL8139) /* Realtek RTL8139 */
#define INIT_PROC_NR (USR8139 + 1) /* init -- goes multiuser */
#define FXP (USR8139 + ENABLE_FXP) /* Intel Pro/100 */
#define INIT_PROC_NR (FXP + 1) /* init -- goes multiuser */
/* Number of processes contained in the system image. */
#define IMAGE_SIZE (NR_TASKS + \
5 + ENABLE_AT_WINI + ENABLE_FLOPPY + \
ENABLE_PRINTER + ENABLE_RTL8139 + 1 )
ENABLE_PRINTER + ENABLE_RTL8139 + ENABLE_FXP + 1 )
/*===========================================================================*
+1
View File
@@ -95,6 +95,7 @@
#define ENABLE_NE2000 0 /* add Novell NE1000/NE2000 */
#define ENABLE_3C503 0 /* add 3Com Etherlink II (3c503) */
#define ENABLE_RTL8139 1 /* enable Realtek 8139 (rtl8139) */
#define ENABLE_FXP 1 /* enable Intel Pro/100 (fxp) */
/* Include or exclude backwards compatibility code. */
#define ENABLE_BINCOMPAT 0 /* for binaries using obsolete calls */