I admit I did’t read it
🙂, but I’ll post this as warning “Words of Caution Regarding Modification of System Files Using "csrutil authenticated-root disable"”
https://forums.macrumors.com/thread...g-csrutil-authenticated-root-disable.2276764/
Here are the steps I took :
- format an USB disk as MBR/HFS+ with the name HFS
- copy RawCamera.bundle and RawCameraSupport.bundle from Ventura to the HFS USB
Code:
sudo ditto /System/Library/CoreServices/RawCamera.bundle /Volumes/HFS/RawCamera.bundle
sudo ditto /System/Library/CoreServices/RawCameraSupport.bundle /Volumes/HFS/RawCameraSupport.bundle
Reboot using a bootable installer (should work from Recovery too)
- disable SIP and authenticated-root from Terminal
Code:
csrutil disable
csrutil authenticated-root disable
- reboot and boot again using the bootable installer or recovery
- from Terminal list mounted volumes
- unmount the system volume
Code:
diskutil umount /dev/disk1s5
- remount the system volume to make it writable
Code:
diskutil mount /dev/disk1s5
- make backups of rawCamera.bundle and RawCameraSupport.bundle
Code:
ditto “/Volumes/Macintosh HD/System/Library/CoreServices/RawCamera.bundle” /Volumes/HFS/bk/RawCamera.bundle
ditto “/Volumes/Macintosh HD/System/Library/CoreServices/RawCameraSupport.bundle” /Volumes/HFS/bk/RawCameraSupport.bundle
- delete the two system files
Code:
rm -r “/Volumes/Macintosh HD/System/Library/CoreServices/RawCamera.bundle”
rm -r “/Volumes/Macintosh HD/System/Library/CoreServices/RawCameraSupport.bundle”
- copy the files from Ventura
Code:
ditto /Volumes/HFS/RawCamera.bundle “/Volumes/Macintosh HD/System/Library/CoreServices/RawCamera.bundle”
ditto /Volumes/HFS/RawCameraSupport.bundle “/Volumes/Macintosh HD/System/Library/CoreServices/RawCameraSupport.bundle”
- make the modified system volume bootable
Code:
bless --folder "/Volumes/Macintosh HD/System/Library/CoreServices/" --bootefi –create-snapshot
- reboot and enjoy updated RAW support
🙂
You can’t turn SIP on, the modification will be reversed.
Off course, the files will be replaced by any system update.