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
 };
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to