Skip to content

Commit 9c2ae43

Browse files
committed
respect to hnanoto
Signed-off-by: Slice <sergey.slice@gmail.com>
1 parent 5cf9d82 commit 9c2ae43

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Bootloader for macOS, Windows and Linux in UEFI and in legacy mode
3535

3636
### Developers:
3737

38-
* Slice, with help of Kabyl, usr-sse2, jadran, Blackosx, dmazar, STLVNUB, pcj, apianti, JrCs, pene, FrodoKenny, skoczy, ycr.ru, Oscar09, xsmile, SoThOr, rehabman, Download-Fritz, nms42, Sherlocks, Zenit432, cecekpawon, stinga11, TheRacerMaster, solstice, Micky1979, Needy, joevt, ErmaC, vit9696, ath, savvas, syscl, goodwin\_c, clovy, jief\_machak, chris1111, vector\_sigma, LAbyOne, Florin9doi.
38+
* Slice, with help of Kabyl, usr-sse2, jadran, Blackosx, dmazar, STLVNUB, pcj, apianti, JrCs, pene, FrodoKenny, skoczy, ycr.ru, Oscar09, xsmile, SoThOr, rehabman, Download-Fritz, nms42, Sherlocks, Zenit432, cecekpawon, stinga11, TheRacerMaster, solstice, Micky1979, Needy, joevt, ErmaC, vit9696, ath, savvas, syscl, goodwin\_c, clovy, jief\_machak, chris1111, vector\_sigma, LAbyOne, Florin9doi, Hnanoto.
3939

4040
### Source code credits to:
4141
Intel, Apple, Oracle, Chameleon, rEFIt and Xom, nanosvg.

rEFIt_UEFI/Platform/Injectors.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ SetPrivateVarProto(void)
408408
&mScreenInfo,
409409
// &gEfiOSInfoProtocolGuid,
410410
// &mEfiOSInfo,
411-
&gAppleGraphConfigProtocolGuid,
412-
&mGraphConfig,
411+
// &gAppleGraphConfigProtocolGuid,
412+
// &mGraphConfig,
413413
&gEfiKeyboardInfoProtocolGuid,
414414
&mKeyboardInfo,
415415
&gAppleUserInterfaceThemeProtocolGuid,

rEFIt_UEFI/Platform/cpu.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ void GetCPUProperties (void)
337337
case CPU_MODEL_RAPTORLAKE_B:
338338
case CPU_MODEL_METEORLAKE:
339339
msr = AsmReadMsr64(MSR_CORE_THREAD_COUNT); //0x35
340-
DBG("MSR 0x35 %16llX\n", msr);
340+
DBG("MSR 0x35 %16llX\n", msr); //Raptor 0000-0000-0014-001C
341341
gCPUStructure.Cores = (UINT8)bitfield((UINT32)msr, 31, 16);
342342
gCPUStructure.Threads = (UINT8)bitfield((UINT32)msr, 15, 0);
343343
break;
@@ -569,6 +569,7 @@ void GetCPUProperties (void)
569569
// MsgLog("MSR 0xE4 %08X\n", msr);
570570
//------------
571571
msr = AsmReadMsr64(MSR_PLATFORM_INFO); //0xCE
572+
// Raptor 0808-0838-F081-1500 Max = 0x15 Min = 0x08
572573
MsgLog("MSR 0xCE %08llX_%08llX\n", (msr>>32), msr & 0xFFFFFFFFull);
573574
gCPUStructure.MaxRatio = (UINT8)RShiftU64(msr, 8) & 0xff;
574575
gCPUStructure.MinRatio = (UINT8)MultU64x32(RShiftU64(msr, 40) & 0xff, 10);

rEFIt_UEFI/refit/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,6 +1176,7 @@ void LOADER_ENTRY::StartLoader()
11761176
// pos = setKextAtPos(&kextArray, "AppleMCEReporterDisabler.kext"_XS8, pos);
11771177
// pos = setKextAtPos(&kextArray, "AppleIntelI210Ethernet.kext"_XS8, pos);
11781178
// pos = setKextAtPos(&kextArray, "USBWakeFixup.kext"_XS8, pos);
1179+
pos = setKextAtPos(&kextArray, "USBInjectAll.kext"_XS8, pos);
11791180
// pos = setKextAtPos(&kextArray, "FeatureUnlock.kext"_XS8, pos);
11801181
// pos = setKextAtPos(&kextArray, "vecLib.kext"_XS8, pos);
11811182
// pos = setKextAtPos(&kextArray, "IOAudioFamily.kext"_XS8, pos);

rEFIt_UEFI/refit/menu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ void AboutRefit(void)
11481148
AboutMenu.AddMenuInfo_f(" stinga11, TheRacerMaster, solstice, SoThOr, DF");
11491149
AboutMenu.AddMenuInfo_f(" cecekpawon, Micky1979, Needy, joevt, ErmaC, vit9696");
11501150
AboutMenu.AddMenuInfo_f(" ath, savvas, syscl, goodwin_c, clovy, jief_machak");
1151-
AboutMenu.AddMenuInfo_f(" chris1111, vector_sigma, LAbyOne, Florin9doi");
1151+
AboutMenu.AddMenuInfo_f(" chris1111, vector_sigma, LAbyOne, Florin9doi, hnanoto");
11521152
AboutMenu.AddMenuInfo_f("Package credits:");
11531153
AboutMenu.AddMenuInfo_f(" Chameleon team, crazybirdy, JrCs, chris1111");
11541154
AboutMenu.AddMenuInfo_f("Credits also:");

0 commit comments

Comments
 (0)