Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/sgimips/stand/common libsa's iso9660 routines don't...
details: https://anonhg.NetBSD.org/src/rev/370b07810f0a
branches: trunk
changeset: 555295:370b07810f0a
user: sekiya <sekiya%NetBSD.org@localhost>
date: Thu Nov 13 14:31:54 2003 +0000
description:
libsa's iso9660 routines don't handle rockridge. Alter installation kernel
fixup routines accordingly -- we'll use "ip2x" and "ip3x" for install kernel
names rather than "netbsd-INSTALL32_IPxy".
diffstat:
sys/arch/sgimips/stand/common/boot.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (21 lines):
diff -r 2e663ac70548 -r 370b07810f0a sys/arch/sgimips/stand/common/boot.c
--- a/sys/arch/sgimips/stand/common/boot.c Thu Nov 13 14:07:38 2003 +0000
+++ b/sys/arch/sgimips/stand/common/boot.c Thu Nov 13 14:31:54 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: boot.c,v 1.7 2003/11/13 08:06:25 sekiya Exp $ */
+/* $NetBSD: boot.c,v 1.8 2003/11/13 14:31:54 sekiya Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -173,9 +173,9 @@
i = (strrchr(bootfile, ')') - bootfile);
bootfile[i-1] = '0';
if (strstr(bootfile, "ip3x"))
- sprintf( (strrchr(bootfile, ')') + 1), "netbsd-INSTALL32_IP3x");
+ sprintf( (strrchr(bootfile, ')') + 1), "ip3x");
else
- sprintf( (strrchr(bootfile, ')') + 1), "netbsd-INSTALL32_IP2x");
+ sprintf( (strrchr(bootfile, ')') + 1), "ip2x");
if ( (loadfile(bootfile, marks, LOAD_KERNEL)) >= 0 )
goto finish;
}
Home |
Main Index |
Thread Index |
Old Index