diff options
author | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-05 03:40:01 +0000 |
---|---|---|
committer | xli24 <xli24@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-05 03:40:01 +0000 |
commit | a7e39a828e5440498da3de489ad6cf48fcd21858 (patch) | |
tree | bfd874059a542f10bd8304a185e3de2bd482dc4f | |
parent | 6a138c666a94ea0ba709540eb2623d5866537e32 (diff) | |
download | edk2-a7e39a828e5440498da3de489ad6cf48fcd21858.zip edk2-a7e39a828e5440498da3de489ad6cf48fcd21858.tar.gz edk2-a7e39a828e5440498da3de489ad6cf48fcd21858.tar.bz2 |
Add enumeration type for EfiProcessorFamilyIntelPentiumM, EfiProcessorFamilyIntelCeleronD, EfiProcessorFamilyIntelPentiumD, EfiProcessorFamilyIntelPentiumEx for processor family data.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2048 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdePkg/Include/Common/DataHubRecords.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MdePkg/Include/Common/DataHubRecords.h b/MdePkg/Include/Common/DataHubRecords.h index e03a383..9a45a63 100644 --- a/MdePkg/Include/Common/DataHubRecords.h +++ b/MdePkg/Include/Common/DataHubRecords.h @@ -305,6 +305,10 @@ typedef enum { EfiProcessorFamilyIntelXeonMP = 0xB5,
EfiProcessorFamilyAMDAthlonXP = 0xB6,
EfiProcessorFamilyAMDAthlonMP = 0xB7,
+ EfiProcessorFamilyIntelPentiumM = 0xB9,
+ EfiProcessorFamilyIntelCeleronD = 0xBA,
+ EfiProcessorFamilyIntelPentiumD = 0xBB,
+ EfiProcessorFamilyIntelPentiumEx = 0xBC,
EfiProcessorFamilyIBM390 = 0xC8,
EfiProcessorFamilyG4 = 0xC9,
EfiProcessorFamilyG5 = 0xCA,
|