Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mikezang

macrumors 6502a
Original poster
May 22, 2010
924
36
Tokyo, Japan
I can update to Sonoma 14.7.1 and Sequoia 15.1, now I can't update to Sonoma 14.7.4 or Sequoia 15.3.1 because my USB 1.1 hub didn't work this time!
I want to know if this patch can be installed auto after popup message 60 seconds, I also created a discussion to OCLP, do you think if OCLP team will take my advice?
 

Attachments

  • 399063316-eb6a8d82-8bf9-4231-91d5-928b21218e9e.jpg
    399063316-eb6a8d82-8bf9-4231-91d5-928b21218e9e.jpg
    668.4 KB · Views: 68
  • Sonoma14.6.png
    Sonoma14.6.png
    43 KB · Views: 40
  • Sonoma14.7.png
    Sonoma14.7.png
    42.9 KB · Views: 34
  • Sonoma14.7.1.png
    Sonoma14.7.1.png
    39 KB · Views: 34
  • Sequoia15.0.png
    Sequoia15.0.png
    43.3 KB · Views: 32
  • Sequoia15.1.png
    Sequoia15.1.png
    35.5 KB · Views: 40
getting a cheap usb 2- hub is not an option? I mean installing via USB 1 is for sure an excercisen in patience, isn’t it?
 
getting a cheap usb 2- hub is not an option? I mean installing via USB 1 is for sure an excercisen in patience, isn’t it?
I tried three USB hubs! I could use one of them to use my wired keyboard and mouse, but I could not do it with the same USB hubs recently, this is why I post here....
 
The hubs you tried are not recognized on the Open Core Sonoma 14.7.1 or the Sequoia 15.1 installation? Is anything directly connect to the Mini with that OSes installed via USB recognized?
 
The hubs you tried are not recognized on the Open Core Sonoma 14.7.1 or the Sequoia 15.1 installation? Is anything directly connect to the Mini with that OSes installed via USB recognized?
Even if I used hubs or insert usb to mac mini direct, the keyboard and mouse never response, but it worked in past:(
 
After I boot from external SSD 15.1, may I set 14.7.1 on Internal SSD, so that the USB 1.1 patch will be done auto when I reboot from Internal SSD?
 
On my CMPro 5,1 I never had trouble using the Apple USB Keyboard plugged into the front USB ports with a wired mouse plugged into its USB outlet.
I also routinely use a donged wireless (2.4Ghz - not USB) with the dongle plugged into an ancient cheap hub in the back.
 
If you have a second Mac or Windows PC and your Mac is plugged into ethernet, you can also log into it via ssh and use the command line to install the RootPatch.

I created a script there I invoke it with "sudo /Library/Applications\ Support/oclp --patch"

Code:
#!/bin/bash
# oclp - make OpenCore CLI easier
while [[ "$#" -gt 0 ]]; do
    case $1 in
        -h|--help)
        echo "oclp"
        echo "    -p  -- patch    apply root patch to system volume"
        echo "    -u  --unpatch    remove toot patch from system volume"
        echo "    Other arguments    passed to OpenCore-Patcher directly"
        echo ""
        /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            --help
        ;;
        -p|--patch)
        echo "Apply RootPatch"
        sudo /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            --patch_sys_vol
        ;;
        -u|--unpatch)
        echo "Remove RootPatch"
        sudo /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            --unpatch_sys_vol
        ;;
        *)
        echo "Direct OpenCore-Patcher invocation"
        /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            "$@"""
        ;;
    esac
    shift
done
 
If you have a second Mac or Windows PC and your Mac is plugged into ethernet, you can also log into it via ssh and use the command line to install the RootPatch.

I created a script there I invoke it with "sudo /Library/Applications\ Support/oclp --patch"

Code:
#!/bin/bash
# oclp - make OpenCore CLI easier
while [[ "$#" -gt 0 ]]; do
    case $1 in
        -h|--help)
        echo "oclp"
        echo "    -p  -- patch    apply root patch to system volume"
        echo "    -u  --unpatch    remove toot patch from system volume"
        echo "    Other arguments    passed to OpenCore-Patcher directly"
        echo ""
        /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            --help
        ;;
        -p|--patch)
        echo "Apply RootPatch"
        sudo /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            --patch_sys_vol
        ;;
        -u|--unpatch)
        echo "Remove RootPatch"
        sudo /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            --unpatch_sys_vol
        ;;
        *)
        echo "Direct OpenCore-Patcher invocation"
        /Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher \
            "$@"""
        ;;
    esac
    shift
done
May I run this command to my Internal SSD from booted External SSD as below?
/Volumes/MyInternalSSD/Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher --help
 
May I run this command to my Internal SSD from booted External SSD as below?
/Volumes/MyInternalSSD/Library/Application\ Support/Dortania/OpenCore-Patcher.app/Contents/MacOS/OpenCore-Patcher --help
RootPatch has to be run with the targeted system booted. You cannot boot another system and run it.
 
RootPatch has to be run with the targeted system booted. You cannot boot another system and run it.
May I modify OpenCore-Patcher parameters, so that I can skip popup and do patches directly when I boot it?
 
Last edited:
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.