Jump to content

TheRacerMaster

Members
  • Posts

    886
  • Joined

  • Last visited

  • Days Won

    2

TheRacerMaster last won the day on December 12 2015

TheRacerMaster had the most liked content!

Reputation

440 Excellent

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Extracted from InstallESD.dmg/Packages/Core.pkg: kernel.zip
  2. Have you tried setting 4D1EDE05-38C7-4A6A-9CC6-4BCCA8B38C14:UIScale to 2?
  3. brcmfx-driver=1 should force AirPortBrcm4360. You may also want to try setting brcmfx-country=#a with the new drivers.
  4. Yes, the kext is merely packed in a firmware volume so Ozmosis can load it without depending on the ESP.
  5. They're mistaken; they think kexts injected from firmware volumes (supported by Ozmosis) means they must have been converted to EFI drivers (no, lol).
  6. Fix for 32-bit builds: diff a/rEFIt_UEFI/Platform/Settings.c b/rEFIt_UEFI/Platform/Settings.c --- a/rEFIt_UEFI/Platform/Settings.c +++ b/rEFIt_UEFI/Platform/Settings.c @@ -7586,7 +7586,10 @@ SetDevices (LOADER_ENTRY *Entry) MsgLog (" Read default Framebuffer LEVX: 0x%x\n", FBLEVX); } - LEVD = (UINT64)FBLEVX * (UINT64)LEVX / 0xFFFFLL; + LEVD = DivU64x32 ( + MultU64x32 (FBLEVX, LEVX), + 0xFFFF + ); MsgLog (" Write new LEVD: 0x%x\n", LEVD); /*Status = */PciIo->Mem.Write(
  7. Clover sets a similar property (see IODeviceTree:/efi/platform/OEMBoard).
  8. Remove EFILoginHiDPI (don't set it at all) and set UIScale to 2.
  9. Using a SMBIOS with Touch ID? NoTouchID should fix this: https://github.com/al3xtjames/NoTouchID
  10. -xcpm does nothing on 10.13+ (this is why you need KernelXCPM - it patches the kernel to enable XCPM support on Ivy Bridge).
  11. It's unrelated. I scraped my own data from board resellers (dvwarehouse/PowerBook Medic/TheBookYard/etc) for board EEE codes. Regardless, MacGen is deprecated; use macserial instead.
  12. CPUFriend's purpose is for modifying X86PlatformPlugin.kext's resources (useful for certain scenarios, like adding frequency vectors when using XCPM on unsupported board IDs, or lowering LFM to the minimum on models that use HWP). If you don't need to modify X86PlatformPlugin, you don't need CPUFriend.
  13. It's parsed by WhateverGreen (it overrides NVDARequiredOS with the current OS version when set).
  14. The last Mac to use Atheros WiFi was iMac12,2, which is Sandy Bridge. Since Sandy Bridge support is dropped... you get the idea. 10.13.5's AirPortAtheros40 should work fine (for now).
×
×
  • Create New...