zoliky
Members-
Posts
24 -
Joined
-
Last visited
Reputation
0 NeutralHackintosh Specs
-
CPU
i5
-
MOTHERBOARD
HP 4540s
-
GPU
Intel HD3000
-
Thank you! Do I need to have that "Kernel Flags" entry in the file? It is empty.
-
I have these in org.chameleon.Boot.plist <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>Kernel</key> <string>mach_kernel</string> <key>Kernel Flags</key> <string></string> <key>Default Partition</key> <string>hd(0,2)</string> <key>EthernetBuiltIn</key> <string>Yes</string> <key>Quiet Boot</key> <string>Yes</string> <key>DropSSDT</key> <string>Yes</string> </dict> </plist> Does the order matter? For example, do I need to insert "Default Partition" at the very beginning (before Kernel) ? or doesn't matter? Thank you. Your suggestion would be greatly appreciated!
-
Here's my RAW DSDT, so you can make an idea what I'm talking about. Any help would be greatly appreciated. dsdt.aml.tar.gz
-
Hello, I compiled the latest version of iasl with AcpicaTool I try to decompile the raw DSDT generated with Ubuntu: ./iasl -d dsdt.aml and I get this (only with the new iasl 20130328-64 version!) It gives me the dsdt.dsl file, but the weird thing is that iasl insert that warning into the header: Is there any way to skip that warning/check or the only fix is to move back to older iasl? No problems with the older 20130117-64.
-
Wow. Thank you! That is greatly appreciated. May I ask one more thing? Are GeneratePStates and GenerateCStates disabled by default? In other words, are they set to "No" by default in chameleon?
-
Nice guide. Is GraphicsEnabler enabled by default in latest chameleon-trunk? thank you!
-
Thank you, your time is greatly appreciated.
-
Hi, Is there a way to check if SMBUS is working and patch has been applied correctly? Please tell me what's the difference between this patch: Device (BUS0) { Name (_CID, "smbus") // _CID: Compatible ID Name (_ADR, Zero) // _ADR: Address Device (DVL0) { Name (_ADR, 0x57) // _ADR: Address Name (_CID, "diagsvault") // _CID: Compatible ID } } and this one: Device (BUS0) { Name (_CID, "smbus") // _CID: Compatible ID Name (_ADR, Zero) // _ADR: Address Device (DVL0) { Name (_ADR, 0x57) // _ADR: Address Name (_CID, "diagsvault") // _CID: Compatible ID Method (_DSM, 4, NotSerialized) // _DSM: Device-Specific Method { Store (Package (0x02) { "address", 0x57 }, Local0) DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0)) Return (Local0) } } } Is there any reason to include that additional Metdod _DSM and DTGP call? I ask this question because I saw these two different versions on the web. I would be grateful for any suggestion. Thank you!
-
Hello, I have a HP Probook 4540s laptop. It's a very versatile notebook and OS X works like a charm. I think my Function Key (I have only one on the keybord) works out of the box. What I mean is this: I press FN+F1 and notebook goes to sleep. I press FN+F9 and volume increases. And so on. My question is: Do I need this patch ? # Enable functions keys into device label PS2K insert begin Method (_DSM, 4, NotSerialized)\n {\n Store (Package (0x02)\n {\n "AAPL,has-embedded-fn-keys", \n Buffer (0x04)\n {\n 0x01, 0x00, 0x00, 0x00\n }\n }, Local0)\n DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))\n Return (Local0)\n }\n end; As I mentioned earlier, my function key works without that patch. Another question, here's the shutdown fix: # Shutdown fix into method label _PTS code_regex_not If\s\(LEqual\s\(Arg0,\s0x05\)\) code_regex ^((?:.|\n)*)$ replace_matched begin If (LEqual (Arg0, 0x05)) {}\n Else\n {\n %1 } end; Both FN key and Shutdown patch are in the laptop section on Olarila. I never experienced problems with shutdown, so I need that shutdown patch? What does that shutdown patch really do? Any suggestion would be greatly appreciated. Thank you!
-
DTGP is already in the file, at the end. The problem is something else.
-
Hi, I added this code to Device (GFX0). I need it for AppleHDA. Method (_DSM, 4, NotSerialized) { Store (Package (0x04) { "hda-gfx", Buffer (0x0A) { "onboard-1" }, "AAPL,snb-platform-id", Buffer (0x04) { 0x00, 0x00, 0x01, 0x00 } }, Local0) DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0)) Return (Local0) } After adding that code, I'm getting a lot of DSDT errors. I would like to mention, it's a RAW dsdt of my HP4540s laptop. The only thing I added is HDEF and that patch posted above. I'm stuck and need your help, please. I attached my DSDT. I would be very grateful for any suggestion! Your time is appreciated. HP4540s-dsdt.dsl.zip
-
Sorry for being curious, but it has a logic behind it? Did you check my codec_dump? I read that "hda-gfx" adds HDMI audio support. I have a HDMI port on my laptop. I think I need to add that "hda-gfx" code into Device (GFX0) as well. Intel HD 3000 Graphics. How can I test the HDMI audio? I have a TV with HDMi support. Should I connect my laptop to the TV via HDMI cable?
-
Hi, I need to use this dsdt code to enable my patched AppleHDA. Device (HDEF) { Name (_ADR, 0x001B0000) Method (_DSM, 4, NotSerialized) { Store (Package (0x04) { "layout-id", Buffer (0x04) { 0x0C, 0x00, 0x00, 0x00 }, "PinConfigurations", Buffer (Zero) {} }, Local0) DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0)) Return (Local0) } } Some DSDT I have seen use this additional code in the Store (Package (0x04): "hda-gfx", Buffer (0x0A) { "onboard-1" }, or "hda-gfx", Buffer (0x0A) { "onboard-2" }, I'm not sure which one should I use for my built-in sound card onboard-1 or onboard-2? Is there a way to figure that out? I have a HP4540s laptop. If it helps, I attached my codec_dump generated in Ubuntu. Thank you! codec_dump.txt.zip
-
HP 4540s: Initializer list shorter than declared pkg length
zoliky replied to zoliky's topic in DSDT & Patch Requests
My HD3000 works without patches or enablers. I changed this address in AppleIntelSNBGraphicsFB.kext IOPCIPrimaryMatch 0x1C3A8086 to this: IOPCIPrimaryMatch 0x1E3A8086 Please note, this change works only with Intel 7-series motherboards. I use a HP 4540s laptop - i5-2450m sandy bridge. -
HP 4540s: Initializer list shorter than declared pkg length
zoliky replied to zoliky's topic in DSDT & Patch Requests
Thank you. I appreciate it!
