diff --git a/.gitignore b/.gitignore index cbf58873..6336c153 100644 --- a/.gitignore +++ b/.gitignore @@ -49,6 +49,7 @@ prelinkedkernel.unpack *.id2 *.nam *.til +*.aml Debug/QemuRun Doxy Legacy/BinDrivers/X64 diff --git a/Changelog.md b/Changelog.md index 16151bad..e3a5f1ec 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,7 @@ OpenCore Changelog - Updated builtin firmware versions for SMBIOS and the rest - Fixed macrecovery server protocol compatibility - Added basic audio assistant support in OpenCanopy +- Added compiled ACPI samples to the package #### v0.6.4 - Added `BlacklistAppleUpdate` to fix macOS 11 broken update optout diff --git a/build_oc.tool b/build_oc.tool index eb5a15fc..12f5ad4c 100755 --- a/build_oc.tool +++ b/build_oc.tool @@ -168,6 +168,12 @@ package() { cp "${selfdir}/Changelog.md" "${dstdir}/Docs"/ || exit 1 cp -r "${selfdir}/Docs/AcpiSamples/" "${dstdir}/Docs/AcpiSamples"/ || exit 1 + cd "${dstdir}/Docs/AcpiSamples" || exit 1 + for i in *.dsl ; do + iasl "$i" || exit 1 + done + cd - || exit 1 + utilScpts=( "LegacyBoot" "CreateVault"