├── .gitattributes ├── .gitignore ├── .travis.yml ├── Desktops ├── desktop-disable.md └── desktop-ec.md ├── Laptops ├── backlight.md ├── laptop-disable.md ├── laptop-ec.md └── trackpad.md ├── Manual ├── compile.md └── dump.md ├── README.md ├── SUMMARY.md ├── Universal ├── awac.md ├── irq.md ├── nvram.md ├── plug.md ├── smbus.md ├── spoof.md ├── vbios.md └── xosi.md ├── book.json ├── cleanup.md ├── extra-files ├── SSDT-GPI0.dsl ├── SSDT-GPI0.dsl.zip ├── SSDT-GPU-DISABLE.dsl ├── SSDT-GPU-DISABLE.dsl.zip ├── SSDT-GPU-SPOOF.dsl ├── SSDT-GPU-SPOOF.dsl.zip ├── SSDT-NoHybGfx.dsl ├── SSDT-NoHybGfx.dsl.zip ├── SSDT-PNLF.aml ├── SSDT-dGPU-Off.dsl └── SSDT-dGPU-Off.dsl.zip ├── icons ├── apple-touch-icon-precomposed-152.png └── favicon.ico ├── ssdt-easy.md ├── ssdt-long.md └── styles └── website.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/.travis.yml -------------------------------------------------------------------------------- /Desktops/desktop-disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Desktops/desktop-disable.md -------------------------------------------------------------------------------- /Desktops/desktop-ec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Desktops/desktop-ec.md -------------------------------------------------------------------------------- /Laptops/backlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Laptops/backlight.md -------------------------------------------------------------------------------- /Laptops/laptop-disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Laptops/laptop-disable.md -------------------------------------------------------------------------------- /Laptops/laptop-ec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Laptops/laptop-ec.md -------------------------------------------------------------------------------- /Laptops/trackpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Laptops/trackpad.md -------------------------------------------------------------------------------- /Manual/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Manual/compile.md -------------------------------------------------------------------------------- /Manual/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Manual/dump.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /Universal/awac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/awac.md -------------------------------------------------------------------------------- /Universal/irq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/irq.md -------------------------------------------------------------------------------- /Universal/nvram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/nvram.md -------------------------------------------------------------------------------- /Universal/plug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/plug.md -------------------------------------------------------------------------------- /Universal/smbus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/smbus.md -------------------------------------------------------------------------------- /Universal/spoof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/spoof.md -------------------------------------------------------------------------------- /Universal/vbios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/vbios.md -------------------------------------------------------------------------------- /Universal/xosi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/Universal/xosi.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/book.json -------------------------------------------------------------------------------- /cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/cleanup.md -------------------------------------------------------------------------------- /extra-files/SSDT-GPI0.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-GPI0.dsl -------------------------------------------------------------------------------- /extra-files/SSDT-GPI0.dsl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-GPI0.dsl.zip -------------------------------------------------------------------------------- /extra-files/SSDT-GPU-DISABLE.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-GPU-DISABLE.dsl -------------------------------------------------------------------------------- /extra-files/SSDT-GPU-DISABLE.dsl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-GPU-DISABLE.dsl.zip -------------------------------------------------------------------------------- /extra-files/SSDT-GPU-SPOOF.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-GPU-SPOOF.dsl -------------------------------------------------------------------------------- /extra-files/SSDT-GPU-SPOOF.dsl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-GPU-SPOOF.dsl.zip -------------------------------------------------------------------------------- /extra-files/SSDT-NoHybGfx.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-NoHybGfx.dsl -------------------------------------------------------------------------------- /extra-files/SSDT-NoHybGfx.dsl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-NoHybGfx.dsl.zip -------------------------------------------------------------------------------- /extra-files/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-PNLF.aml -------------------------------------------------------------------------------- /extra-files/SSDT-dGPU-Off.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-dGPU-Off.dsl -------------------------------------------------------------------------------- /extra-files/SSDT-dGPU-Off.dsl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/extra-files/SSDT-dGPU-Off.dsl.zip -------------------------------------------------------------------------------- /icons/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/icons/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/icons/favicon.ico -------------------------------------------------------------------------------- /ssdt-easy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/ssdt-easy.md -------------------------------------------------------------------------------- /ssdt-long.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/ssdt-long.md -------------------------------------------------------------------------------- /styles/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khronokernel/Getting-Started-With-ACPI/HEAD/styles/website.css --------------------------------------------------------------------------------