Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Sep 2014 04:51:01 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 1199443 for review
Message-ID:  <201409080451.s884p1xH026637@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help

http://p4web.freebsd.org/@@1199443?ac=10

Change 1199443 by jhb@jhb_jhbbsd on 2014/08/27 20:57:57

	Add machdep.bootmethod for i386/pc98.

Affected files ...

.. //depot/projects/smpng/sys/i386/i386/machdep.c#188 edit
.. //depot/projects/smpng/sys/pc98/pc98/machdep.c#65 edit

Differences ...

==== //depot/projects/smpng/sys/i386/i386/machdep.c#188 (text+ko) ====

@@ -1639,6 +1639,10 @@
 SYSCTL_ULONG(_machdep, OID_AUTO, guessed_bootdev,
 	CTLFLAG_RD, &bootdev, 0, "Maybe the Boot device (not in struct cdev *format)");
 
+static char bootmethod[16] = "BIOS";
+SYSCTL_STRING(_machdep, OID_AUTO, bootmethod, CTLFLAG_RD, bootmethod, 0,
+    "System firmware boot method");
+
 /*
  * Initialize 386 and configure to run kernel
  */

==== //depot/projects/smpng/sys/pc98/pc98/machdep.c#65 (text+ko) ====

@@ -1444,6 +1444,10 @@
 SYSCTL_ULONG(_machdep, OID_AUTO, guessed_bootdev,
 	CTLFLAG_RD, &bootdev, 0, "Maybe the Boot device (not in struct cdev *format)");
 
+static char bootmethod[16] = "BIOS";
+SYSCTL_STRING(_machdep, OID_AUTO, bootmethod, CTLFLAG_RD, bootmethod, 0,
+    "System firmware boot method");
+
 /*
  * Initialize 386 and configure to run kernel
  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409080451.s884p1xH026637>