Module Name: src Committed By: jmcneill Date: Fri Aug 24 23:22:10 UTC 2018
Modified Files: src/sys/stand/efiboot: boot.c Log Message: Use absolute paths for default kernel filenames To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/stand/efiboot/boot.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/stand/efiboot/boot.c diff -u src/sys/stand/efiboot/boot.c:1.1 src/sys/stand/efiboot/boot.c:1.2 --- src/sys/stand/efiboot/boot.c:1.1 Fri Aug 24 02:01:06 2018 +++ src/sys/stand/efiboot/boot.c Fri Aug 24 23:22:10 2018 @@ -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 <non...@netbsd.org> @@ -40,9 +40,9 @@ extern const char bootprog_name[], bootp 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)