Update of /cvsroot/linux-vax/kernel-2.4/arch/vax
In directory usw-pr-cvs1:/tmp/cvs-serv28108/arch/vax
Modified Files:
Makefile config.in
Log Message:
updates to include/asm-vax and arch/vax for 2.4 compatibility.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile 2001/01/17 19:37:29 1.2
--- Makefile 2001/01/18 18:49:49 1.3
***************
*** 28,31 ****
--- 28,34 ----
CFLAGS := $(CFLAGS) $(CFLAGS_OPT) $(CFLAGS_NSR)
+ AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS)
+
+
# These flags are used later in _this_ makefile
LDFLAGS=-nostartfiles -N -nostdlib -Map test.map --cref -T vmlinux.lds
Index: config.in
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/config.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** config.in 2001/01/17 16:13:57 1.1
--- config.in 2001/01/18 18:49:49 1.2
***************
*** 22,25 ****
--- 22,29 ----
define_bool CONFIG_ELF_KERNEL y
define_bool CONFIG_EXTRA_ELF_COMPILER n
+ #
+ # if we allow this to be y, then we need to implement things
+ # like asm-vax/spinlock.h
+ define_bool CONFIG_SMP n
bool 'Networking support' CONFIG_NET
***************
*** 27,30 ****
--- 31,40 ----
bool 'BSD Process Accounting' CONFIG_BSD_PROCESS_ACCT
bool 'Sysctl support' CONFIG_SYSCTL
+
+ # ipc needs the proc fs
+ if [ "$CONFIG_SYSVIPC" = "y" ]; then
+ define_bool CONFIG_PROC_FS y
+ fi
+
endmenu
|