Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
src: Pull up following revision(s) (requested by snj in ticket #...
details: https://anonhg.NetBSD.org/src/rev/396280c8460c
branches: netbsd-8
changeset: 318101:396280c8460c
user: martin <martin%NetBSD.org@localhost>
date: Thu Apr 12 13:54:11 2018 +0000
description:
Pull up following revision(s) (requested by snj in ticket #743):
usr.sbin/sysinst/arch/i386/md.c: revision 1.7
Clear the screen after running installboot. If we don't, there will
be a leftover line saying "Status: Finished" at the top of the next
screen, along with some random punctuation in the left and right
margins. Inspired by ../landisk/md.c 1.3.
diffstat:
usr.sbin/sysinst/arch/i386/md.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (23 lines):
diff -r 792e91c2cd1c -r 396280c8460c usr.sbin/sysinst/arch/i386/md.c
--- a/usr.sbin/sysinst/arch/i386/md.c Thu Apr 12 13:51:40 2018 +0000
+++ b/usr.sbin/sysinst/arch/i386/md.c Thu Apr 12 13:54:11 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: md.c,v 1.6 2015/05/10 10:14:02 martin Exp $ */
+/* $NetBSD: md.c,v 1.6.8.1 2018/04/12 13:54:11 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -347,11 +347,11 @@
"console=%s,speed=%u", consoles[boottype.bp_consdev],
boottype.bp_conspeed);
if (pm->isspecial) {
- ret = run_program(RUN_DISPLAY | RUN_NO_CLEAR,
+ ret = run_program(RUN_DISPLAY,
"/usr/sbin/installboot -o %s /dev/r%s %s",
boot_options, pm->diskdev, bootxx_filename);
} else {
- ret = run_program(RUN_DISPLAY | RUN_NO_CLEAR,
+ ret = run_program(RUN_DISPLAY,
"/usr/sbin/installboot -o %s /dev/r%s%c %s",
boot_options, pm->diskdev, 'a' + pm->rootpart,
bootxx_filename);
Home |
Main Index |
Thread Index |
Old Index