
01-07-2010, 07:32 PM
|
 |
|
|
Join Date: Jun 2009
Location: Athens
Posts: 540
|
|
Quote:
The Real Time Clock (RTC) is a chip on the logic board that controls the date and time functions of the computer.
|
Στο dsdt απο original Mac πρεπει να διορθωθει σε 2 στο
Code:
Device (RTC)
{
Name (_HID, EisaId ("PNP0B00"))
Name (BUF0, ResourceTemplate ()
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x01, // Alignment
0x08, // Length
)
})
Name (BUF1, ResourceTemplate ()
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x01, // Alignment
0x08, // Length
)
το σωστο ειναι
Code:
Device (RTC)
{
Name (_HID, EisaId ("PNP0B00"))
Name (BUF0, ResourceTemplate ()
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x01, // Alignment
0x02, // Length
)
})
Name (BUF1, ResourceTemplate ()
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x01, // Alignment
0x02, // Length
)
Mac mini i5 mid 2011- Apple Cinema Display 27' /Lion 10.7.3
MacBook/MB466/A GR Aluminium late 2008 Lion 10.7.3
iPhone 4 16GB
Acer Aspire one ZG5 Snow Leopard 10.6.8
Last edited by SomniusX; 01-07-2010 at 07:39 PM.
Reason: code & quote brackets
|