Skip to content

Commit f01784e

Browse files
committed
update to 26.4
1 parent 76a05a8 commit f01784e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ci_tooling/build_modules/disk_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _generate_payloads_dmg(self):
7777
'-megabytes', '32000', # Overlays can only be as large as the disk image allows
7878
'-format', 'UDZO', '-ov',
7979
'-volname', 'OCLP-R Resources (Base)',
80-
'-fs', 'HFS+',
80+
'-fs', 'APFS',
8181
'-layout', 'NONE',
8282
'-srcfolder', './payloads',
8383
'-passphrase', 'password', '-encryption'

docs/TERMS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Term | Description
3131
Term | Description
3232
--- | ---
3333
**EFI** | It can denote two things: <br/>- Mac's firmware, which is the same as UEFI, but pretty modified for Macs only, so not so "Universal" <br/>- The partition on your hard drive that stores software read by the UEFI to load OSes (like the Windows bootloader) or UEFI Applications (like OpenCore), it's FAT32 formatted and has an ID type of EF00 (in hex). It can be named ESP or SYSTEM, and it's usually from 100MB to 400MB in size but the size doesn't reflect upon anything.
34-
**HFS+** | Also known as Mac OS Extended (Journaled), this was the default macOS drive format up until macOS 10.13. It was designed around spinning disks.
34+
**APFS** | Also known as Mac OS Extended (Journaled), this was the default macOS drive format up until macOS 10.13. It was designed around spinning disks.
3535
**APFS** | This is the default macOS drive format from macOS 10.13 and onwards for SSDs, and standard for all drives in Mojave. This format was designed primarily around SSDs.
3636
**32 and 64-Bit CPU** | The bit number of a CPU determines how much data a CPU can address. <br/>- 32-Bit CPUs were only supported up-to Mac OS X 10.6, Snow Leopard.
3737
**32-Bit Firmware** | The bit number of a Firmware determines how much data the firmware can address. In some older Macs, it's common to have a 64-Bit CPU with a 32-Bit firmware<br/>- 32-Bit Firmwares were only supported up-to Mac OS X 10.7, Lion.

oclp_r/support/macos_installer_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def generate_installer_creation_script(self, tmp_location: str, installer_path:
6565
Creates installer.sh to be piped to OCLP-Helper and run as admin
6666
6767
Script includes:
68-
- Format provided disk as HFS+ GPT
68+
- Format provided disk as APFS GPT
6969
- Run createinstallmedia on provided disk
7070
7171
Implementing this into a single installer.sh script allows us to only call
@@ -139,7 +139,7 @@ def generate_installer_creation_script(self, tmp_location: str, installer_path:
139139

140140
with script_location.open("w") as script:
141141
script.write(f'''#!/bin/bash
142-
erase_disk='/usr/sbin/diskutil eraseDisk HFS+ OCLP-Installer {disk}'
142+
erase_disk='/usr/sbin/diskutil eraseDisk APFS OCLP-Installer {disk}'
143143
if $erase_disk; then
144144
"{createinstallmedia_path}" --volume /Volumes/OCLP-Installer --nointeraction{additional_args}
145145
fi
7 MB
Binary file not shown.

0 commit comments

Comments
 (0)