|
 2.1.71
 Makefile
diff -u --recursive --new-file v2.1.70/linux/Makefile linux/Makefile
--- v2.1.70/linux/Makefile Tue Dec 2 16:45:17 1997
+++ linux/Makefile Wed Dec 3 17:14:04 1997
@@ -1,6 +1,6 @@
VERSION = 2
PATCHLEVEL = 1
-SUBLEVEL = 70
+SUBLEVEL = 71
ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/)
@@ -133,7 +133,7 @@
DRIVERS := $(DRIVERS) drivers/scsi/scsi.a
endif
-ifeq ($(CONFIG_CDROM),y)
+ifneq ($(CONFIG_CD_NO_IDESCSI)$(CONFIG_BLK_DEV_IDECD)$(CONFIG_BLK_DEV_SR),)
DRIVERS := $(DRIVERS) drivers/cdrom/cdrom.a
endif
@@ -310,6 +310,7 @@
if [ -f FS_MODULES ]; then inst_mod FS_MODULES fs; fi; \
if [ -f NLS_MODULES ]; then inst_mod NLS_MODULES fs; fi; \
if [ -f CDROM_MODULES ]; then inst_mod CDROM_MODULES cdrom; fi; \
+ if [ -f HAM_MODULES ]; then inst_mod HAM_MODULES net; fi; \
\
ls *.o > .allmods; \
echo $$MODULES | tr ' ' '\n' | sort | comm -23 .allmods - > .misc; \
|