Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/17/2019 in all areas

  1. Hackintool v2.7.6 Released - Custom Device Path generation code (big thanks to @jaymonkey for helping test) - Updated Chinese translation
    3 points
  2. Could you please stop mentioning everyone that you want help from in a thread.
    2 points
  3. For anyone who is new and looking for a starting place here is my setup for an Asus z370a. No boot errors, no kinks. Smoother than Clover to me (can be argued, lets not). A few notes: I've stripped back some device properties but left my 580 and 580 HDMI Audio properties in along with my on board audio. Use Hackintool to find your device path and replace. If this is too much (learn it though) then just remove all the Device Properties and Lilu, WEG, AppleALC will take care of the rest. Use Hackintool to get your Serial and UUID and copy and paste into Platform. Easy. If you have a USBkext then replace the kext in the folder and change the name in config if different. If using Injectall and a custom patch then remove the USBkext from config and the folder and add your files to both config and the folders. If you're confused in the Config then just copy and paste a different patch and change the values accordingly. It's easy once you get it. Pro Tip: make sure enabled is YES if applicable. Something that hung me up for a bit with kext was realizing not every kext has an "Executable Path" and you can tell by right clicking the kext and selecting Show Package Contents then Contents and seeing wether or not it has a folder called "MacOS" with a file in there (named after the kext usually and without an extension). If nothing in there then leave it blank in the config file. I have ShowPicker set to to NO so that my boot looks like a Mac. Also TimeOut is set to 1 second. If for some reason your device order is different than mine then you should change it to YES and make the Timeout longer so you have a chance to select the right option at boot. I'm not sure how to add the options like Recovery or what not or even how to auto select the options. Would love to know. For getting a boot log replace Bootx64 and Opencore.efi from the repo with the debug version and change Misc>Debug>Target to 67 in the config file. Thats the number I landed on and seems to get the job done. Would love to know what's best here. Is anyone using Misc>Entries for your drives. Is that what that's for? Last tidbit, please try this on a flash drive. I moved to my main drive this week after 3 weeks of tinkering. Thank you for everyones help in understanding the OpenCore Pkg Doc along with the nuances along the way. EFI.zip
    2 points
  4. 17/07/2019 Reverted back to the non DSDT EFI folder within guide as an EFI fit for all, it seems that a DSDT extracted from one specific setup does not greatly transfer to majority of Aorus Pro Z390 configs with different memory, graphics cards, BIOS configuration. For those looking for DSDT fix it's best to extract your own ACPI files and source your own patched DSDT @MaLd0n can possible assist with DSDT Patch.
    2 points
  5. Can I propose a new subforum be created for the new OpenCorePkg OpenCore front end being created by vit9696 and others, it is a fantastic piece of work: https://github.com/acidanthera/OpenCorePkg Even at version 0.1 it runs my Mojave 10.14.4 setup very nearly flawlessly. It consists of a 10KB bootstrap BootX64.efi and a 200KB OpenCore.efi OS loader. All configuration is done using a very well documented config.plist
    1 point
  6. SMC emulator with 2nd generation SMC support. Includes some monitoring plugins as API usage examples. New plugin additions are very welcome, given that they are well-written. Source code: repository. FAQ and documentation: link. Features and configuration: link. I wish to express my deep gratitude to all the people who worked on this project with me.
    1 point
  7. If you are in 10.14.0 you will not longer able to download legit copy of macOS from Apple store. It's download and install as system update. Here is script to generate >5GB installer and also create bootable USB media. I'm sharing code of script and if you wanna get executable download from attachment. If you can more optimise the code you are welcomed. You also can also download macOS 10.15 when it will be available. after downloading attachment in terminal type: chmod a+x /path/to/downloaded/file #!/bin/bash # This program is free software. It comes without any warranty, to # the extent permitted by applicable law. You can redistribute it # and/or modify it under the terms of the Do What The {censored} You Want # To Public License, Version 2, as published by Sam Hocevar. See # http://www.wtfpl.net/ for more details. */ # One more contribution to open source world. # Note: try to reduce lines and add more features # you will be add in contribute area. # Global functions print() { printf -- "$1\n"; } log() { printf -- "\033[37m LOG: $1 \033[0m\n"; } success() { printf -- "\033[32m SUCCESS: $1 \033[0m\n"; } warning() { printf -- "\033[33m WARNING: $1 \033[0m\n"; } error() { printf -- "\033[31m ERROR: $1 \033[0m\n"; } heading() { printf -- " \033[1;30;42m $1 \033[0m\n\n"; } newUiPage() { clear echo "---------------------------------------------------" echo "- macOS Legit Copy Downloader v1.0.1 -" echo "- By Hanger1 (H1) -" echo "---------------------------------------------------" echo " Contributor: ricoc90" echo " " echo " " } # Global Variables DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" tmpDir="$DIR" srcDir="$DIR/macOSsrc" # Prgram functions downloadAndParseCatalog(){ # Download catalog file from apple server #------------------------------- print "\nLoading macOS catalog from swscan.apple.com..." if ! curl --fail -s -f -o "$tmpDir/catalog.gz" "$1"; then error "Failed to download catalog" && exit; fi gunzip -k "$tmpDir/catalog.gz" rm "$tmpDir/catalog.gz" # Parse catalog file into arrays #------------------------------- versionsArray=($(getListOfVersions)) appleDiagnosticsArray=($(findLinkInCatalog AppleDiagnostics.dmg "$tmpDir/catalog")) appleDiagnosticsChunklistArray=($(findLinkInCatalog AppleDiagnostics.chunklist "$tmpDir/catalog")) baseSystemArray=($(findLinkInCatalog BaseSystem.dmg "$tmpDir/catalog")) baseSystemChunklistArray=($(findLinkInCatalog BaseSystem.chunklist "$tmpDir/catalog")) installInfoArray=($(findLinkInCatalog InstallInfo.plist "$tmpDir/catalog")) installESDArray=($(findLinkInCatalog InstallESDDmg.pkg "$tmpDir/catalog")) rm "$tmpDir/catalog" } findLinkInCatalog(){ array=($(awk '/'$1'</{print $1}' "$2")) let index=0 for element in "${array[@]}"; do array[$index]="${element:8:${#element}-17}" let index=index+1 done echo ${array[@]} } getListOfVersions(){ versionInfoArray=($(findLinkInCatalog InstallInfo.plist "$tmpDir/catalog")) let index=0 for element in "${versionInfoArray[@]}"; do infoline=$(curl -s -f $element | tail -5) versionInfo[$index]="$(echo $infoline | awk -v FS="(string>|</string)" '{print $2}')" let index++ done echo ${versionInfo[@]} } checkOSAvaibility() { if curl --output /dev/null --silent --head --fail "https://swscan.apple.com/content/catalogs/others/index-$1seed-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gz"; then echo "$1"; else echo "10.14"; fi } downloadOS(){ # Print User Interface newUiPage LATEST_VERSION=$(checkOSAvaibility "10.15") # User input for selecting release type PS3=""$'\n(You can also able to download macOS 10.15 when it will available)\n\n'"Which release you want? " select RELEASETYPE in "Developer Release" "Beta Release" "Public Release"; do case $RELEASETYPE in Developer* ) CATALOGTYPE="-${LATEST_VERSION}seed"; break;; Beta* ) CATALOGTYPE="-${LATEST_VERSION}beta"; break;; Public* ) break;; esac done downloadAndParseCatalog "https://swscan.apple.com/content/catalogs/others/index${CATALOGTYPE}-10.14-10.13-10.12-10.11-10.10-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog.gz" newUiPage # User input for selecting macOS versions PS3=""$'\n'"Select macOS version : " select MACVERSION in "${versionsArray[@]}"; do if [[ $REPLY -le ${#versionsArray[@]} && $REPLY -gt 0 ]] then # Dont break sequence (It's sequenced with $fileNames[@]) links=(${appleDiagnosticsArray[$[$REPLY - 1]]} ${appleDiagnosticsChunklistArray[$[$REPLY - 1]]} ${baseSystemArray[$[$REPLY - 1]]} ${baseSystemChunklistArray[$[$REPLY - 1]]} ${installInfoArray[$[$REPLY - 1]]} ${installESDArray[$[$REPLY - 1]]}) fileNames=("AppleDiagnostics.dmg" "AppleDiagnostics.chunklist" "BaseSystem.dmg" "BaseSystem.chunklist" "InstallInfo.plist" "InstallESDDmg.pkg") # Ask user to download macOS or only print links while true; do read -p ""$'\n'"You wanna download macOS ? [y/n] " yn print "" if [[ $yn == y ]]; then # make source directory if [ ! -d "$srcDir" ]; then mkdir "$srcDir"; fi # Download files into $srcDir from $links[@] for i in {0..5}; do curl -f -o "$srcDir/${fileNames[$i]}" "${links[$i]}" done && break; elif [[ $yn == n ]]; then for link in "${links[@]}"; do print $link; done && break; #&& exit; fi done break else error "Invalid choice." fi done } createinstallmedia(){ #--------------------------------------------------------------------------- # Create Install Media #--------------------------------------------------------------------------- # Taking ownership of downloaded files #------------------------------------------------- chmod a+x "$srcDir/BaseSystem.dmg" chmod a+x "$srcDir/BaseSystem.chunklist" chmod a+x "$srcDir/InstallInfo.plist" chmod a+x "$srcDir/InstallESDDmg.pkg" chmod a+x "$srcDir/AppleDiagnostics.dmg" chmod a+x "$srcDir/AppleDiagnostics.chunklist" # Mount 'BaseSystem.dmg' #------------------------- $(hdiutil attach "$srcDir/BaseSystem.dmg" 2>&1 >/dev/null) print "\n\nMake sure \"macOS Base System\" volume is mounted\n" read -p "Press enter to continue..." # Pull 'Install macOS XXXX.app' from 'BaseSystem.dmg' #----------------------------------------------------- FOLDERS=(/Volumes/*) for folder in "${FOLDERS[@]}"; do [[ -d "$folder" && "$folder" =~ "macOS Base System" ]] && basePath="$folder" done for file in "$basePath/"*; do # Find XXXX.app in mounted volume if [[ $file == *.app ]]; then let index=${#name_array[@]} name_array[$index]="${file##*/}" fi done installAppName=${name_array[0]} newUiPage print "Copying $installAppName to out folder..." cp -R "/Volumes/macOS Base System/$installAppName" "$DIR/" # UnMount 'BaseSystem.dmg' #------------------------- $(hdiutil detach /Volumes/macOS\ Base\ System 2>&1 >/dev/null) print "Copying Files to SharedSupport folder...\n" # Create SharedSupport folder inside 'Install macOS XXXX.app/Contents' #---------------------------------------------------------------------- SharedSupportDir="$DIR/${installAppName}/Contents/SharedSupport" if [ ! -d "$SharedSupportDir" ]; then mkdir "$SharedSupportDir"; fi # Copy All contents of src folder to 'Install macOS XXXX.app/Contents/SharedSupport' #---------------------------------------------------------------------- # cp -R $srcDir/* $DIR/Install\ macOS\ Mojave\ Beta.app/Contents/SharedSupport cp -R "$srcDir/BaseSystem.dmg" "$SharedSupportDir" cp -R "$srcDir/BaseSystem.chunklist" "$SharedSupportDir" cp -R "$srcDir/InstallInfo.plist" "$SharedSupportDir" cp -R "$srcDir/AppleDiagnostics.dmg" "$SharedSupportDir" cp -R "$srcDir/AppleDiagnostics.chunklist" "$SharedSupportDir" # This file will be copied with InstallESD.dmg name cp -R "$srcDir/InstallESDDmg.pkg" "$SharedSupportDir/InstallESD.dmg" # Replace <string>InstallESDDmg.pkg</string> to <string>InstallESD.dmg</string> in 'src/InstallInfo.plist' #---------------------------------------------------------------------------------------------------------- sed -i "" 's/<string>InstallESDDmg.pkg<\/string>/<string>InstallESD.dmg<\/string>/g' "$SharedSupportDir/InstallInfo.plist" # Remove these lines from 'src/InstallInfo.plist' #------------------------------------------------ # <key>chunklistURL</key> # <string>InstallESDDmg.chunklist</string> # <key>chunklistid</key> # <string>com.apple.chunklist.InstallESDDmg</string> sed -i "" '30,33d' "$SharedSupportDir/InstallInfo.plist" # Replace <string>com.apple.pkg.InstallESDDmg</string> to <string>com.apple.dmg.InstallESD</string> in 'src/InstallInfo.plist' #---------------------------------------------------------------------------------------------------------- sed -i "" 's/<string>com.apple.pkg.InstallESDDmg<\/string>/<string>com.apple.dmg.InstallESD<\/string>/g' "$SharedSupportDir/InstallInfo.plist" # Replace InstallESDDmg.pkg to InstallESD.dmg in 'src/InstallInfo.plist' #---------------------------------------------------------------------------------------------------------- sed -i "" 's/InstallESDDmg.pkg/InstallESD.dmg/g' "$SharedSupportDir/InstallInfo.plist" # newUiPage DEVICES=($(ls /Volumes)) read -p 'Enter name of USB media : ' INSTALLER_DEVICE # Creates a bootable installer for macOS on selected media # As discribed in https://support.apple.com/en-us/HT201372 print "" sudo "$DIR/$installAppName/Contents/Resources/createinstallmedia" --volume /Volumes/$INSTALLER_DEVICE read -p 'You wanna delete downloaded files ? (y/n) : ' ANSWER if [ $ANSWER == y ]; then rm -R "$srcDir"; fi } newUiPage # User input for selecting release type PS3=""$'\n'"What you want to do? " select RELEASETYPE in "Download macOS" "Make bootable Media"; do case $RELEASETYPE in Download* ) downloadOS; break;; Make* ) createinstallmedia; break;; esac done exit Attachment : manOSDownloader_rc
    1 point
  8. Sorry, I'm not an expert on laptops. And I'm not sure you need all those kexts and all those patched SSDTs you've got going on... If you know you need all of those, then fine. But again, I can't help you here, since my only laptop is a real MacBook Pro. So, I've got no experience with laptop hacks. However, in case you haven't tried that already, you could probably try VoodooPS2Controller instead of that I2C kext for trackpad? Again, I do not know. Never tried it. Never used any of them. Make a backup of your current i2c kexts on your Desktop or somewhere else, so you can put them back, in case you need it.
    1 point
  9. Success here too - your EFI is working very well. Diff to Glasgoods is some devices as my Broadcom PCIe card etc are no longer shown in PCI "About this Mac". And I added Clover "darkwake=0", else the screen stays black after waking sys by a single key or mouse press (RX580), need to press or klick twice for getting a screen. Any chance to get the modified DSDT parts as a text snippet so I can modfiy my own extracted DSDT via iasl ?
    1 point
  10. I was running Glasgoods installation EFI on my Aorus z390 pro wifi and it was working wellish - kept getting the dreaded crossed icon following shutdown or restart and would have to power cycle a few times. Just to make things a little more complicated I am running openZFS on one of my SSD's so I can share easily between linux and macos. Have had great success using your new EFI - I recreated the serial numbers and ran into only 1 problem, my zfs pool would not remount because it didnt recognise the machine. I have had to force the importing of its partition ("pool" in zfs speak), but not it works great. Like the clover theme to! kudos to this great community. @saCULar
    1 point
  11. Anyone looking to study ( the curious ) and compare DSDT, a good tool to use is DiffMerge and can be downloaded ==>here DSDT must be decompiled from .aml to .dsl when using tool. Here attached are two DSDT decompiled to .dsl DSDT.dsl DSDT.dsl To decompile your own DSDT Follow Rehabman's instructions Change directory to folder where DSDT or SSDT file is and then use following command to decompile all DSDT and SSDT files ( you may have to create a refs.txt if decompiling from Clover F4 extract, instructions in link above ) iasl -dl DSDT.aml SSDT*.aml
    1 point
  12. I had to go back to VirtualSMC 1.0.6 because 1.0.7 didn't get loaded and my system did not start. VirtualSMC 1.0.6, no problem! Exact same config.
    1 point
  13. To rule out if it's a range issue vs software/config issue - bring the Magic Mouse right next to the antenna to see if the lag's gone. If it's a range issue, you can try orienting the antenna (not sure which one is for BT) differently. If it's not a range issue, I'm not sure what else to try. My card's also in PCIEX1_3, USB attached to F_USB2. There's no lag on the Magic Trackpad about 5ft away. The BT antenna is oriented parallel to the floor - pointing straight out of the back of the tower (not bent).
    1 point
  14. @matgeo Enable the RequestBootVarRouting quirk and use Startup Disk pane or Boot Camp Control Panel
    1 point
  15. Hi @ainsleyclark Go with ==>Aorus Pro Z390 EFI.zip you may get a kernel panic on first boot, if so then just reboot. If mouse is still an issue, then follow: WIFI – Clover Hotpatch PXSX to ARPT in the guide.
    1 point
  16. @AudioGod thanks for posting your EFI buddy. I may have time to test it next weekend. In light of @glasgood's post above - I think it's safest to use DSDT's from system with extremely similar hardware, or create your own DSDT. I have a Fenvi T919 wifi/bt card installed, so that may act up and provide another vector for instability. We also have different GPUs installed. @glasgood was your iMessage activation problem due to the NVRAM not saving the ROM and Board Serial Number values? That's the problem I was having with the DSDT version of your EFI. I always use my own unique values in my hack but for some reason the DSDT EFI with native NVRAM wasn't reading/saving them from Clover.
    1 point
  17. afaik the DSDT table is static from BIOS but SSDT is dynamic. So there might be different DSDT's for different BIOS versions. To find out, some guys here can use BIOS F10 , extract with F4 in Clover boot and then compare . Wondering if we get different aml's
    1 point
  18. Ragazzi ho fatto un po di prove...Rimesso il vecchio bios, e giocano un po con le impostazioni mi sono accorto che mettendo win8 o wi8wlq ( o come {censored} si scrive) compare la scritta CSM. Ora mi sto facendo alcune prove con le varie EFI postate per vedere se riesco ad andare avanti...
    1 point
  19. I read the guide but I coud not find it. Is there any way to boot from last booted volume like in Clover ? Or at least select the partition to boot from?
    1 point
  20. 4G OFF = System is stable but still glitchy, none of USB ports work (internal and external) 4G ON = USB works, system unstable, stuttering in GPU dependent applications such as Premiere Pro. System is unusable. there is also a performance drop overall. I contacted ASUS to take down the BIOS.
    1 point
  21. @AudioGodthanks a lot for the whole support! I really appreciate it! I will first do my normal daily routine with your efi to make sure everything is working as expected. So far I can say that is running smoothly and the only minor issue I have is not having the temperature of gpu from istats menu which I'm not considering it as a problem. Tomorrow I will test for freezes and I will let you know how it went, normally there isn't any day that pass without at least one freeze. Cheers!
    1 point
  22. EDIT: So I guess disregard, for now at least. I switched my Clover bootloader on my main install to OC and found that I somehow was running a completely different version of the BrcmPatchRAM2 kexts for Catalina than what is the current version on the first page of Headkaze’s thread . I replaced with that and all is good now it seems. I posted this in another thread, but being that it's an issue I'm having with OpenCore and not Clover, I thought I'd look for help here also. I have a Dell 1830 (BCM943602BAED) installed on a Asus X299 Prime Deluxe. I'm having trouble getting this to work with Catalina with OC 0.0.4 as bootloader. It does work for me with Mojave and Catalina booting with Clover, as well as Mojave booting with OpenCore, but not Catalina booting with OpenCore. I believe it's an issue with BrcmPatchRAM2 not loading the firmware due to a conflict with OC, possibly caused by my USB config, but I can't figure it out. I got the BrcmPatchRAM2 kexts from https://github.com/headkaze/OS-X-BrcmPatchRAM/releases. Here are some scenarios: If I start Mojave with Clover, BT works correctly. Then restart from OC USB into Catalina, with all three kexts in the OC EFI, BT does not show up. If I start Mojave with Clover, BT works correctly. Then restart from OC USB into Catalina, with only BrcmBluetoothInjector.kext in the OC EFI, then BT works because the firmware is still loaded. BUT, if I fully shutdown the computer then boot directly into Catalina using OC, then BT doesn't work because the firmware is no longer loaded due to power cycle. Also, if I cold boot Mojave with Clover or Catalina with OC with just BrcmBluetoothInjector.kext, then BT shows up in Sys Prefs, and devices are found, but I can't get any devices to connect. In all scenarios, if I have only BrcmBluetoothInjector.kext installed in EFI, then most of my bus-powered USB3 HDDs will not mount, so something happens with not getting enough USB power. I do get enough USB power when all 3 kexts are in the EFIs, whether BT is working or not. In Catalina with OC, here is what shows in System Info for BT under USB: In Hackintool I see this for the BT, so I know firmware isn't getting loaded: Here is a log of the boot and loading of the kexts (there are USB errors): (I got this log using a terminal command. If there's a way to get this verbose log to write to a file on the EFI with the other logs please let me know) 2019-08-16 09:45:11.337331-0700 0xa7b Default 0x0 0 0 kernel: (IOHIDFamily) HID: Legacy shim 2 2019-08-16 09:45:11.339465-0700 0x2b4 Default 0x0 0 0 kernel: (kernel) BrcmPatchRAM: Loaded compressed embedded firmware for key "BCM20703A1_001.001.005.0214.0422_v4518". 2019-08-16 09:45:11.348149-0700 0x2b4 Default 0x0 0 0 kernel: (kernel) BrcmPatchRAM: Decompressed firmware (43444 bytes --> 109080 bytes). 2019-08-16 09:45:11.348709-0700 0xa82 Default 0x0 0 0 kernel: Boot args: <private> 2019-08-16 09:45:11.348729-0700 0xa82 Default 0x0 0 0 kernel: debug=0x0 2019-08-16 09:45:11.348817-0700 0x2b4 Default 0x0 0 0 kernel: (kernel) BrcmPatchRAM: Firmware is valid IntelHex firmware. 2019-08-16 09:45:11.348865-0700 0x2b4 Default 0x0 0 0 kernel: (kernel) BrcmPatchRAM2: [0a5c:6410]: USB [48E244F4C2BA v274] "BCM2045A0" by "Broadcom Corp" 19-08-16 09:45:11.352247-0700 0x2b4 Default 0x0 0 0 kernel: (IOUSBHostFamily) 000044.178462 AppleUSBIORequest: AppleUSBIORequest::cancel: called without first calling prepare 019-08-16 09:45:11.372133-0700 0x2b4 Default 0x0 0 0 kernel: (kernel) BrcmPatchRAM2: [0a5c:6410]: continuousRead - Failed to queue read (0xe00002c2) 2019-08-16 09:45:11.422713-0700 0xa41 Default 0x0 0 0 kernel: Warning: Attempt to create a named entry from the kernel_object 2019-08-16 09:45:11.422768-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.422772-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.422773-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.422812-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007ef] CopyConfigurationDescriptor 2019-08-16 09:45:11.422815-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007ef] Start failed: 0xe00002be 2019-08-16 09:45:11.422819-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.422823-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.422826-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007ef] Start failed: 0xe00002be 2019-08-16 09:45:11.422828-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.422829-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.422838-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007ef] Close interface: 0x10000068e 0x0 2019-08-16 09:45:11.422860-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007f1] CopyConfigurationDescriptor 2019-08-16 09:45:11.422862-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007f1] Start failed: 0xe00002be 2019-08-16 09:45:11.422865-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007ef] Stop: 0x0 2019-08-16 09:45:11.422867-0700 0xa41 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007ef] Start ret: 0xe00002be 2019-08-16 09:45:11.422869-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.422877-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007f1] Start failed: 0xe00002be 2019-08-16 09:45:11.422887-0700 0x316 Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007ef IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.422889-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007f1] Close interface: 0x100000656 0x0 2019-08-16 09:45:11.422902-0700 0xa42 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.422914-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007f1] Stop: 0x0 2019-08-16 09:45:11.422916-0700 0xa5e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007f1] Start ret: 0xe00002be 2019-08-16 09:45:11.422951-0700 0x2fc Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007f1 IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.422971-0700 0xa5d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.423003-0700 0x3ee Default 0x0 0 0 kernel: (ntfs) NTFS driver 3.13 [Flags: R/W]. 2019-08-16 09:45:11.423004-0700 0xa0d Default 0x0 0 0 kernel: Warning: Attempt to create a named entry from the kernel_object 2019-08-16 09:45:11.423046-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.423050-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.423053-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.423056-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.423060-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.423062-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.423064-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.423064-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.423066-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.423072-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.423076-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.423078-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.423078-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.423079-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.423082-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.423084-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.423085-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.423086-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007e7] CopyConfigurationDescriptor 2019-08-16 09:45:11.423086-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.423089-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007e7] Start failed: 0xe00002be 2019-08-16 09:45:11.423096-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007e9] CopyConfigurationDescriptor 2019-08-16 09:45:11.423098-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007eb] CopyConfigurationDescriptor 2019-08-16 09:45:11.423099-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.423100-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007e9] Start failed: 0xe00002be 2019-08-16 09:45:11.423101-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007eb] Start failed: 0xe00002be 2019-08-16 09:45:11.423103-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007e7] Start failed: 0xe00002be 2019-08-16 09:45:11.423110-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.423111-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.423113-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007e5] CopyConfigurationDescriptor 2019-08-16 09:45:11.423117-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007eb] Start failed: 0xe00002be 2019-08-16 09:45:11.423118-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007e3] CopyConfigurationDescriptor 2019-08-16 09:45:11.423119-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007e7] Close interface: 0x10000069a 0x0 2019-08-16 09:45:11.423119-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007e9] Start failed: 0xe00002be 2019-08-16 09:45:11.423120-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007ed] CopyConfigurationDescriptor 2019-08-16 09:45:11.423121-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007e5] Start failed: 0xe00002be 2019-08-16 09:45:11.423121-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007e3] Start failed: 0xe00002be 2019-08-16 09:45:11.423123-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007ed] Start failed: 0xe00002be 2019-08-16 09:45:11.423130-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.423131-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.423131-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.423132-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007eb] Close interface: 0x1000005cd 0x0 2019-08-16 09:45:11.423133-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007ed] Start failed: 0xe00002be 2019-08-16 09:45:11.423135-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007e9] Close interface: 0x1000006a6 0x0 2019-08-16 09:45:11.423136-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007e3] Start failed: 0xe00002be 2019-08-16 09:45:11.423136-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007e5] Start failed: 0xe00002be 2019-08-16 09:45:11.423147-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007e7] Stop: 0x0 2019-08-16 09:45:11.423149-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007ed] Close interface: 0x1000006b3 0x0 2019-08-16 09:45:11.423149-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007e3] Close interface: 0x100000668 0x0 2019-08-16 09:45:11.423150-0700 0x9dc Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007e7] Start ret: 0xe00002be 2019-08-16 09:45:11.423151-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007e5] Close interface: 0x1000005f1 0x0 2019-08-16 09:45:11.423160-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007eb] Stop: 0x0 2019-08-16 09:45:11.423163-0700 0xa0d Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007eb] Start ret: 0xe00002be 2019-08-16 09:45:11.423165-0700 0x318 Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007e7 IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.423166-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007e9] Stop: 0x0 2019-08-16 09:45:11.423169-0700 0x9f5 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007e9] Start ret: 0xe00002be 2019-08-16 09:45:11.423177-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007e3] Stop: 0x0 2019-08-16 09:45:11.423181-0700 0x2ab Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007eb IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.423181-0700 0x9a7 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007e3] Start ret: 0xe00002be 2019-08-16 09:45:11.423181-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007ed] Stop: 0x0 2019-08-16 09:45:11.423182-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007e5] Stop: 0x0 2019-08-16 09:45:11.423183-0700 0x9db Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.423184-0700 0xa28 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007ed] Start ret: 0xe00002be 2019-08-16 09:45:11.423186-0700 0x9c2 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007e5] Start ret: 0xe00002be 2019-08-16 09:45:11.423187-0700 0x31a Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007e9 IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.423200-0700 0x302 Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007e3 IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.423202-0700 0xa0e Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.423204-0700 0x2be Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007e5 IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.423214-0700 0x9f4 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.423221-0700 0x9a6 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.423223-0700 0x9c3 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.423225-0700 0x31d Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007ed IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.423227-0700 0xa27 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.424682-0700 0xa98 Default 0x0 0 0 kernel: Warning: Attempt to create a named entry from the kernel_object 2019-08-16 09:45:11.424740-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>buffer->GetAddressRange() failed (result = 0xe00002bf) 2019-08-16 09:45:11.424743-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDescriptor(1,18,0,0,0,0) failed (result = 0xe00002bf) 2019-08-16 09:45:11.424745-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) USBDriverKit:<private>CopyDeviceDescriptor() failed 2019-08-16 09:45:11.424757-0700 0x316 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Element value capacity 2100 2019-08-16 09:45:11.424769-0700 0x316 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report count: 1 2019-08-16 09:45:11.424770-0700 0x316 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report ID: 0 input:120 output:512 feature:0 2019-08-16 09:45:11.424791-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:279][0x1000007f9] CopyConfigurationDescriptor 2019-08-16 09:45:11.424791-0700 0x302 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Element value capacity 2100 2019-08-16 09:45:11.424793-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:379][0x1000007f9] Start failed: 0xe00002be 2019-08-16 09:45:11.424795-0700 0x318 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Element value capacity 2100 2019-08-16 09:45:11.424800-0700 0x2be Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Element value capacity 3424 2019-08-16 09:45:11.424802-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:54]Start:0xe00002be 2019-08-16 09:45:11.424805-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:96][0x1000007f9] Start failed: 0xe00002be 2019-08-16 09:45:11.424806-0700 0x302 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report count: 1 2019-08-16 09:45:11.424807-0700 0x302 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report ID: 0 input:120 output:512 feature:0 2019-08-16 09:45:11.424807-0700 0x318 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report count: 1 2019-08-16 09:45:11.424808-0700 0x318 Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report ID: 0 input:120 output:512 feature:0 2019-08-16 09:45:11.424810-0700 0x2be Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report count: 2 2019-08-16 09:45:11.424811-0700 0x2be Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report ID: 0 input:0 output:0 feature:0 2019-08-16 09:45:11.424814-0700 0x2be Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report ID: 236 input:520 output:520 feature:8 2019-08-16 09:45:11.424816-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserUSBHostHIDDevice.cpp:410][0x1000007f9] Close interface: 0x1000006c3 0x0 2019-08-16 09:45:11.424837-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:114][0x1000007f9] Stop: 0x0 2019-08-16 09:45:11.424839-0700 0xa98 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserUSBHostHIDDevice.cpp:103][0x1000007f9] Start ret: 0xe00002be 2019-08-16 09:45:11.424856-0700 0x31f Error 0x0 0 0 kernel: (IOHIDFamily) AppleUserUSBHostHIDDevice:0x1000007f9 IOHIDDevice::Start:0xe00002be 2019-08-16 09:45:11.424871-0700 0xa97 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) no services left, exiting 2019-08-16 09:45:11.424941-0700 0xa7b Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000006b8 open by AppleUserHIDEventDriver 0x1000007f5 (0x0) 2019-08-16 09:45:11.424982-0700 0xa7b Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserHIDEventService.cpp:139][0x1000007f5] Open interface: 0x1000007f4 2019-08-16 09:45:11.425038-0700 0xa7b Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserHIDEventDriver.cpp:145][0x1000007f5] parseElements: keyboard: 228 digitizer: 0 pointer: 0 0 scroll: 0 led: 3 2019-08-16 09:45:11.425063-0700 0xa7b Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:200][0x1000007f5] parseElements: vendor: 0 2019-08-16 09:45:11.425100-0700 0xa7b Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:457][0x1000007f5] Start ret: 0x0 2019-08-16 09:45:11.425110-0700 0xa7b Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:93][0x1000007f5] ASTRA keyboard usagePage: 1 usage: 6 vid: 6700 pid: 19369 2019-08-16 09:45:11.427941-0700 0x685 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000006b8 message: 0xe3ff8001 from: 0x1000007f4 1 2019-08-16 09:45:11.428675-0700 0xab0 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007e4 creating interfaces 2019-08-16 09:45:11.429125-0700 0xab2 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007e6 creating interfaces 2019-08-16 09:45:11.429955-0700 0xab4 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007e8 creating interfaces 2019-08-16 09:45:11.430103-0700 0xab5 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007f0 creating interfaces 2019-08-16 09:45:11.432178-0700 0xab1 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007e4 open by IOHIDEventDriver 0x10000081a (0x0) 2019-08-16 09:45:11.432479-0700 0xab1 Default 0x0 0 0 kernel: (IOHIDFamily) HID: Legacy shim 2 2019-08-16 09:45:11.434654-0700 0xab6 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007e8 open by IOHIDEventDriver 0x10000081b (0x0) 2019-08-16 09:45:11.434826-0700 0x2ab Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Element value capacity 1776 2019-08-16 09:45:11.434834-0700 0x2ab Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report count: 1 2019-08-16 09:45:11.434835-0700 0x2ab Default 0x0 0 0 kernel: (IOHIDFamily) [ElementContainer] Report ID: 0 input:0 output:0 feature:576 2019-08-16 09:45:11.434881-0700 0xab6 Default 0x0 0 0 kernel: (IOHIDFamily) HID: Legacy shim 2 2019-08-16 09:45:11.434896-0700 0xab7 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007f0 open by IOHIDEventDriver 0x10000081d (0x0) 2019-08-16 09:45:11.435112-0700 0xab7 Default 0x0 0 0 kernel: (IOHIDFamily) HID: Legacy shim 2 2019-08-16 09:45:11.435161-0700 0x2ab Default 0x0 0 0 kernel: (IOUSBHostHIDDevice) 000044.261376 IOUSBHostHIDDevice: IOUSBHostHIDDevice::start: unable to get interrupt pipe 2019-08-16 09:45:11.435285-0700 0x2ab Default 0x0 0 0 kernel: (IOUSBHostHIDDevice) 000044.261501 IOUSBHostHIDDevice: IOUSBHostHIDDevice::start: start has failed 2019-08-16 09:45:11.743408-0700 0x685 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007ee message: 0xe3ff8001 from: 0x100000825 1 2019-08-16 09:45:11.751389-0700 0xafa Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007ea open by AppleUserHIDEventDriver 0x10000082f (0x0) 2019-08-16 09:45:11.751410-0700 0xafa Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserHIDEventService.cpp:139][0x10000082f] Open interface: 0x10000082e 2019-08-16 09:45:11.751765-0700 0xafa Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserHIDEventDriver.cpp:145][0x10000082f] parseElements: keyboard: 1 digitizer: 0 pointer: 8367 0 scroll: 0 led: 0 2019-08-16 09:45:11.751896-0700 0xafa Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:200][0x10000082f] parseElements: vendor: 0 2019-08-16 09:45:11.751919-0700 0xafa Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:457][0x10000082f] Start ret: 0x0 2019-08-16 09:45:11.751926-0700 0xafa Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:93][0x10000082f] Stream Deck usagePage: 12 usage: 1 vid: 4057 pid: 96 2019-08-16 09:45:11.753625-0700 0xae1 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007fa open by AppleUserHIDEventDriver 0x10000082b (0x0) 2019-08-16 09:45:11.753646-0700 0xae1 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserHIDEventService.cpp:139][0x10000082b] Open interface: 0x100000827 2019-08-16 09:45:11.753654-0700 0xae1 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [IOUserHIDEventDriver.cpp:145][0x10000082b] parseElements: keyboard: 0 digitizer: 0 pointer: 5 0 scroll: 1 led: 0 2019-08-16 09:45:11.753703-0700 0xae1 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:200][0x10000082b] parseElements: vendor: 0 2019-08-16 09:45:11.753721-0700 0xae1 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:457][0x10000082b] Start ret: 0x0 2019-08-16 09:45:11.753728-0700 0xae1 Default 0x0 0 0 kernel: (AppleUserHIDDrivers) [AppleUserHIDEventDriver.cpp:93][0x10000082b] Genius USB Wheel Mouse usagePage: 1 usage: 2 vid: 1112 pid: 3 2019-08-16 09:45:11.754352-0700 0x685 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007ea message: 0xe3ff8001 from: 0x10000082e 1 2019-08-16 09:45:11.758275-0700 0x685 Debug 0x0 0 0 kernel: (IOHIDFamily) IOUSBHostHIDDevice:0x1000007fa message: 0xe3ff8001 from: 0x100000827 1 2019-08-16 09:45:11.957453-0700 0xb04 Default 0x0 0 0 kernel: (apfs) apfs_spec_read_wrapper:10869: apfs_spec_read_wrapper : f_info->fsr_offset 77824 f_info->fsr_length 36864 filesize 113136 2019-08-16 09:45:11.993340-0700 0x64a Default 0x0 0 0 kernel: (IOAudioFamily) + IOAudioEngine[<private>]::init(0x0) 2019-08-16 09:45:11.993341-0700 0x64a Default 0x0 0 0 kernel: (IOAudioFamily) properties(0x0) == NULL 2019-08-16 09:45:11.993353-0700 0x64a Default 0x0 0 0 kernel: (IOAudioFamily) +-IOAudioEngine[<private>]::setState(0x0. oldState=0) 2019-08-16 09:45:11.993355-0700 0x64a Default 0x0 0 0 kernel: (IOAudioFamily) - IOAudioEngine[<private>]::init(0x0) 2019-08-16 09:45:12.047126-0700 0xb0a Default 0x0 0 0 kernel: (apfs) apfs_spec_read_wrapper:10869: apfs_spec_read_wrapper : f_info->fsr_offset 77824 f_info->fsr_length 36864 filesize 113136 2019-08-16 09:45:12.523359-0700 0x61a Default 0x0 0 0 kernel: (AMDRadeonX5000) *** After calling TTL::initialize() 2019-08-16 09:45:12.530796-0700 0x61a Default 0x0 0 0 kernel: (AMDSupport) Accelerator successfully registered with controller. And my IOReg and OC EFI are here: iMac Pro.ioreg.zip OC 0.0.4 EFI.zip As far as I can tell from how everything is working, all I need to do is get BT to work reliably in Mojave and Catalina with OC as the bootloader and then I can switch from Clover to OC on my main install. Thanks for any help with this.
    1 point
  23. Using this method you'll got the proper kexts, and @MaLd0n will be able to create a DSDT for your machine. All Hackintoshes needs a DSDT fully patched.
    1 point
  24. @Badruzeus @maddie correct, log is written to a zero buffer and flushed to file. The entire buffer is written because the AMI FAT driver is junk and may corrupt if certain operations (e.g. enlargening the file) or too many of them are performed
    1 point
  25. Anyone else having issues with monitoring temps on Radeon VII using VirtualSMC sensors?
    1 point
  26. Version 3.0.2

    11,220 downloads

    macOS Unlocker V3.0 for VMware Workstation ========================================== +-----------------------------------------------------------------------------+ | IMPORTANT: | | ========== | | | | Always uninstall the previous version of the Unlocker before using a new | | version. Failure to do this could render VMware unusable. | | | +-----------------------------------------------------------------------------+ 1. Introduction --------------- Unlocker 3 is designed for VMware Workstation 11-15 and Player 7-15. If you are using an earlier product please continue using Unlocker 1. Version 3 has been tested against: * Workstation 11/12/14/15 on Windows and Linux * Workstation Player 7/12/14/15 on Windows and Linux The patch code carries out the following modifications dependent on the product being patched: * Fix vmware-vmx and derivatives to allow macOS to boot * Fix vmwarebase .dll or .so to allow Apple to be selected during VM creation * Download a copy of the latest VMware Tools for macOS Note that not all products recognise the darwin.iso via install tools menu item. You will have to manually mount the darwin.iso for example on Workstation 11 and Player 7. In all cases make sure VMware is not running, and any background guests have been shutdown. The code is written in Python. 2. Prerequisites ---------------- The code requires Python 2.7 to work. Most Linux distros ship with a compatible Python interpreter and should work without requiring any additional software. Windows Unlocker has a packaged version of the Python script using PyInstaller, and so does not require Python to be installed. 3. Limitations -------------- If you are using VMware Player or Workstation on Windows you may get a core dump. Latest Linux products are OK and do not show this problem. +-----------------------------------------------------------------------------+ | IMPORTANT: | | ========== | | | | If you create a new VM VMware may stop and create a core dump. | | There are two options to work around this issue: | | | | 1. Change the VM to be HW 10 - this does not affect performance. | | 2. Edit the VMX file and add: | | smc.version = "0" | | | +-----------------------------------------------------------------------------+ 4. Windows ---------- On Windows you will need to either run cmd.exe as Administrator or using Explorer right click on the command file and select "Run as administrator". win-install.cmd - patches VMware win-uninstall.cmd - restores VMware win-update-tools.cmd - retrieves latest macOS guest tools 5. Linux --------- On Linux you will need to be either root or use sudo to run the scripts. You may need to ensure the Linux scripts have execute permissions by running chmod +x against the 2 files. lnx-install.sh - patches VMware lnx-uninstall.sh - restores VMware lnx-update-tools.cmd - retrieves latest macOS guest tools 6. Thanks --------- Thanks to Zenith432 for originally building the C++ unlocker and Mac Son of Knife (MSoK) for all the testing and support. Thanks also to Sam B for finding the solution for ESXi 6 and helping me with debugging expertise. Sam also wrote the code for patching ESXi ELF files and modified the unlocker code to run on Python 3 in the ESXi 6.5 environment. History ------- 27/09/18 3.0.0 - First release 02/10/18 3.0.1 - Fixed gettools.py to work with Python 3 and correctly download darwinPre15.iso 10/10/18 3.0.2 - Fixed false positives from anti-virus software with Windows executables - Allow Python 2 and 3 to run the Python code from Bash scripts (c) 2011-2018 Dave Parsons
    1 point
×
×
  • Create New...