Chameleon

Chameleon Commit Details

Date:2015-11-02 15:38:59 (8 years 4 months ago)
Author:ErmaC
Commit:2788
Parents: 2787
Message:General typo.
Changes:
M/branches/ErmaC/Enoch/i386/libsaio/bootstruct.h
M/branches/ErmaC/Enoch/i386/libsaio/saio_types.h
M/branches/ErmaC/Enoch/i386/libsaio/bootstruct.c
M/branches/ErmaC/Enoch/i386/libsaio/efi.h
M/branches/ErmaC/Enoch/i386/libsaio/platform.h

File differences

branches/ErmaC/Enoch/i386/libsaio/bootstruct.c
150150
151151
152152
153
154
153
154
155155
156156
157157
void *addr;
int i;
EfiMemoryRange *memoryMap= NULL;
MemoryRange *range= NULL;
EfiMemoryRange*memoryMap= NULL;
MemoryRange*range= NULL;
int memoryMapCount = bootInfo->memoryMapCount;
if (memoryMapCount == 0)
branches/ErmaC/Enoch/i386/libsaio/efi.h
159159
160160
161161
162
163
164
165
166
167
168
169
162170
163171
164172
// ACPI 3.0 Table GUID in EFI System Table
#define EFI_ACPI_30_TABLE_GUID EFI_ACPI_20_TABLE_GUID
// The EFI variable GUID for the 'FirmwareFeatures' and friends. Also known as AppleFirmwareVariableGuid in other sources.
#define APPLE_FIRMWARE_VARIABLE_GUID \
{0x4D1EDE05, 0x38C7, 0x4A6A, {0x9C, 0xC6, 0x4B, 0xCC, 0xA8, 0xB3, 0x8C, 0x14 } }
// The EFI variable GUID for the 'boot-args' variable and others. Also known as AppleNVRAMVariableGuid in other sources.
#define APPLE_NVRAM_VARIABLE_GUID \
{0x7C436110, 0xAB2A, 0x4BBB, {0xA8, 0x80, 0xFE, 0x41, 0x99, 0x5C, 0x9F, 0x82 } }
typedef union {
EFI_GUID Guid;
EFI_UINT8 Raw[16];
branches/ErmaC/Enoch/i386/libsaio/bootstruct.h
135135
136136
137137
138
138139
139140
140141
config_file_t smbiosConfig;// smbios.plist
config_file_t helperConfig;// boot helper partition's boot.plist
config_file_t ramdiskConfig;// RAMDisk.plist
config_file_t kernelConfig;// kernel.plist
bool memDetect;
} PrivateBootInfo_t;
branches/ErmaC/Enoch/i386/libsaio/platform.h
6565
6666
6767
68
68
6969
70
70
7171
7272
7373
7474
75
7576
76
77
77
78
79
80
7881
7982
8083
//#define CPUID_MODEL_HASWELL_H0x??// Haswell H
#define CPUID_MODEL_HASWELL_ULT0x45// Haswell ULT, 4th gen Core, Xeon E3-12xx v3 C8/C9/C10
#define CPUID_MODEL_HASWELL_ULX0x46// Crystal Well, 4th gen Core, Xeon E3-12xx v3
#define CPUID_MODEL_BROADWELL_HQ0x47 // Broadwell BDW
#define CPUID_MODEL_BROADWELL_HQ0x47// Broadwell BDW
#define CPUID_MODEL_MERRIFIELD0x4A// Future Atom E3000, Z3000 silvermont / atom (Marrifield)
#define CPUID_MODEL_BRASWELL 0x4C // Atom (Braswell)
#define CPUID_MODEL_BRASWELL0x4C// Atom (Braswell)
#define CPUID_MODEL_AVOTON0x4D// Silvermont/Avoton Atom C2000 **AVN
#define CPUID_MODEL_SKYLAKE0x4E// Future Core **SKL
#define CPUID_MODEL_BRODWELL_SVR0x4F// Broadwell Server **BDX
#define CPUID_MODEL_BRODWELL_MSVR0x56// Broadwell Micro Server, Future Xeon **BDX-DE
//#define CPUID_MODEL_KNIGHT0x57
#define CPUID_MODEL_ANNIDALE0x5A// Silvermont, Future Atom E3000, Z3000 (Annidale)
#define CPUID_MODEL_VALLEYVIEW 0x5D// Silvermont, Future Atom E3000, Z3000
#define CPUID_MODEL_SKYLAKE_S 0x5E // Skylake **SKL
//#define CPUID_MODEL_GOLDMONT0x5C
#define CPUID_MODEL_VALLEYVIEW0x5D// Silvermont, Future Atom E3000, Z3000
#define CPUID_MODEL_SKYLAKE_S0x5E// Skylake **SKL
//#define CPUID_MODEL_CANNONLAKE0x66
/* CPUID Vendor */
#defineCPUID_VID_INTEL"GenuineIntel"
branches/ErmaC/Enoch/i386/libsaio/saio_types.h
212212
213213
214214
215
215216
216217
217218
boolvisible;/* will shown in the device list */
charOSVersion[OSVERSTRLEN]; /* Null terminated string from '/System/Library/CoreServices/SystemVersion.plist/ProductVersion' e.g. "10.10.10" - hope will not reach e.g. 111.222.333 soon:) If so, OSVERSTRLEN 9 change to 12 */
charOSFullVer[OSVERSTRLEN]; /* Null terminated string from '/System/Library/CoreServices/SystemVersion.plist/ProductVersion' */
charOSBuildVer[OSVERSTRLEN];/* Null terminated string from '/System/Library/CoreServices/SystemVersion.plist/ProductBuildVersion' */
boolOSisServer;/* 1 = OS X server , 0 = OS X client */
boolOSisInstaller;/* 1 = OS X Install partition / recovery partition , 0 = OS X Install */

Archive Download the corresponding diff file

Revision: 2788