forked from serdeliuk/G531GT-hackint0sh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSDT-FAKEALS0.dsl
44 lines (43 loc) · 1.27 KB
/
SSDT-FAKEALS0.dsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* Intel ACPI Component Architecture
* AML/ASL+ Disassembler version 20191018 (64-bit version)
* Copyright (c) 2000 - 2019 Intel Corporation
*
* Disassembling to non-symbolic legacy ASL operators
*
* Disassembly of SSDT-FAKEALS0.aml, Wed May 27 09:26:15 2020
*
* Original Table Header:
* Signature "SSDT"
* Length 0x00000074 (116)
* Revision 0x0D
* Checksum 0xEC
* OEM ID "mshack"
* OEM Table ID "FAKEALS0"
* OEM Revision 0x00000013 (19)
* Compiler ID "INTL"
* Compiler Version 0x20191018 (538513432)
*/
DefinitionBlock ("", "SSDT", 13, "mshack", "FAKEALS0", 0x00000013)
{
Scope (_SB)
{
If (_OSI ("Darwin"))
{
Device (ALS0)
{
Name (_HID, "ACPI0008" /* Ambient Light Sensor Device */) // _HID: Hardware ID
Name (_CID, "smc-als") // _CID: Compatible ID
Name (_ALI, 0x96) // _ALI: Ambient Light Illuminance
Name (_ALR, Package (0x01) // _ALR: Ambient Light Response
{
Package (0x02)
{
0x64,
0x96
}
})
}
}
}
}