Jump to content

t3ch

Members
  • Posts

    73
  • Joined

  • Last visited

Everything posted by t3ch

  1. man. when you have time. for wifi and what is more interesting FTDIUsb .. thanks man. going to donate soon something more. FTDI works too. have installed CP210x drivers but probably was bad cable. so wifi left and bluetooth.. when time and one question. have noticed in general -> start app on launch there is Mickey1979 APP to start at startup. have removed it but why is there¿? For ALL important is to disconnect all usb devices when installing or booting. or HDMI. normaly if i have HDMI connected boot dont work. Another important thing is to disable sleep of disk if not work as should because you will land on black screen when goes to sleep. and here is something on bootargs what have learned. good for all: - alcid 1-3 # Audio - watchdog 0 # more here: https://developer.toradex.com/linux-bsp/how-to/linux-features/watchdog-linux/ - agdpmod=pikera # Graphics. more here: https://github.com/acidanthera/bugtracker/issues/1807 vit9696 # for intel and problems - dk.e1000=0 # more here: https://www.reddit.com/r/hackintosh/comments/tf4hpy/psa_monterey_123_and_i225v_panics_use_bootarg/ e1000=0 - igfxonln=1 # hdmi, audio?, more here: https://www.tonymacx86.com/threads/screen-sleep-stopped-working-after-update-to-mac-os-catalina-10-15-4.294025/page-3 - igfxagdc=0 # hdmi, audio problems. ( + platform-id only (00001659 or 00001b59) ) more here: https://www.tonymacx86.com/threads/intel-hd-630-not-working.321200/page-3 - uia_exclude=USR1;USR2 # USB3, more here: https://www.insanelymac.com/forum/topic/344719-what-is-the-right-way-to-get-usb-30-working-with-opencore/ AND Recommend for olarila.com to prevent paste of html into posts.*
  2. holaaa uuu have managed screen resolution !!! have went comparing prepared folders and found solution so for me works this: <key>PciRoot(0x0)/Pci(0x2,0x0)</key> <dict> <key>AAPL,ig-platform-id</key> <data>AADAhw==</data> <key>device-id</key> <data>FlkAAA==</data> <key>framebuffer-con1-alldata</key> <data>AQUJAAAIAACHAQAA</data> <key>framebuffer-con1-enable</key> <data>AQAAAA==</data> <key>framebuffer-con2-alldata</key> <string>&lt;02040a00 00080000 87010000&gt;</string> <key>framebuffer-con2-enable</key> <data>AQAAAA==</data> <key>framebuffer-fbmem</key> <data>AACQAA==</data> <key>framebuffer-patch-enable</key> <data>AQAAAA==</data> <key>framebuffer-stolenmem</key> <data>AAAwAQ==</data> </dict> by adding these two args: igfxonln=1 igfxagdc=0 have fixed hdmi. never was working.. oleee.! and sound works by chaning bootarg alcid from 1 to 3 .. kul man!
  3. oo thanks. i think this happen here too. i guess somehow is possible disable verbose or something like this? but it boot at the end into system?:) i guess mald0n will answer better.
  4. try not change all at once. try change first serial + uuid + one more thing and restart and then another.. check here:
  5. put more info like screenshot etc..
  6. well what worked for me was to create EFI partition first and then APFS. when have trying creating EFI second somehow didnt work. just for info.. and to change serial. OCAuxiliaryTools and try one by one thing if trying by your self.. more info here:
  7. checking, noticing soon. Bale this works too. looks if you dont change imacpro 1,1 to imac17,1 works. so what about screen resolution?
  8. hey. to add or change this in config.plist ok will try. but normaly i change anything i stuck on loading with url: www.apple.com/mac/support here is script if anyone like to play more.. it change all what is required.. but when i boot like i say always this url.. import xml.etree.ElementTree as ET # https://docs.python.org/3/library/xml.etree.elementtree.html import json import re #-- fromDir = "/Users/t3ch/EFI/EFI/OC/config.plist" tree = ET.parse(fromDir) #.getroot() root = tree.getroot() # config = [ { "searchKey":"SystemSerialNumber", "searchReplace":"C02QHAZZGG7L", }, { "searchKey":"SystemUUID", "searchReplace":"E9C67D0E-9EC8-436D-947D-C5D6F3202E84", }, { "searchKey":"SystemProductName", "searchReplace":"iMac17,1", }, { "searchKey":"MLB", "searchReplace":"C02540306CDGPF71M", } ] # log = [] #-- # def match(rgx,txt): x = re.match(rgx, txt) if x: return True return False # def searchKey(name): global config # at=-1 # for o in config: at+=1 if o["searchKey"]==name: return at return False # def doTheJob(): global config, log, root print("\nStarting PART 1") cnt = 0 checked = [] # for step2 waiting = [root,] # (step1) - Loop trough config.plist and find - modify specific keys - values defined in global config array/object while len(waiting): #print("Debug len(waiting): {}".format(len(waiting))) nextOf = -1 o = None roots = waiting.pop(0) for elm in roots: #print("{}.) tag: {} => {}".format( cnt, elm.tag, elm.text )) # tmp = searchKey( elm.text ) if tmp >= 0 and tmp is not False: o = config[tmp] print("{}.) Replacing({}): {} = {}".format( cnt, tmp, o["searchKey"], elm.text )) o["keyAt"] = tmp o["cntAt"] = cnt nextOf = cnt elif nextOf+1==cnt and o!=None: print("{}.) Replacing: {} for {}".format( cnt, elm.text, o["searchReplace"] )) # log.append( { "searchKey":o["searchKey"], "searchReplace":o["searchReplace"], "modified":elm.text, "keyAt":o["keyAt"], "cntAt":cnt, } ) # elm.text = o["searchReplace"] # nextOf = -1 o = None #elif elm.text is None or elm.text=="": # print("Setting empty on tag: {}".format(elm.tag)) # elm.text = "" cnt+=1 waiting.append( elm ) print("\nStarting PART 2") cntof=0 # (step2) - Loop trough global log aka SEARCH & DESTROY for elm in log: x = elm["modified"] # modified value we search & destroy r = elm["searchReplace"] # modified value we search & destroy if x not in checked: checked.append(x) # Loop trough all values and try find and modify strings that contain values that have been replaced. print("Searching for value: {}".format(x)) # cnt=0 waiting = [root,] while len(waiting): # roots = waiting.pop(0) for elm1 in roots: #print("{}/{}.) tag: {} => {}".format( cnt,cntof, elm1.tag, elm1.text )) if match(".*{}.*".format(x),"{}".format(elm1.text)): print("Fixing at {}/{} value {}".format(cnt,cntof,elm1.text)) tmp = elm1.text.replace(x,r) elm1.text = tmp waiting.append( elm1 ) cnt+=1 cntof+=1 #print("mem.len: {}".format( len(mem) )) #-- doTheJob() #-- print("Displaying log: ") print(json.dumps( log )) # tree.write("fixed.plist") #tree.write("fixed.plist",method='html') man where to add pciroot? under: - ACPI - Booter - DeviceProperties - Kernel - Misc - NVRAM - PlatformInfo - UEFI ? under DeviceProperties ok if i will manage this man.. so you think this should work: <key>DeviceProperties</key> <dict> <key>Add</key> <dict> <key>PciRoot(0x0)/Pci(0x2,0x0)</key> <dict> <key>AAPL,ig-platform-id</key> <data>AAAWGQ==</data> <key>framebuffer-fbmem</key> <data>AACQAA==</data> <key>framebuffer-patch-enable</key> <data>AQAAAA==</data> <key>framebuffer-stolenmem</key> <data>AAAwAQ==</data> </dict> </dict> <key>Delete</key> <dict/> </dict> ? have added it and restarted without nvram and it booted good but resolution can not change from 1024 to 1240x... and maybe this helps % ./gfxutil 00:00.0 8086:1904 /PCI0@0/MCHC@0 = PciRoot(0x0)/Pci(0x0,0x0) 00:02.0 8086:1916 /PCI0@0/IGPU@2 = PciRoot(0x0)/Pci(0x2,0x0) 00:14.0 8086:9d2f /PCI0@0/XHC@14 = PciRoot(0x0)/Pci(0x14,0x0) 00:14.2 8086:9d31 /PCI0@0/MALD@14,2 = PciRoot(0x0)/Pci(0x14,0x2) 00:16.0 8086:9d3a /PCI0@0/IMEI@16 = PciRoot(0x0)/Pci(0x16,0x0) 00:17.0 8086:9d03 /PCI0@0/SAT0@17 = PciRoot(0x0)/Pci(0x17,0x0) 00:1c.0 8086:9d10 /PCI0@0/RP01@1C = PciRoot(0x0)/Pci(0x1C,0x0) 00:1c.4 8086:9d14 /PCI0@0/RP05@1C,4 = PciRoot(0x0)/Pci(0x1C,0x4) 00:1f.3 8086:9d70 /PCI0@0/HDEF@1F,3 = PciRoot(0x0)/Pci(0x1F,0x3) 00:1c.5 8086:9d15 /PCI0@0/RP06@1C,5 = PciRoot(0x0)/Pci(0x1C,0x5) 00:1d.0 8086:9d18 /PCI0@0/RP09@1D = PciRoot(0x0)/Pci(0x1D,0x0) 00:1f.0 8086:9d48 /PCI0@0/LPCB@1F = PciRoot(0x0)/Pci(0x1F,0x0) 00:1f.2 8086:9d21 /PCI0@0/PPMC@1F,2 = PciRoot(0x0)/Pci(0x1F,0x2) 00:1f.4 8086:9d23 /PCI0@0/SBUS@1F,4 = PciRoot(0x0)/Pci(0x1F,0x4) 01:00.0 1002:6900 /PCI0@0/RP01@1C/GFX0@0 = PciRoot(0x0)/Pci(0x1C,0x0)/Pci(0x0,0x0) 02:00.0 10ec:8168 /PCI0@0/RP05@1C,4/PXSX@0 = PciRoot(0x0)/Pci(0x1C,0x4)/Pci(0x0,0x0) 04:00.0 10ec:522a /PCI0@0/RP09@1D/PXSX@0 = PciRoot(0x0)/Pci(0x1D,0x0)/Pci(0x0,0x0) 03:00.0 8086:3165 /PCI0@0/RP06@1C,5/PXSX@0 = PciRoot(0x0)/Pci(0x1C,0x5)/Pci(0x0,0x0)
  9. interesting. i am not a guy for this but maybe you should disable some bios things. maybe if your laptop have two graphic cards, switch to intel. or similar.. hope someone help you my friend. and bios need to haave support for uefi i guess. again am not sure.
  10. have created script to replace values but dont work.. here is runme data and trying to make simple donation. https://www.transfernow.net/dl/20221121kgtEV4Hr have made donation.* in message writes by t3ch please help.
  11. hola. got question for resolution how to change it? Option is only 1024x768. second question is about serial number. have tried to change all numbers in config.plist and restart but looks there is still the same..
  12. well. how to change serial? will create new post.
  13. working on modserial.py so it will read from generate-unique-machine-values.sh and search for keys/values that should be replaced. noticing and putting on git. hope you help me later.*** MLB i guess is board_serial right?? something like this: % python3 modserial.py 633.) Replacing(2): SystemProductName = SystemProductName 634.) Replacing: iMacPro1,1 for iMac17,1 635.) Replacing(0): SystemSerialNumber = SystemSerialNumber 636.) Replacing: C02TK0T8HX87 for C02QHAZZGG7L 637.) Replacing(1): SystemUUID = SystemUUID 638.) Replacing: 29E65D9E-5F5B-43F1-A61D-B4E663DE68E4 for E9C67D0E-9EC8-436D-947D-C5D6F3202E84 645.) Replacing(3): MLB = MLB 646.) Replacing: C02715301GUJG36FB for C02540306CDGPF71M 655.) Replacing(2): SystemProductName = SystemProductName 656.) Replacing: iMacPro1,1 for iMac17,1 657.) Replacing(0): SystemSerialNumber = SystemSerialNumber 658.) Replacing: C02TK0T8HX87 for C02QHAZZGG7L 659.) Replacing(1): SystemUUID = SystemUUID 660.) Replacing: 29E65D9E-5F5B-43F1-A61D-B4E663DE68E4 for E9C67D0E-9EC8-436D-947D-C5D6F3202E84 669.) Replacing(3): MLB = MLB 670.) Replacing: C02715301GUJG36FB for C02540306CDGPF71M 673.) Replacing(0): SystemSerialNumber = SystemSerialNumber 674.) Replacing: C02TK0T8HX87 for C02QHAZZGG7L 675.) Replacing(1): SystemUUID = SystemUUID 676.) Replacing: 29E65D9E-5F5B-43F1-A61D-B4E663DE68E4 for E9C67D0E-9EC8-436D-947D-C5D6F3202E84 723.) Replacing(2): SystemProductName = SystemProductName 724.) Replacing: iMacPro1,1 for iMac17,1 727.) Replacing(0): SystemSerialNumber = SystemSerialNumber 728.) Replacing: C02TK0T8HX87 for C02QHAZZGG7L 729.) Replacing(1): SystemUUID = SystemUUID 730.) Replacing: 29E65D9E-5F5B-43F1-A61D-B4E663DE68E4 for E9C67D0E-9EC8-436D-947D-C5D6F3202E84 Displaying log: [{"searchKey": "SystemProductName", "searchReplace": "iMac17,1", "modified": "iMacPro1,1", "keyAt": 2, "cntAt": 634}, {"searchKey": "SystemSerialNumber", "searchReplace": "C02QHAZZGG7L", "modified": "C02TK0T8HX87", "keyAt": 0, "cntAt": 636}, {"searchKey": "SystemUUID", "searchReplace": "E9C67D0E-9EC8-436D-947D-C5D6F3202E84", "modified": "29E65D9E-5F5B-43F1-A61D-B4E663DE68E4", "keyAt": 1, "cntAt": 638}, {"searchKey": "MLB", "searchReplace": "C02540306CDGPF71M", "modified": "C02715301GUJG36FB", "keyAt": 3, "cntAt": 646}, {"searchKey": "SystemProductName", "searchReplace": "iMac17,1", "modified": "iMacPro1,1", "keyAt": 2, "cntAt": 656}, {"searchKey": "SystemSerialNumber", "searchReplace": "C02QHAZZGG7L", "modified": "C02TK0T8HX87", "keyAt": 0, "cntAt": 658}, {"searchKey": "SystemUUID", "searchReplace": "E9C67D0E-9EC8-436D-947D-C5D6F3202E84", "modified": "29E65D9E-5F5B-43F1-A61D-B4E663DE68E4", "keyAt": 1, "cntAt": 660}, {"searchKey": "MLB", "searchReplace": "C02540306CDGPF71M", "modified": "C02715301GUJG36FB", "keyAt": 3, "cntAt": 670}, {"searchKey": "SystemSerialNumber", "searchReplace": "C02QHAZZGG7L", "modified": "C02TK0T8HX87", "keyAt": 0, "cntAt": 674}, {"searchKey": "SystemUUID", "searchReplace": "E9C67D0E-9EC8-436D-947D-C5D6F3202E84", "modified": "29E65D9E-5F5B-43F1-A61D-B4E663DE68E4", "keyAt": 1, "cntAt": 676}, {"searchKey": "SystemProductName", "searchReplace": "iMac17,1", "modified": "iMacPro1,1", "keyAt": 2, "cntAt": 724}, {"searchKey": "SystemSerialNumber", "searchReplace": "C02QHAZZGG7L", "modified": "C02TK0T8HX87", "keyAt": 0, "cntAt": 728}, {"searchKey": "SystemUUID", "searchReplace": "E9C67D0E-9EC8-436D-947D-C5D6F3202E84", "modified": "29E65D9E-5F5B-43F1-A61D-B4E663DE68E4", "keyAt": 1, "cntAt": 730}] noticing when ready.
  14. hey! Now works with Desktop Skylake prepared EFI and looks work all faster. great! but with resolution what should i do¿? Thanks* why is missing "dict" GUI in config.plist on EFI ? should i add this for screenresolution? if i check config.plist UEFI -> OUTPUT -> Resolution is set to MAX. and does exists any program that replace SystemSerialNumber, SystemUUID, SystemProductName that is generated with bash generate-unique-machine-values.sh -c 1 --model="iMac17,1" ? maybe i can create it if dont exists. should this work if i replace this with editor?by hand..? looks will need to try. for screen resolution please help
  15. man this reset nvram i am scared about it.. i think it chganged all bios settings. anyway. i think on partition EFI was not installed nothing. i guess without usb wont work. normal i use linux installation to make partitions. how will you partition your disk to run ubuntu and osx on.? and are you people on any irc servers¿ maybe we can speak there because is faster.. probably with reinstalling ubuntu it will use its boot order and maybe osx will be supported there. will try. now my disk partitions looks like this: t3ch@iMac-Pro-de-blaz ~ % diskutil list /dev/disk0 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *1.0 TB disk0 1: Apple_APFS Container disk1 500.1 GB disk0s1 2: Linux Swap 32.0 GB disk0s2 3: EFI NO NAME 299.9 MB disk0s3 (free space) 467.8 GB - /dev/disk1 (synthesized): #: TYPE NAME SIZE IDENTIFIER 0: APFS Container Scheme - +500.1 GB disk1 Physical Store disk0s1 1: APFS Volume Sin título - Datos 7.5 GB disk1s1 2: APFS Volume Preboot 1.8 GB disk1s2 3: APFS Volume Recovery 1.1 GB disk1s3 4: APFS Volume Sin título 8.8 GB disk1s4 5: APFS Snapshot com.apple.os.update-... 8.8 GB disk1s4s1 6: APFS Volume VM 1.1 GB disk1s6
  16. hola. i have HP and installation went all perfect because have upgrading from catalina to ventura so all partitions have been prepared, what was missing was resolution it was 1024x764... so i wanted to increase this to 1280... well there was still old EFI partition from catalina. then i downloaded SkyLake folder and removed old APPLE on EFI. i think this was big mistake to remove APPLE ??? well when i restart i showed url apple.com/osx/support or something like this.. and you are fucked up. even bios didnt work as before. for luck there still works boot menu so like this have managed all back. but i tell you bios still dont work as before. now again i will try to manage EFI partition so it can boot without usb. somehow i think someone can put little more information on how to manage these things.. ¿ hear you, love you* t3ch
  17. Hello all! Love you all!!! have problems with arduino ide2 and port recognition.. have updated from catalina to ventura. all went well and perfect !! this is incredible!! no data lose.. !! thanks guys. making a lot of advertisement on fb if no problem. for donation right now i am short. well with port problems it dont detect no devices. i am trying with ESP32 but in /dev there is nothging new not even cu.... dont exists. i saw there is loaded kext com.silabs.driver.CP210xVCPDriver but looks no help. thanks!!! love you. ps.: if you need help with page and annoying, bad displaying advertisements. well it can be done so all looks good. well with this can help. if you like just say.* anyway when your eyes get use to it you can accept it..
  18. now smiles work. in dmesg for "bug trackpad clicks" when click left or right button display: buttons 0synaptics_parse_hw_state: =============NORMAL PACKET=============synaptics_parse_hw_state: finger 0 pressure 0 width 8 synaptics_parse_hw_state lastFingerCount=0 clampedFingerCount=0 left=0VoodooPS2 w: 0 buttons 0synaptics_parse_hw_state: =============NORMAL PACKET=============synaptics_parse_hw_state: finger 0 pressure 0 width 8 synaptics_parse_hw_state lastFingerCount=0 clampedFingerCount=0 left=0VoodooPS2 w: 0 buttons 0synaptics_parse_hw_state: =============NORMAL PACKET=============synaptics_parse_hw_state: finger 0 pressure 0 width 8 synaptics_parse_hw_state lastFingerCount=0 clampedFingerCount=0 left=0VoodooPS2 w: 0 buttons 0synaptics_parse_hw_state: =============NORMAL PACKET=============synaptics_parse_hw_state: finger 0 pressure 0 width 8 synaptics_parse_hw_state lastFingerCount=0 clampedFingerCount=0 left=0VoodooPS2 w: 0 buttons 0synaptics_parse_hw_state: =============NORMAL PACKET=============synaptics_parse_hw_state: finger 0 pressure 0 width 8 synaptics_parse_hw_state lastFingerCount=0 clampedFingerCount=0 left=0ApplePS2Keyboard: sending key 1c=24 down ApplePS2Keyboard::message: type=e3ff8066, provider=<ptr>, argument=<ptr>, argument=447af25f, cmp=e0028010 ApplePS2Keyboard::message: type=e3ff806e, provider=<ptr>, argument=<ptr>, argument=447af25f, cmp=e0028010 so it notice click but nothing happen
  19. PrinceAnuj have managed with usb mouse yes, for installation. but after install clicks on trackpad still no work. on high sierra was working. like to fix it as was before. with sound no luck too. have used clover configurator to inject kexts and set layoutX number "alcid" but not working yet. last time MaLd0n managed to work.. wow you cant write smilies. i smile all the time. in hackintool -> sound there writes driver i guess conexant CX20724 have checked timemachine from high sierra. S/L/E -> there is CX20724.kext and i remember maldon helped with this. but now how to copy this into S/L/E? with sudo cp -R CX20724.kext /System/Library/Extensions/ it writes: ... -MacBook-Pro Extensions % sudo cp -rf CX20724.kext /System/Library/Extensions/ cp: /System/Library/Extensions/CX20724.kext: Read-only file system cp: CX20724.kext: unable to copy extended attributes to /System/Library/Extensions/CX20724.kext: Read-only file system cp: /System/Library/Extensions/CX20724.kext/Contents: No such file or directory cp: CX20724.kext/Contents: unable to copy extended attributes to /System/Library/Extensions/CX20724.kext/Contents: No such file or directory cp: /System/Library/Extensions/CX20724.kext/Contents/Info.plist: No such file or directory cp: /System/Library/Extensions/CX20724.kext/Contents/MacOS: No such file or directory cp: CX20724.kext/Contents/MacOS: unable to copy extended attributes to /System/Library/Extensions/CX20724.kext/Contents/MacOS: No such file or directory cp: /System/Library/Extensions/CX20724.kext/Contents/MacOS/AppleHDA: No such file or directory cp: /System/Library/Extensions/CX20724.kext/Contents/Resources: No such file or directory cp: CX20724.kext/Contents/Resources: unable to copy extended attributes to /System/Library/Extensions/CX20724.kext/Contents/Resources: No such file or directory cp: /System/Library/Extensions/CX20724.kext/Contents/Resources/layout2.xml.zlib: No such file or directory cp: /System/Library/Extensions/CX20724.kext/Contents/Resources/Platforms.xml.zlib: No such file or directory
  20. and another question on audio and applealc. ok i have already lilu.kext in EFI/CLOVER/kexts/Other/.. so missing applealc.kext. ok downloading from this tutorial: https://www.olarila.com/topic/6074-guide-easy-audio-solution-with-applealc-clover-and-opencore/ then when is extracted and for example you check directory ALC892 and there are files layout1-xx.xml. Do i need to move these files anywhere or that directory? copy/paste? or just set alcid for some layoutX.xml ? thanks
  21. lspci ? 00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers (rev 08) 00:02.0 VGA compatible controller: Intel Corporation Skylake GT2 [HD Graphics 520] (rev 07) 00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21) 00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21) 00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21) 00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21) 00:1c.0 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 (rev f1) 00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1) 00:1d.0 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #9 (rev f1) 00:1f.0 ISA bridge: Intel Corporation Sunrise Point-LP LPC Controller (rev 21) 00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21) 00:1f.3 Multimedia audio controller: Intel Corporation Sunrise Point-LP HD Audio (rev 21) 00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21) 01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15) 02:00.0 Network controller: Intel Corporation Wireless 3165 (rev 81) 03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS522A PCI Express Card Reader (rev 01) good news, now it boot from EFI/CLOVER before was installed old clover 2018.. strange. have downloaded from downloads/clover folder/efi catalina.zip and replaced and work like from boot image. but click buttons still no luck.
  22. and tmemachine don't backup efi partition :x there was interesting kexts I think. how to fix this touchpad buttons ? have noticed it dont load from efi partition but just from usb image. need to fix boot maybe later buttons work.
  23. have installed Catalina! yeey. but have formatted before. now kexts are missing like mouse touchpad (just click left, right) and sound . but have kexts from high sierra back-up on Time Machine. any suggestions?
  24. i have one mouse usb original you think it should work with other pc and installation? should original mac be turned off? now running intallation from highsierra. lets see what happen.
  25. no is touchpad it moves but clicks dont work. have backedup everything. you think should try install from highsierra by clicking on catalina installation. from there mouse works..? or is possible to add some kext to installation usb.? or something in clover..?
×
×
  • Create New...