PERFORCE change 1199443 for review
John Baldwin
jhb at FreeBSD.org
Mon Sep 8 04:52:29 UTC 2014
http://p4web.freebsd.org/@@1199443?ac=10
Change 1199443 by jhb at 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
*/
More information about the p4-projects
mailing list