Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Jun 2014 05:27:38 +0000 (UTC)
From:      Peter Grehan <grehan@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r267949 - head/usr.sbin/bhyve
Message-ID:  <201406270527.s5R5RcLg055480@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: grehan
Date: Fri Jun 27 05:27:37 2014
New Revision: 267949
URL: http://svnweb.freebsd.org/changeset/base/267949

Log:
  Set the version and date to fixed fields rather than using
  preprocessor macros that don't allow reproducible builds.
  As a side-effect, the date string is now spec-compliant.
  
  root@bhyve:~ # dmidecode
  # dmidecode 2.12
  SMBIOS 2.4 present.
  12 structures occupying 514 bytes.
  Table at 0x000F101F.
  
  Handle 0x0001, DMI type 0, 24 bytes
  BIOS Information
          Vendor: BHYVE
          Version: 1.0
          Release Date: 03/14/2014
  
  Submitted by:	des (original version)
  Reviewed by:	tychon
  MFC after:	1 week

Modified:
  head/usr.sbin/bhyve/smbiostbl.c

Modified: head/usr.sbin/bhyve/smbiostbl.c
==============================================================================
--- head/usr.sbin/bhyve/smbiostbl.c	Fri Jun 27 05:15:53 2014	(r267948)
+++ head/usr.sbin/bhyve/smbiostbl.c	Fri Jun 27 05:27:37 2014	(r267949)
@@ -321,8 +321,8 @@ struct smbios_table_type0 smbios_type0_t
 
 const char *smbios_type0_strings[] = {
 	"BHYVE",	/* vendor string */
-	__TIME__,	/* bios version string */
-	__DATE__,	/* bios release date string */
+	"1.00",		/* bios version string */
+	"03/14/2014",	/* bios release date string */
 	NULL
 };
 



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