NetBSD-Bugs archive

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

Re: port-sgimips/53583: sysinst in NetBSD/sgimips 8.0 doesn'tinstallbootloader



The following reply was made to PR port-sgimips/53583; it has been noted by GNATS.

From: Izumi Tsutsui <tsutsui%ceres.dti.ne.jp@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: martin%duskware.de@localhost, tsutsui%ceres.dti.ne.jp@localhost
Subject: Re: port-sgimips/53583: sysinst in NetBSD/sgimips 8.0 doesn'tinstallbootloader
Date: Sun, 9 Sep 2018 11:48:40 +0900

 >  Can you test -current? I'll commit a fix in a minute.
 
 Ah, upgrade has another (existing) problem.
 md_update() should not call md_post_newfs() (that is empty)
 but md_post_disklabel() (calls sgivol(8) tool):
 
 Index: md.c
 ===================================================================
 RCS file: /cvsroot/src/usr.sbin/sysinst/arch/sgimips/md.c,v
 retrieving revision 1.5
 diff -u -p -d -r1.5 md.c
 --- md.c	8 Sep 2018 18:10:35 -0000	1.5
 +++ md.c	9 Sep 2018 02:42:56 -0000
 @@ -220,7 +220,7 @@ md_pre_update(void)
  int
  md_update(void)
  {
 -	md_post_newfs();
 +	md_post_disklabel();
  	return 1;
  }
  
 


Home | Main Index | Thread Index | Old Index