summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThi Doãn <t@thi.im>2021-11-24 16:52:53 +0900
committerBrian Gianforcaro <b.gianfo@gmail.com>2021-11-25 01:10:19 -0800
commit7b2bd798553e96bb93a337d4afd5ea163ba558f3 (patch)
tree05a9e3898331da409a10e88e50748cff0ab82649
parent1c59cfa28c8233f199aed8a334c59181f15d3761 (diff)
downloadserenity-7b2bd798553e96bb93a337d4afd5ea163ba558f3.zip
Documentation: Remove outdated instruction
As of qemu 6.0.0, it should already have the entitlement to access the Hypervior.framework by default, so re-codesigning the binary is no-longer necessary. https://github.com/qemu/qemu/commit/8a74ce618b647e71ac703b5fe5dba3a2329a4d76
-rw-r--r--Documentation/BuildInstructionsMacOS.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/Documentation/BuildInstructionsMacOS.md b/Documentation/BuildInstructionsMacOS.md
index 896c283c23..e4590483bb 100644
--- a/Documentation/BuildInstructionsMacOS.md
+++ b/Documentation/BuildInstructionsMacOS.md
@@ -23,29 +23,3 @@ Notes:
- Installing osxfuse for the first time requires enabling its system extension in System Preferences and then restarting
your machine. The output from installing osxfuse with brew says this, but it's easy to miss.
-
-## Hardware acceleration on macOS Big Sur
-
-If you are on macOS Big Sur, you will need to manually enable QEMU's hardware acceleration before running Serenity, by
-creating a new file called `entitlements.xml` in the `Build/` folder, with the content below, and then running this
-command:
-
-`codesign -s - --entitlements entitlements.xml --force $(which qemu-system-x86_64)`
-
-<details>
-<summary>Content for 'entitlements.xml'.</summary>
-
-```xml
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
- "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>com.apple.security.hypervisor</key>
- <true/>
-</dict>
-</plist>
-```
-
-</details>
-