From 8a5b5c8fda82631bb5e565dcbc87fc1729926236 Mon Sep 17 00:00:00 2001 From: vit9696 Date: Fri, 18 Dec 2020 21:59:31 +0300 Subject: [PATCH] Build: Include compiled ACPI samples in the package --- .gitignore | 1 + Changelog.md | 1 + build_oc.tool | 6 ++++++ 3 files changed, 8 insertions(+) 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"