Update of /cvsroot/linux-vax/kernel-2.4/arch/vax
In directory usw-pr-cvs1:/tmp/cvs-serv32129
Modified Files:
Makefile defconfig
Log Message:
New mm layer, start of signals implementation + other misc fixes
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Makefile 2001/06/24 19:34:56 1.8
+++ Makefile 2001/07/31 17:28:26 1.9
@@ -63,9 +63,11 @@
dd if=/dev/zero of=header.bin bs=512 count=1
mv -f header.bin vmlinux.SYS
cat vmlinux.bin >> vmlinux.SYS
+
# this is helpful for low level debuggery
-# rm -f vmlinux.lst
-# $(OBJDUMP) -D vmlinux > vmlinux.lst
+listfile:
+ rm -f vmlinux.lst
+ $(OBJDUMP) -D vmlinux > vmlinux.lst
# This target will only re-compile stuff that's changed in arch/vax
mopbootx: linkonly
Index: defconfig
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/defconfig,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- defconfig 2001/02/22 22:15:41 1.6
+++ defconfig 2001/07/31 17:28:26 1.7
@@ -218,8 +218,8 @@
#
# Kernel hacking
-#
-CONFIG_DEBUG_MALLOC=y
+# This appears to be missing bits...
+#CONFIG_DEBUG_MALLOC=n
CONFIG_MAGIC_SYSRQ=y
CONFIG_PROFILE=y
CONFIG_PROFILE_SHIFT=2
|