Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/distrib/utils/sysinst/arch/x68k Pullup rev.1.7 from the...



details:   https://anonhg.NetBSD.org/src/rev/a181d6df5c2b
branches:  netbsd-1-5
changeset: 489517:a181d6df5c2b
user:      minoura <minoura%NetBSD.org@localhost>
date:      Thu Sep 21 14:06:29 2000 +0000

description:
Pullup rev.1.7 from the trunk; approved by thorpej.

> Module Name:  basesrc
> Committed By: minoura
> Date:         Sat Sep 16 13:12:10 UTC 2000

> Modified Files:
>       basesrc/distrib/utils/sysinst/arch/x68k: md.c

> Log Message:
> - Correct options for installboot.
> - sed is not in the ramdisk, since it is too large.

diffstat:

 distrib/utils/sysinst/arch/x68k/md.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (35 lines):

diff -r 710a921e000f -r a181d6df5c2b distrib/utils/sysinst/arch/x68k/md.c
--- a/distrib/utils/sysinst/arch/x68k/md.c      Thu Sep 21 14:05:29 2000 +0000
+++ b/distrib/utils/sysinst/arch/x68k/md.c      Thu Sep 21 14:06:29 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.c,v 1.5.4.1 2000/06/27 21:42:42 thorpej Exp $ */
+/*     $NetBSD: md.c,v 1.5.4.2 2000/09/21 14:06:29 minoura Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -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"));



Home | Main Index | Thread Index | Old Index