diff --git a/Makefile b/Makefile index 0f8704a802..0ddbc60e64 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ BOARD_DIR = configs/$(CONFIG_ARCH_BOARD) # (except for parts of FSDIRS). We will exclude FSDIRS # from the build if file descriptor support is disabled -NONFSDIRS = sched lib $(ARCH_SRC) mm examples/$(CONFIG_EXAMPLE) +NONFSDIRS = sched lib $(ARCH_SRC) mm examples/$(CONFIG_EXAMPLE) $(BOARD_DIR)/src FSDIRS = fs drivers ifeq ($(CONFIG_NET),y) diff --git a/drivers/net/dm90x0.c b/drivers/net/dm90x0.c index ac7e2126de..5a8675beec 100644 --- a/drivers/net/dm90x0.c +++ b/drivers/net/dm90x0.c @@ -52,25 +52,10 @@ #define CONFIG_DEBUG_VERBOSE 1 /* Only one hardware interface supported */ + #undef CONFIG_DM9X_NINTERFACES #define CONFIG_DM9X_NINTERFACES 1 -#warning "The following belong in the config file" -#define CONFIG_DM9X_STATS 1 - -/* CS4 is used for DM9000A Ethernet. Interrupt is provided via GIO6 - * which must be configured to interrupt on the rising edge. Bus - * width is 16-bits. - */ - -#define CONFIG_DM9X_BASE 0x60000300 -#define CONFIG_DM9X_IRQ 27 -#undef CONFIG_DM9X_BUSWIDTH8 -#define CONFIG_DM9X_BUSWIDTH16 1 -#undef CONFIG_DM9X_BUSWIDTH32 -#undef CONFIG_DM9X_CHECKSUM -#undef CONFIG_DM9X_ETRANS - #include #include #include diff --git a/netutils/Makefile b/netutils/Makefile index a975296f9d..6d8132f77d 100644 --- a/netutils/Makefile +++ b/netutils/Makefile @@ -105,6 +105,6 @@ clean: distclean: clean @rm -f Make.dep .depend @rm -f $(STRNG_CSRCS) $(STRNG_ASRCS) - @rm -f rm .strings make.str netutil-strings.h makestrings$(EXEEXT) + @rm -f rm .strings Make.str netutil-strings.h makestrings$(EXEEXT) -include Make.dep