Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/sandpoint/stand/altboot sandpoint: Teach altboot to...



details:   https://anonhg.NetBSD.org/src/rev/866938505e63
branches:  trunk
changeset: 370637:866938505e63
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Thu Sep 22 14:27:02 2022 +0000

description:
sandpoint: Teach altboot to handle 9.99.100 modules.

Not tested, but something here will be necessary to make it work, and
the same change does work in x86 efiboot.

diffstat:

 sys/arch/sandpoint/stand/altboot/main.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 85aca40e944b -r 866938505e63 sys/arch/sandpoint/stand/altboot/main.c
--- a/sys/arch/sandpoint/stand/altboot/main.c   Thu Sep 22 14:02:45 2022 +0000
+++ b/sys/arch/sandpoint/stand/altboot/main.c   Thu Sep 22 14:27:02 2022 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.33 2021/03/23 07:21:40 rin Exp $ */
+/* $NetBSD: main.c,v 1.34 2022/09/22 14:27:02 riastradh Exp $ */
 
 /*-
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -516,7 +516,7 @@
                    "/stand/sandpoint/%d.%d.%d/modules",
                    netbsd_version / 100000000,
                    netbsd_version / 1000000 % 100,
-                   netbsd_version / 100 % 100);
+                   netbsd_version / 100 % 10000);
        }
         else if (netbsd_version != 0) {
                /* release */



Home | Main Index | Thread Index | Old Index