Source-Changes-HG archive

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

[src/trunk]: src/sys/stand/efiboot Use absolute paths for default kernel file...



details:   https://anonhg.NetBSD.org/src/rev/40453a280a66
branches:  trunk
changeset: 834712:40453a280a66
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Fri Aug 24 23:22:10 2018 +0000

description:
Use absolute paths for default kernel filenames

diffstat:

 sys/stand/efiboot/boot.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (22 lines):

diff -r 43b395b1a8d0 -r 40453a280a66 sys/stand/efiboot/boot.c
--- a/sys/stand/efiboot/boot.c  Fri Aug 24 23:21:56 2018 +0000
+++ b/sys/stand/efiboot/boot.c  Fri Aug 24 23:22:10 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: boot.c,v 1.1 2018/08/24 02:01:06 jmcneill Exp $        */
+/*     $NetBSD: boot.c,v 1.2 2018/08/24 23:22:10 jmcneill Exp $        */
 
 /*-
  * Copyright (c) 2016 Kimihiro Nonaka <nonaka%netbsd.org@localhost>
@@ -40,9 +40,9 @@
 extern char twiddle_toggle;
 
 static const char * const names[][2] = {
-       { "netbsd", "netbsd.gz" },
-       { "onetbsd", "onetbsd.gz" },
-       { "netbsd.old", "netbsd.old.gz" },
+       { "\\netbsd", "\\netbsd.gz" },
+       { "\\onetbsd", "\\onetbsd.gz" },
+       { "\\netbsd.old", "\\netbsd.old.gz" },
 };
 
 #define NUMNAMES       __arraycount(names)



Home | Main Index | Thread Index | Old Index