diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ccf10..425077c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ OpenCore Changelog ================== +#### Latest versions +- Check history of commits + #### v3.2.0 - Open SOURCE CODE of BINARY \o/ diff --git a/EFI/opencore-osx-proxmox-vm.iso b/EFI/opencore-osx-proxmox-vm.iso index 2e81726..f369090 100644 Binary files a/EFI/opencore-osx-proxmox-vm.iso and b/EFI/opencore-osx-proxmox-vm.iso differ diff --git a/README.md b/README.md index 614aee5..74417a1 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ VoilĂ , install macOS! This is really and magic **easiest way**! * 7.XX ## Opencore version -* February/2022 - 0.7.8 with SIP Enabled, DMG only signed by Apple and all features of securities. +* March/2022 - 0.7.9 with SIP Enabled, DMG only signed by Apple and all features of securities. ## Cloud Support (Yes, install your Hackintosh in Cloud Environment) - [VultR](https://www.vultr.com/?ref=9035565-8H) diff --git a/setup b/setup index 4e7f73d..b45e39c 100755 --- a/setup +++ b/setup @@ -49,7 +49,7 @@ LOGDIR=${SCRIPT_DIR}/logs TMPDIR=${SCRIPT_DIR}/tmp ISODIR=/var/lib/vz/template/iso/ HACKPXVERSION="3.2.0" -OCVERSION="0.7.7" +OCVERSION="0.7.9" if [ `lscpu | grep "Vendor ID" | grep -i amd | wc -l` -eq 1 ]; then OSX_PLATFORM="AMD"; else OSX_PLATFORM="INTEL"; fi diff --git a/tools/macrecovery/README.md b/tools/macrecovery/README.md index 955aa98..3d95c8a 100644 --- a/tools/macrecovery/README.md +++ b/tools/macrecovery/README.md @@ -3,3 +3,6 @@ macrecovery is a tool that helps to automate recovery interaction. It can be used to download diagnostics and recovery as well as analyse MLB. Requires python to run. Run with `-h` argument to see all available arguments. + +To create a disk image for a virtual machine installation use `build-image.sh`. + diff --git a/tools/macrecovery/boards.json b/tools/macrecovery/boards.json index be4b276..859cf95 100644 --- a/tools/macrecovery/boards.json +++ b/tools/macrecovery/boards.json @@ -11,14 +11,14 @@ "Mac-942B59F58194171B": "10.13.6", "Mac-B809C3757DA9BB8D": "latest", "Mac-7DF2A3B5E5D671ED": "10.15.7", - "Mac-35C1E88140C3E6CF": "11.6.3", + "Mac-35C1E88140C3E6CF": "11.6.4", "Mac-942459F5819B171B": "10.13.6", "Mac-77EB7D7DAF985301": "10.15.7", "Mac-827FB448E656EC26": "latest", "Mac-7BA5B2DFE22DDD8C": "latest", "Mac-2E6FAB96566FE58C": "10.15.7", "Mac-F2208EC8": "10.13.6", - "Mac-BE0E8AC46FE800CC": "11.6.3", + "Mac-BE0E8AC46FE800CC": "11.6.4", "Mac-00BE6ED71E35EB86": "10.15.7", "Mac-4B7AC7E43945597E": "10.15.7", "Mac-CAD6701F7CEA0921": "latest", @@ -27,12 +27,12 @@ "Mac-FFE5EF870D7BA81A": "latest", "Mac-53FDB3D8DB8CA971": "latest", "Mac-A61BADE1FDAD7B05": "latest", - "Mac-42FD25EABCABB274": "11.6.3", + "Mac-42FD25EABCABB274": "11.6.4", "Mac-827FAC58A8FDFA22": "latest", "Mac-1E7E29AD0135F9BC": "latest", - "Mac-3CBD00234E554E41": "11.6.3", + "Mac-3CBD00234E554E41": "11.6.4", "Mac-66F35F19FE2A0D05": "10.15.7", - "Mac-189A3D4F975D5FFC": "11.6.3", + "Mac-189A3D4F975D5FFC": "11.6.4", "Mac-B4831CEBD52A0C4C": "latest", "Mac-C08A6BB70A942AC2": "10.13.6", "Mac-8ED6AF5B48C039E1": "10.13.6", @@ -57,7 +57,7 @@ "Mac-4B682C642B45593E": "latest", "Mac-DB15BD556843C820": "latest", "Mac-937A206F2EE63C01": "latest", - "Mac-81E3E92DD6088272": "11.6.3", + "Mac-81E3E92DD6088272": "11.6.4", "Mac-E43C1C25D4880AD6": "latest", "Mac-942452F5819B1C1B": "10.13.6", "Mac-65CE76090165799A": "latest", @@ -69,8 +69,8 @@ "Mac-94245B3640C91C81": "10.13.6", "Mac-EE2EBD4B90B839A8": "latest", "Mac-4BC72D62AD45599E": "10.13.6", - "Mac-2BD1B31983FE1663": "11.6.3", - "Mac-7DF21CB3ED6977E5": "11.6.3", + "Mac-2BD1B31983FE1663": "11.6.4", + "Mac-7DF21CB3ED6977E5": "11.6.4", "Mac-A369DDC4E67F1C45": "latest", "Mac-94245A3940C91C80": "10.13.6", "Mac-C3EC7CD22292981F": "10.15.7", diff --git a/tools/macrecovery/build-image.sh b/tools/macrecovery/build-image.sh new file mode 100755 index 0000000..8dc7107 --- /dev/null +++ b/tools/macrecovery/build-image.sh @@ -0,0 +1,18 @@ +#!/bin/bash -e + +rm -rf Recovery.RO.dmg Recovery.RO.raw Recovery.dmg.sparseimage +hdiutil create -size 800m -layout "UNIVERSAL HD" -type SPARSE -o Recovery.dmg +newDevice=$(hdiutil attach -nomount Recovery.dmg.sparseimage | head -n 1 | awk '{print $1}') +echo newdevice "$newDevice" +diskutil partitionDisk "${newDevice}" 1 MBR fat32 RECOVERY R +N=$(echo "$newDevice" | tr -dc '0-9') +diskutil mount disk"${N}"s1 +MOUNT="$(diskutil info disk"${N}"s1 | sed -n 's/.*Mount Point: *//p')" +mkdir -p "$MOUNT/com.apple.recovery.boot" +cp ./*.dmg ./*.chunklist "$MOUNT/com.apple.recovery.boot/" +diskutil umount disk"${N}"s1 +hdiutil detach "$newDevice" +hdiutil convert -format UDZO Recovery.dmg.sparseimage -o Recovery.RO.dmg +rm Recovery.dmg.sparseimage +qemu-img convert -f dmg -O raw Recovery.RO.dmg Recovery.raw +rm Recovery.RO.dmg