Subject: missing pullups in sysinst for x68k/1.5
To: None <port-x68k@netbsd.org, releng@netbsd.org>
From: Hubert Feyrer <hubert.feyrer@informatik.fh-regensburg.de>
List: port-x68k
Date: 09/21/2000 00:08:20
A diff between 1.5 and -current sysinst showed the following changes, all
affecting x68k. Someone please look into them and pull up what's needed.


 - Hubert

diff -x *obj* -x *CVS* -rI \$NetBSD -u /usr/cvs/src-1.5/distrib/utils/sysinst/arch/x68k/Makefile /usr/cvs/src-current/distrib/utils/sysinst/arch/x68k/Makefile
--- /usr/cvs/src-1.5/distrib/utils/sysinst/arch/x68k/Makefile	Thu Aug 31 17:16:48 2000
+++ /usr/cvs/src-current/distrib/utils/sysinst/arch/x68k/Makefile	Wed Jul  5 18:07:49 2000
@@ -10,6 +10,8 @@
 	label.c target.c md.c
 
 md.o:	menu_defs.h msg_defs.h
+
+CPPFLAGS+=-DINET6
 
 .include "../../Makefile.inc"
 
diff -x *obj* -x *CVS* -rI \$NetBSD -u /usr/cvs/src-1.5/distrib/utils/sysinst/arch/x68k/md.c /usr/cvs/src-current/distrib/utils/sysinst/arch/x68k/md.c
--- /usr/cvs/src-1.5/distrib/utils/sysinst/arch/x68k/md.c	Tue Jun 27 23:42:42 2000
+++ /usr/cvs/src-current/distrib/utils/sysinst/arch/x68k/md.c	Wed Sep 20 20:24:12 2000
@@ -241,7 +241,7 @@
 	/* boot blocks ... */
 	msg_display(MSG_dobootblks, diskdev);
 	return run_prog(0, 1, NULL,
-	    "/usr/mdec/installboot -v /usr/mdec/sdboot /dev/r%sa",
+	    "/usr/mdec/installboot /usr/mdec/sdboot /dev/r%sa",
 	    diskdev);
 }
 
@@ -313,6 +313,7 @@
 void
 md_cleanup_install(void)
 {
+#if notyet			/* sed is too large for ramdisk */
 	char realfrom[STRSIZE];
 	char realto[STRSIZE];
 	char sedcmd[STRSIZE];
@@ -329,7 +330,7 @@
 	do_system(sedcmd);
 
 	run_prog(1, 0, NULL, "mv -f %s %s", realto, realfrom);
-
+#endif
 	run_prog(0, 0, NULL, "rm -f %s", target_expand("/sysinst"));
 	run_prog(0, 0, NULL, "rm -f %s", target_expand("/.termcap"));
 	run_prog(0, 0, NULL, "rm -f %s", target_expand("/.profile"));

-- 
Hubert Feyrer <hubert.feyrer@informatik.fh-regensburg.de>