Author: wmb Date: Thu Jul 1 00:03:13 2010 New Revision: 1848 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/1848
Log: OLPC XO-1.5 - SMBIOS - changed OEM name from OLPC to QUANTACOMPUTER to make Windows activation happier.
Modified: cpu/x86/pc/olpc/via/smbios.fth
Modified: cpu/x86/pc/olpc/via/smbios.fth ============================================================================== --- cpu/x86/pc/olpc/via/smbios.fth Tue Jun 29 10:55:37 2010 (r1847) +++ cpu/x86/pc/olpc/via/smbios.fth Thu Jul 1 00:03:13 2010 (r1848) @@ -394,7 +394,7 @@ pad h# 30 -leading -trailing ;
-: +OLPC ( adr -- adr' ) " OLPC" +smbios$ ; +: +OEM ( adr -- adr' ) " QUANTACOMPUTER" +smbios$ ; : setup-smbios ( -- ) 0 to #smbios-tables 0 to portinfo# @@ -405,7 +405,7 @@ bios-info copy-smbios-table ( adr ) test-name$ +smbios$ test-version$ +smbios$ -\ +OLPC +\ +OEM \ fw-version$ +smbios$ fw-date$ +smbios$ end-smbios-table @@ -413,7 +413,7 @@ dup >r ( adr r: adr ) system-info copy-smbios-table ( adr r: adr ) get-uuid r> 8 + swap move ( adr ) - +OLPC + +OEM " XO" +smbios$ " 1.5" +smbios$ \ Version " SN" get-tag$ +smbios$ @@ -428,7 +428,7 @@
\ XXX might need to amend the security status field system-enclosure copy-smbios-table ( adr ) - +OLPC + +OEM " 1.5" +smbios$ \ Version end-smbios-table
openfirmware@openfirmware.info