Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin/sysinst/arch/evbarm Fix RPI kernel file after FDTis...



details:   https://anonhg.NetBSD.org/src/rev/e1df2d213106
branches:  trunk
changeset: 828452:e1df2d213106
user:      skrll <skrll%NetBSD.org@localhost>
date:      Thu Dec 14 14:12:39 2017 +0000

description:
Fix RPI kernel file after FDTisation.

>From Harold Gutch

diffstat:

 usr.sbin/sysinst/arch/evbarm/md.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ddb67019c0cb -r e1df2d213106 usr.sbin/sysinst/arch/evbarm/md.c
--- a/usr.sbin/sysinst/arch/evbarm/md.c Thu Dec 14 11:45:40 2017 +0000
+++ b/usr.sbin/sysinst/arch/evbarm/md.c Thu Dec 14 14:12:39 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.c,v 1.4 2015/05/10 10:14:02 martin Exp $ */
+/*     $NetBSD: md.c,v 1.5 2017/12/14 14:12:39 skrll Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -209,7 +209,7 @@
        if (boardtype == BOARD_TYPE_NORMAL)
                return 0;
        if (boardtype == BOARD_TYPE_RPI) {
-               snprintf(kernelbin, 100, "%s/netbsd.bin", targetroot_mnt);
+               snprintf(kernelbin, 100, "%s/netbsd.img", targetroot_mnt);
                if (file_exists_p(kernelbin)) {
                        run_program(RUN_DISPLAY,
                            "/bin/cp %s /targetroot/boot/kernel.img", kernelbin);



Home | Main Index | Thread Index | Old Index