Jump to content

onemanosx

Members
  • Posts

    1,541
  • Joined

  • Last visited

Everything posted by onemanosx

  1. You can start by uploading new send_me files at the correct topic here https://Olarila.com/forum/viewtopic.php?f=28&t=7160
  2. Wrong thread post. Delete and make new post for your issue.
  3. https://Olarila.com/forum/viewtopic.php?f=28&t=7160
  4. Are you asking about PCI info for the network card or why the network card cannot see any network/ connect?
  5. If you used Olarila image, there is an app called "SSDT Automator". Run it and place generated ssdt into clover/acpi/patched
  6. I disabled the plugin type when I use pike's ssdt + cpufriend.kext Yeah, I figured someone gotta do a detailed guide
  7. [ref]agussuratno[/ref], You're welcome!
  8. Then follow through the guide for iospecifiers larger than 0x2f
  9. wont iospecifiers be tagged to your hardware?
  10. [ref]vinvilli[/ref], You're welcome!
  11. Can you describe in more detail of your problem? I dont understand what you really meant by "mojave installs but won't show hard drive on desktop". Show picture or video. I am new too
  12. do you have apfsloader driver chosen when installing clover? If not, install it.
  13. [ref]mathewgx[/ref], This is the code for my ssdt. I dont need xcrs or xsta in clover. Let's see if you can recreate yours DefinitionBlock ("", "SSDT", 2, "ONEM", "i2cc", 0x00000000) { External (_SB_.PCI0.I2C1, DeviceObj) // (from opcode) Scope (\_SB.PCI0.I2C1) { Name (_STA, Zero) // _STA: Status } Scope (\_SB.PCI0.I2C1) { Device (TPD1) { Name (_HID, "SYN1B7F") // _HID: Hardware ID Name (SBFG, ResourceTemplate () { GpioInt (Level, ActiveLow, ExclusiveAndWake, PullDefault, 0x0000, "\\_SB.PCI0.GPI0", 0x00, ResourceConsumer, , ) { // Pin list 0x1B00 } }) Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings { Name (SBFB, ResourceTemplate () { I2cSerialBusV2 (0x002C, ControllerInitiated, 0x00061A80, AddressingMode7Bit, "\\_SB.PCI0.I2C1", 0x00, ResourceConsumer, , Exclusive, ) }) Return (ConcatenateResTemplate (SBFB, SBFG)) } } } }
  14. No issues with my 8gb RAM setup for the usual daily mails, surfing and youtube.
  15. Getting the used bit integers is the easiest part of the guide. Show some effort by posting your findings here.
  16. For SSDT to function as an "override" to DSDT, it is required for return zero.
  17. [ref]MaLd0n[/ref], _PLD errors I cannot solve
  18. Upload send_me files. http://Olarila.com/files/Utils/RunMe.app.zip
  19. You can re-use your ssdt-I2xx.aml for that.
  20. Some of us might prefer to use injector kext instead of SSDT. This is how its done. Creating injector kext with CPUFriend script 1. Type ./ResourceConverter.sh --kext 2. Drag ssdt.aml from ~/Library/ssdtPRgen folder to terminal and Press Enter 3. Your CPUFriendDataProvider.kext will be generated and can be found at ~/Desktop/CPUFriend-master/Tools folder 4. Place both CPUFriendDataProvider.kext and CPUFriend.kext in clover/kext/others +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Unknown CPU What if I have a CPU that is unknown and not in the .cfg list? Can I still generate ssdt using Pike's script? Yes. And this is what we have to do. 1. Determine CPU details by going through https://ark.intel.com and fill in the details for an i5-8600 as an example. Code Name: Coffee Lake Processor Number: i5-8600 Max TDP: 65 Low Frequency Mode: 3100 Clock Speed: 800 Max Turbo Frequency: 4300 No. of Cores: 6 No. of Threads: 6 The format to be input in Coffee Lake. cfg and User Defined.cfg will look like this i5-8600,65,800,3100,4300,6,6
  21. [ref]broadw3ll[/ref], See my guide here https://Olarila.com/forum/viewtopic.php?f=28&t=8268
  22. Update: Creating injector kext with CPUFriend script What is CPUFriend? https://github.com/acidanthera/CPUFriend https://www.insanelymac.com/forum/topic/335162-cpufriend/ Step A. Creating SSDT Using Pike's Script 1. Go to Pike’s Github and download ZIP master https://github.com/Piker-Alpha/ssdtPRGen.sh 2. Extract “ssdtPRGen.” folder and copy and paste to /Users/YourUsername/Library 4. Download attached “Data” folder and replace existing Data folder in “/ssdtPRGen” Data.zip 5. Open “User Defined.cfg” file in “ssdtPRGen/Data” folder 6. Open Coffee Lake.cfg file and look for your processor type ( in this example, I will be using “i5-8600”) 7. Paste your CPU details in User Defined.cfg and save file Note: If you plan to use a different clock speed frequency (mostly for energy saving) or base/turbo frequency, here is where you make the desired frequency changes. The example in the screenshot above is setting using clock speed of 500 instead of OEM 800. 8. Open Terminal 9. Type cd ~/Library/ssdtPRGen/ Hit Enter 10. Type CPU format as such (for i5-8600) : ./ssdtPRGen.sh -p 'i5-8600' -f 3100 -turbo 4300 11. Press Enter 12. Let the script run and when script asks Do you want to open ssdt.dsl (y/n)? Just return N. 13. Your ssdt.aml and ssdt.dsl can be found in ~/Library/ssdtPRgen folder Step B: Generating SSDT data using CPUFriend script 1. Download CPUFriend master zip https://github.com/acidanthera/CPUFriend While you’re there, download CPUFriend kext from the release tab and place the kext in Clover/Kext/Other 2. Extract CPUFriend-master folder to desktop 3. Open terminal 4. Type cd ~/Desktop/CPUFriend-master/Tools Hit Enter 5. Type ./ResourceConverter.sh --acpi Then drag ssdt.aml from ~/Library/ssdtPRgen folder into terminal window and press ENTER 6. Your ssdt-data.dsl result can be found at ~/Desktop/CPUFriend-master/Tools folder Step ? Combining CPUFriend data into Pike's SSDT 1. Open the ssdt-data.dsl and copy the whole scope of “cf-frequency-data” 2. Go to ~/Library/ssdtPRgen folder and open the file ssdt.aml 3. Find the _DSM section 4. Paste “cf-frequency-data’ like shown in the screenshot. Also, delete 0x02 in the Return line leaving just the brackets or else your will not be able to compile. 5. You can save the ssdt.aml and copy to Clover/acpi/patched. Reboot and enjoy! Note: If you do not find the cf-frequency-data as shown like in the IOReg screenshot below, it means the SSDT is not injecting properly. You might want to consider creating CPUFriendDataProvider kext instead. Data.zip Credits: https://www.elitemacx86.com/threads/guide-how-to-generate-ssdt-for-coffee-lake-cpu.98/ Pike
  23. [ref]sarakabir[/ref], Check for battery fix. sarakabir BATFIX - DSDT.aml.zip Download kext here https://github.com/RehabMan/OS-X-ACPI-Battery-Driver/releases
  24. [ref]bilal1947[/ref], Run the app and attach files on desktop
×
×
  • Create New...