Sherlocks Posted December 14, 2016 Share Posted December 14, 2016 The new script saves in your root partition, as you posted before. There must be somewhere else another nvram.plist, who got read from clover. Can you find it and delete it? Maybe look for `bdmesg|grep nvram.plist` where it got loaded. here Last login: Thu Dec 15 01:12:28 on console Supreme-MBP:~ supreme$ bdmesg|grep nvram.plist 0:390 0:000 Loading nvram.plist from Vol 'Macintosh SSD' - loaded, size=3718 Supreme-MBP:~ supreme$ i have only nvram file in root. already tested remove and see result. but still not success. The new script saves in your root partition, as you posted before. There must be somewhere else another nvram.plist, who got read from clover. Can you find it and delete it? Maybe look for `bdmesg|grep nvram.plist` where it got loaded. my steps for test 1. install clover from 3961 full pkg 2. test brightness, etc, nvram is not work properly. i downloaded old script from r3960 repo. and like you said, i did terminal command. it's work. as result, your script has something wrong. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334227 Share on other sites More sharing options...
smolderas Posted December 14, 2016 Share Posted December 14, 2016 here Last login: Thu Dec 15 01:12:28 on console Supreme-MBP:~ supreme$ bdmesg|grep nvram.plist 0:390 0:000 Loading nvram.plist from Vol 'Macintosh SSD' - loaded, size=3718 Supreme-MBP:~ supreme$ i have only nvram file in root. already tested remove and see result. but still not success. my steps for test 1. install clover from 3961 full pkg 2. test brightness, etc, nvram is not work properly. i downloaded old script from r3960 repo. and like you said, i did terminal command. it's work. as result, your script has something wrong. I'm assuming you have first tested with the newest script (with LogoutHook as well?)... I don't want to force anybody to use it, but it is needed for FileVault 2 and I'm more then willing to fix this issue. You are free to use the old one. But I like to debug it with you. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334252 Share on other sites More sharing options...
Sherlocks Posted December 14, 2016 Share Posted December 14, 2016 I'm assuming you have first tested with the newest script (with LogoutHook as well?)... I don't want to force anybody to use it, but it is needed for FileVault 2 and I'm more then willing to fix this issue. You are free to use the old one. But I like to debug it with you. Latest clover has your script. It needs to fix this issue. I'm in late time. So if you attached some files, i will give you information and report after i wake up or have free time. 나의 LG-F410S 의 Tapatalk에서 보냄 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334270 Share on other sites More sharing options...
PMheart Posted December 14, 2016 Share Posted December 14, 2016 Could you please post the result of the following: diskutil list I don't see any issue for having an EFI partition. I even think if you ever try to repair your disk in macOS, it will ensure that an EFI partition exists. Whatever the case maybe for not having an EFI partition, I'll post soon a newer version of the script with a fallback to the root partition, if there is no EFI partition. With that it should work for everybody (I think). Sorry for any inconvenience. Edit: Here is the script with the fallback to the root partition. For everyone else just copy it to its location and change its executable bit: sudo cp ~/Downloads/80.save_nvram_plist.local.txt /etc/rc.shutdown.d/80.save_nvram_plist.local sudo chmod 755 /etc/rc.shutdown.d/80.save_nvram_plist.local If you don't have ESP then it's impossible to do anything here.. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334417 Share on other sites More sharing options...
smolderas Posted December 14, 2016 Share Posted December 14, 2016 If you don't have ESP then it's impossible to do anything here.. Actually the updated script saves to root partition of the boot volume as fallback, if it can't find or save to the ESP. Did you test it? Edit: I mean not the script from r3961, but from post #11942 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334419 Share on other sites More sharing options...
PMheart Posted December 14, 2016 Share Posted December 14, 2016 Actually the updated script saves to root partition of the boot volume as fallback, if it can't find or save to the ESP. Did you test it? Edit: I mean not the script from r3961, but from post #11942 Ah sorry no... Have no need for emulated NVRAM. R/W NVRAM natively... Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334423 Share on other sites More sharing options...
Sherlocks Posted December 15, 2016 Share Posted December 15, 2016 Actually the updated script saves to root partition of the boot volume as fallback, if it can't find or save to the ESP. Did you test it? Edit: I mean not the script from r3961, but from post #11942 i found wrong code. this is function saveNVRAM { local rootDevice=$(LC_ALL=C diskutil info /|awk '{ if ($1 == "Device" && $2 == "Node:") {print $3}}' | sed -nE 's#^/dev/([^ ]*).*#\1#p') it cause to not properly work nvram save after reboot. i returned this code from old script. local rootDevice=$(df -l / | sed -nE 's#^/dev/([^ ]*).*#\1#p') i checked it. brightness and other values are working. you find solution to fix this issue from this hint. i edited your latest script in dropbox. Last login: Thu Dec 15 11:36:38 on console Supreme-MBP:~ supreme$ sudo /etc/rc.shutdown.d/80.save_nvram_plist.local Password: NVRAM saved to '/nvram.plist' [disk0s4] Supreme-MBP:~ supreme$ sudo nvram myvar="this is a new variable" Supreme-MBP:~ supreme$ nvram -p|grep myvar myvar this is a new variable Supreme-MBP:~ supreme$ bdmesg|grep nvram.plist 0:389 0:000 Loading nvram.plist from Vol 'Macintosh SSD' - loaded, size=7257 Supreme-MBP:~ supreme$ thank you. 80.save_nvram_plist.local.zip 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334506 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 i found wrong code. this is it cause to not properly work nvram save after reboot. i returned this code from old script. i checked it. brightness and other values are working. you find solution to fix this issue from this hint. i edited your latest script in dropbox. thank you. Cool. I just need to test it with a core storage volume too, which is needed for Fusion drives or FileVault. Edit: It works as well. Thanks again. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334534 Share on other sites More sharing options...
Slice Posted December 15, 2016 Share Posted December 15, 2016 i found wrong code. this is it cause to not properly work nvram save after reboot. i returned this code from old script. i checked it. brightness and other values are working. you find solution to fix this issue from this hint. i edited your latest script in dropbox. thank you. Old script uses command "df -i" which will not find EFI partition and so can't be used for new purpose. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334539 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 Old script uses command "df -i" which will not find EFI partition and so can't be used for new purpose. Although you are right, it is not necessary in this case. That line from Sherlocks is used only in fallback case, that means if the script can't find or can't save to EFI partition, it will fallback to root, which is fine with "df -i" even on core storage. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334545 Share on other sites More sharing options...
Slice Posted December 15, 2016 Share Posted December 15, 2016 i found wrong code. this is it cause to not properly work nvram save after reboot. i returned this code from old script. i checked it. brightness and other values are working. you find solution to fix this issue from this hint. i edited your latest script in dropbox. thank you. No, it is not safe to EFI NVRAM saved to '/nvram.plist' [disk1s3] It is root volume. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334554 Share on other sites More sharing options...
Sherlocks Posted December 15, 2016 Share Posted December 15, 2016 No, it is not safe to EFI NVRAM saved to '/nvram.plist' [disk1s3] It is root volume.I just found this work or not work. I dont know how get work this. I returned r3960 build until fix this issue. 나의 LG-F410S 의 Tapatalk에서 보냄 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334555 Share on other sites More sharing options...
Slice Posted December 15, 2016 Share Posted December 15, 2016 The script 3961 is not working for my comp #4 too. For me the problem is "findFirstAppleBootDevice" which search for recovery. I have no it or have several HDD with several recovery. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334558 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 The script 3961 is not working for my comp #4 too. For me the problem is "findFirstAppleBootDevice" which search for recovery. I have no it or have several HDD with several recovery. I see. Could you please send me your "diskutil list". I'll look for a solution for everybody. Edit: I need both outputs of these please: diskutil list and diskutil info / Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334572 Share on other sites More sharing options...
Slice Posted December 15, 2016 Share Posted December 15, 2016 bash-3.2# diskutil list /dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *250.1 GB disk0 1: Microsoft Basic Data Win7Pro 250.1 GB disk0s1 /dev/disk1 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *250.1 GB disk1 1: EFI 209.7 MB disk1s1 2: Microsoft Basic Data Windows 46.0 GB disk1s2 3: Apple_HFS MacHD 113.6 GB disk1s3 4: Microsoft Reserved 133.2 MB disk1s4 5: Microsoft Basic Data Data 90.0 GB disk1s5 /dev/disk2 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *1.0 GB disk2 1: EFI 201.3 MB disk2s1 2: Apple_HFS Macintosh 821.6 MB disk2s2 bash-3.2# 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334576 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 On this note, does following work for everybody? bless --info --getBoot Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334578 Share on other sites More sharing options...
Sherlocks Posted December 15, 2016 Share Posted December 15, 2016 I see. Could you please send me your "diskutil list". I'll look for a solution for everybody. Edit: I need both outputs of these please: diskutil list and diskutil info / report. i updated 10.12.3 dp1 today. after updating osx, reboot system, clover automately enter windows drive(i installed windows 7). i don't see problem in previous clover(r3960 or older). i set default boot volume "Macintosh SSD". but once fail. after booted windows 7, reboot system. i have to enter "Macintosh SSD". and 2nd boot, no problem. maybe nvram has still problem. Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334579 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 report. i updated 10.12.3 dp1 today. after updating osx, reboot system, clover automately enter windows drive(i installed windows 7). i don't see problem in previous clover(r3960 or older). i set default boot volume "Macintosh SSD". but once fail. after booted windows 7, reboot system. i have to enter "Macintosh SSD". and 2nd boot, no problem. maybe nvram has still problem. Check after reboot, if you have "efi-boot-device" in your NVRAM and post the result of the following after a reboot in macOS please: bless --info --getBoot Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334581 Share on other sites More sharing options...
Sherlocks Posted December 15, 2016 Share Posted December 15, 2016 Check after reboot, if you have "efi-boot-device" in your NVRAM and post the result of the following after a reboot in macOS please: bless --info --getBoot after installed clover from official r3691pkg Last login: Thu Dec 15 17:30:31 on console Supreme-MBP:~ supreme$ diskutil list /dev/disk0 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *256.1 GB disk0 1: EFI EFI 209.7 MB disk0s1 2: Microsoft Basic Data Windows 7 110.0 GB disk0s2 3: Microsoft Basic Data Win Data 60.1 GB disk0s3 4: Apple_HFS Macintosh SSD 69.1 GB disk0s4 5: Apple_Boot Recovery HD 650.0 MB disk0s5 6: Apple_HFS Mac Data 16.0 GB disk0s6 Supreme-MBP:~ supreme$ sudo /etc/rc.shutdown.d/80.save_nvram_plist.local Password: Supreme-MBP:~ supreme$ sudo nvram myvar="this is a new variable" Supreme-MBP:~ supreme$ nvram -p|grep myvar myvar this is a new variable Supreme-MBP:~ supreme$ bdmesg|grep nvram.plist 0:387 0:000 Loading nvram.plist from Vol 'Macintosh SSD' - loaded, size=7326 Supreme-MBP:~ supreme$ bless --info --getBoot Can't access "efi-boot-device" NVRAM variable Supreme-MBP:~ supreme$ Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334585 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 after installed clover from official r3691pkg Your issue with 10.12.3 has to do with clover can't correctly or won't set "efi-boot-device" in your NVRAM, and has nothing to do with the script. Please read the bug report. bash-3.2# diskutil list /dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *250.1 GB disk0 1: Microsoft Basic Data Win7Pro 250.1 GB disk0s1 /dev/disk1 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *250.1 GB disk1 1: EFI 209.7 MB disk1s1 2: Microsoft Basic Data Windows 46.0 GB disk1s2 3: Apple_HFS MacHD 113.6 GB disk1s3 4: Microsoft Reserved 133.2 MB disk1s4 5: Microsoft Basic Data Data 90.0 GB disk1s5 /dev/disk2 #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *1.0 GB disk2 1: EFI 201.3 MB disk2s1 2: Apple_HFS Macintosh 821.6 MB disk2s2 bash-3.2# Thanks. I think I have a working solution for everybody. I'll test it and post it soon. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334588 Share on other sites More sharing options...
Fljagd Posted December 15, 2016 Share Posted December 15, 2016 If the information can help Mac-Pro-de-Fljagd:~ fljagd$ diskutil info /Device Identifier: disk1s2Device Node: /dev/disk1s2Whole: NoPart of Whole: disk1Volume Name: SierraMounted: YesMount Point: /Partition Type: Apple_HFSFile System Personality: Journaled HFS+Type (Bundle): hfsName (User Visible): Mac OS Extended (Journaled)Journal: Journal size 16384 KB at offset 0x37e000Owners: EnabledOS Can Be Installed: YesRecovery Disk: disk1s3Media Type: GenericProtocol: SATASMART Status: VerifiedVolume UUID: 9DC969DC-85A1-303B-91E9-1A014D8D81A4Disk / Partition UUID: A9DD86F4-69CE-4B54-86A3-9A2D95BBD68ADisk Size: 119.2 GB (119174365184 Bytes) (exactly 232762432 512-Byte-Units)Device Block Size: 512 BytesVolume Total Space: 119.2 GB (119174365184 Bytes) (exactly 232762432 512-Byte-Units)Volume Used Space: 62.3 GB (62279954432 Bytes) (exactly 121640536 512-Byte-Units) (52.3%)Volume Available Space: 56.9 GB (56894410752 Bytes) (exactly 111121896 512-Byte-Units) (47.7%)Allocation Block Size: 4096 BytesRead-Only Media: NoRead-Only Volume: NoDevice Location: InternalRemovable Media: FixedSolid State: Yes Last login: Thu Dec 15 09:31:33 on ttys001Mac-Pro-de-Fljagd:~ fljagd$ diskutil list/dev/disk0 (internal, physical):#: TYPE NAME SIZE IDENTIFIER0: GUID_partition_scheme *2.0 TB disk01: EFI EFI 209.7 MB disk0s12: Apple_HFS TimeMachine 1.0 TB disk0s23: Apple_HFS Stockage 999.9 GB disk0s3/dev/disk1 (internal, physical):#: TYPE NAME SIZE IDENTIFIER0: GUID_partition_scheme *120.0 GB disk11: EFI EFI 209.7 MB disk1s12: Apple_HFS Sierra 119.2 GB disk1s23: Apple_Boot Recovery HD 650.0 MB disk1s3Mac-Pro-de-Fljagd:~ fljagd$ Last login: Thu Dec 15 09:47:55 on ttys001Mac-Pro-de-Fljagd:~ fljagd$ bdmesg0:100 0:100 MemLog inited, TSC freq: 32999963500:100 0:0000:100 0:000 Now is 15.12.2016, 8:9:11 (GMT)0:100 0:000 Starting Clover revision: 3962 on American Megatrends EFI0:100 0:000 Build with: [Args: -mc --no-usb -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -t XCODE5 | -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -a X64 -b RELEASE -t XCODE5 -n 13 | OS: 10.12.2 | XCODE: 8.2]0:100 0:000 SelfDevicePath=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,E306BFEC-2CD4-47F2-B260-BC8AF4736067,0x28,0x64000) @C88C4B180:100 0:000 SelfDirPath = \EFI\BOOT0:100 0:000 === [ Get Smbios ] ========================================0:100 0:000 Type 16 Index = 00:100 0:000 Total Memory Slots Count = 80:100 0:000 Type 17 Index = 00:100 0:000 SmbiosTable.Type17->Speed = 2666MHz0:100 0:000 SmbiosTable.Type17->Size = 4096MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A10:100 0:000 SmbiosTable.Type17->Vendor = G-Skill0:100 0:000 SmbiosTable.Type17->SerialNumber = 000000000:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR0:100 0:000 Type 17 Index = 10:100 0:000 SmbiosTable.Type17->Speed = 2666MHz0:100 0:000 SmbiosTable.Type17->Size = 4096MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A20:100 0:000 SmbiosTable.Type17->Vendor = G-Skill0:100 0:000 SmbiosTable.Type17->SerialNumber = 000000000:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR0:100 0:000 Type 17 Index = 20:100 0:000 SmbiosTable.Type17->Speed = 2666MHz0:100 0:000 SmbiosTable.Type17->Size = 4096MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B10:100 0:000 SmbiosTable.Type17->Vendor = G-Skill0:100 0:000 SmbiosTable.Type17->SerialNumber = 000000000:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR0:100 0:000 Type 17 Index = 30:100 0:000 SmbiosTable.Type17->Speed = 2666MHz0:100 0:000 SmbiosTable.Type17->Size = 4096MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B20:100 0:000 SmbiosTable.Type17->Vendor = G-Skill0:100 0:000 SmbiosTable.Type17->SerialNumber = 000000000:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR0:100 0:000 Type 17 Index = 40:100 0:000 Ignoring insane frequency value 0MHz0:100 0:000 SmbiosTable.Type17->Speed = 0MHz0:100 0:000 SmbiosTable.Type17->Size = 0MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C10:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 50:100 0:000 Ignoring insane frequency value 0MHz0:100 0:000 SmbiosTable.Type17->Speed = 0MHz0:100 0:000 SmbiosTable.Type17->Size = 0MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C20:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 60:100 0:000 Ignoring insane frequency value 0MHz0:100 0:000 SmbiosTable.Type17->Speed = 0MHz0:100 0:000 SmbiosTable.Type17->Size = 0MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D10:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 70:100 0:000 Ignoring insane frequency value 0MHz0:100 0:000 SmbiosTable.Type17->Speed = 0MHz0:100 0:000 SmbiosTable.Type17->Size = 0MB0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D20:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Boot status=00:100 0:000 Running on: 'All Series' with board 'X99-A'0:100 0:000 === [ GetCPUProperties ] ==================================0:100 0:000 CPU Vendor = 756E6547 Model=306F20:100 0:000 The CPU supported SSE4.10:100 0:000 got cores from CPUID_1 = 00:100 0:000 The CPU supported turbo0:100 0:000 BrandString = Intel® Core i7-5820K CPU @ 3.30GHz0:100 0:000 MSR 0xE2 before patch 000084000:100 0:000 MSR 0xE2 is locked, PM patches will be turned on0:100 0:000 MSR 0xE4 000104140:100 0:000 MSR 0xCE 20080C3B_F38121000:100 0:000 MSR 0x1B0 000000000:100 0:000 FSBFrequency=100MHz DMIvalue=100000kHz0:100 0:000 Corrected FSBFrequency=100MHz0:100 0:000 Vendor/Model/Stepping: 0x756E6547/0x3F/0x20:100 0:000 Family/ExtFamily: 0x6/0x00:100 0:000 MaxDiv/MinDiv: 33.0/120:100 0:000 Turbo: 43/43/43/430:100 0:000 Features: 0xBFEBFBFF0:100 0:000 Threads: 120:100 0:000 Cores: 60:100 0:000 FSB: 100 MHz0:100 0:000 CPU: 3300 MHz0:100 0:000 TSC: 3300 MHz0:100 0:000 PIS: 400 MHz0:100 0:000 === [ GetDevices ] ========================================0:100 0:000 PCI (00|00:03.00) : 8086 2F08 class=0604000:100 0:000 PCI (00|01:00.00) : 1002 679A class=0300000:100 0:000 - GFX: Model=AMD Radeon HD 7950/8950/R9 280 (ATI/AMD)0:100 0:000 - RADEON_BIOS_0_SCRATCH = 0x0000002C0:100 0:000 PCI (00|01:00.01) : 1002 AAA0 class=0403000:100 0:000 - HDMI Audio:0:100 0:000 PCI (00|00:01.00) : 8086 2F02 class=0604000:100 0:000 PCI (00|00:01.01) : 8086 2F03 class=0604000:100 0:000 PCI (00|00:00.00) : 8086 2F00 class=0600000:100 0:000 PCI (00|00:05.00) : 8086 2F28 class=0880000:100 0:000 PCI (00|00:05.01) : 8086 2F29 class=0880000:100 0:000 PCI (00|00:05.02) : 8086 2F2A class=0880000:100 0:000 PCI (00|00:05.04) : 8086 2F2C class=0800200:100 0:000 PCI (00|00:05.06) : FFFF FFFF class=FFFFFF0:100 0:000 PCI (00|00:1F.00) : 8086 8D47 class=0601000:100 0:000 PCI (00|00:1F.02) : 8086 8D02 class=0106010:100 0:000 PCI (00|00:1F.03) : 8086 8D22 class=0C05000:100 0:000 PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF0:100 0:000 PCI (00|00:11.00) : 8086 8D7C class=FF00000:100 0:000 PCI (00|00:11.04) : 8086 8D62 class=0106010:100 0:000 PCI (00|00:14.00) : 8086 8D31 class=0C03300:100 0:000 PCI (00|00:16.00) : 8086 8D3A class=0780000:100 0:000 PCI (00|00:16.01) : FFFF FFFF class=FFFFFF0:100 0:000 PCI (00|00:16.02) : FFFF FFFF class=FFFFFF0:100 0:000 PCI (00|00:16.03) : FFFF FFFF class=FFFFFF0:100 0:000 PCI (00|00:19.00) : 8086 15A1 class=0200000:100 0:000 - LAN: 0 Vendor=Intel0:100 0:000 PCI (00|00:1A.00) : 8086 8D2D class=0C03200:100 0:000 PCI (00|00:1B.00) : 8086 8D20 class=0403000:100 0:000 PCI (00|00:1C.00) : 8086 8D10 class=0604000:100 0:000 PCI (00|00:1C.04) : 8086 8D18 class=0604000:100 0:000 PCI (00|05:00.00) : 1B21 1142 class=0C03300:100 0:000 PCI (00|00:1D.00) : 8086 8D26 class=0C03200:100 0:000 === [ GetDefaultSettings ] ================================0:100 0:000 Clover load options size = 0 bytes0:105 0:005 EFI\CLOVER\config.plist loaded: Success0:105 0:000 === [ GetListOfThemes ] ===================================0:107 0:001 - [00]: blur0:107 0:000 - [01]: christmas - bad theme because theme.plist can't be load0:108 0:000 - [01]: embedded0:109 0:001 - [01]: newyear0:110 0:001 - [02]: random0:110 0:000 === [ Found config plists ] ===============================0:110 0:000 - config.plist0:110 0:000 - config1.plist0:111 0:001 === [ GetEarlyUserSettings ] ==============================0:111 0:000 timeout set to 20:111 0:000 Custom boot CUSTOM_BOOT_DISABLED (0x0)0:111 0:000 KextsToPatch: 2 requested0:111 0:000 - [00]: IOAHCIBlockStorage (Trim Enabler) :: BinPatch :: data len: 100:111 0:000 - [01]: AppleUSBXHCIPCI (Change 15 Port Limit To 30 in XHCI Kext 10.12(99-series)) :: BinPatch :: data len: 70:111 0:000 KernelToPatch: 7 requested0:111 0:000 - [00]: _xcpm_SMT_scope_msrs © Pike R. Alpha :: MatchOS: 10.12 :: data len: 110:111 0:000 - [01]: xcpm performance fix 1 (wrsmr fix to get CPU max) © okrasit :: MatchOS: 10.12 :: data len: 80:111 0:000 - [02]: _xcpm_pkg_scope_msr © Pike R. Alpha :: MatchOS: 10.12 :: data len: 120:111 0:000 - [03]: XCPM_idle Replace All fix by Pike R. Alpha :: MatchOS: 10.12 :: data len: 80:111 0:000 - [04]: _xcpm_core_scope_msrs © Pike R. Alpha :: MatchOS: 10.12 :: data len: 120:111 0:000 - [05]: _xcpm_bootstrap Sierra © Pike R. Alpha :: MatchOS: 10.12 :: data len: 60:111 0:000 - [06]: _xcpm_SMT_scope_msrs © Pike R. Alpha :: MatchOS: 10.12 :: data len: 120:111 0:000 Default theme: blur0:111 0:000 Hiding entries with string BOOTX64.EFI0:111 0:000 Hiding entries with string Windows0:111 0:000 Error in Early settings0: Not Found0:111 0:000 === [ LoadDrivers ] =======================================0:111 0:000 Loading AppleImageCodec-64.efi status=Success0:112 0:000 Loading AppleKeyAggregator-64.efi status=Success0:112 0:000 Loading AppleUITheme-64.efi status=Success0:112 0:000 Loading DataHubDxe-64.efi status=Success0:113 0:001 Loading FirmwareVolume-64.efi status=Success0:113 0:000 Loading FSInject-64.efi status=Success0:114 0:000 Loading HFSPlus.efi status=Success0:114 0:000 - driver needs connecting0:114 0:000 Loading OsxAptioFixDrv-64.efi status=Success0:114 0:000 Loading OsxFatBinaryDrv-64.efi status=Success0:115 0:000 Loading SMCHelper-64.efi status=Success0:115 0:000 1 drivers needs connecting ...0:115 0:000 PlatformDriverOverrideProtocol not found. Installing ... Success0:115 0:000 HFS+ driver loaded0:115 0:000 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok0:610 0:494 === [ InitScreen ] ========================================0:610 0:000 SetScreenResolution: 2560x1440 - already set0:610 0:000 Console modes reported: 4, available modes:0:610 0:000 - [01]: 80x25 (current mode)0:610 0:000 - [02]: 80x500:610 0:000 - [03]: 100x310:610 0:000 - [04]: 320x750:610 0:000 reinit: self device path=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,E306BFEC-2CD4-47F2-B260-BC8AF4736067,0x28,0x64000)0:610 0:000 Using embedded font: Success0:611 0:000 === [ GetMacAddress ] =====================================0:611 0:000 MAC address of LAN #0= 30:5A:3A:57:61:82:0:611 0:000 === [ ScanSPD ] ===========================================0:611 0:000 SMBus device : 8086 8D22 class=0C0500 status=Success0:611 0:000 SMBus CmdReg: 0x10:611 0:000 Scanning SMBus [8086:8D22], mmio: 0xFBF3C004, ioport: 0x580, hostc: 0x10:611 0:000 Slots to scan [8]...0:612 0:001 === [ GetAcpiTablesList ] =================================0:613 0:000 Get Acpi Tables List from RSDT:0:613 0:000 - [00]: FACP A M I len=1320:613 0:000 - [01]: APIC A M I len=2560:613 0:000 - [02]: FPDT A M I len=680:613 0:000 - [03]: FIDT A M I len=1560:613 0:000 - [04]: MCFG A M I len=600:613 0:000 - [05]: ASF! HCG len=1600:613 0:000 - [06]: SSDT SataTabl len=8770:613 0:000 - [07]: UEFI A M I len=660:613 0:000 - [08]: HPET A M I len=560:613 0:000 - [09]: MSCT A M I len=1440:613 0:000 - [10]: SLIT A M I len=450:613 0:000 - [11]: SRAT A M I len=44400:613 0:000 - [12]: WDDT A M I len=640:613 0:000 - [13]: SSDT PmMgt len=851470:613 0:000 - [14]: VFCT A M I len=656680:613 0:000 - [15]: BGRT A M I len=560:613 0:000 Calibrated TSC frequency =3299996350 =3299MHz0:613 0:000 === [ GetUserSettings ] ===================================0:613 0:000 Injected EFIString of length 00:613 0:000 USB FixOwnership: yes0:613 0:000 - final DSDT Fix mask=000000000:613 0:000 QPI: 100MHz0:613 0:000 === [ ScanVolumes ] =======================================0:613 0:000 Found 9 volumes with blockIO0:613 0:000 - [00]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)0:615 0:002 - [01]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)0:615 0:000 Found optical drive0:615 0:000 - [02]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,E306BFEC-2CD4-47F2-B260-BC8AF4736067,0x28,0x64000)0:616 0:000 Result of bootcode detection: bootable unknown (legacy)0:616 0:000 This is SelfVolume !!0:616 0:000 - [03]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A,0x64028,0xDDFAC40)0:617 0:000 - [04]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(3,GPT,27798B1C-2997-452F-A8F6-31FC9B5A44BD,0xDE5EC68,0x135F20)0:617 0:000 - [05]: Volume: PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)0:618 0:000 - [06]: Volume: PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(1,GPT,0E8A34D3-7B65-4B36-9B8D-CE7240B9F525,0x28,0x64000)0:619 0:000 Result of bootcode detection: bootable unknown (legacy)0:637 0:018 - [07]: Volume: PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(2,GPT,FDA707D5-6CFD-49FE-B93E-EA85876EF0B7,0x64028,0x746B2430)0:638 0:000 - [08]: Volume: PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(3,GPT,A4357448-DCD7-4A43-869D-4A8C0CC14D96,0x74756458,0x74672430)0:638 0:000 === [ InitTheme ] =========================================0:639 0:000 Using theme 'blur' (EFI\CLOVER\themes\blur)0:639 0:000 OS main and drive as badge0:640 0:001 Loading font from ThemeDir: Success0:640 0:000 Choosing theme blur0:640 0:000 after NVRAM boot-args=-v npci=0x20000:640 0:000 === [ Dump SMC keys from NVRAM ] ==========================0:640 0:000 found AppleSMC protocol0:642 0:002 fakesmc-key-#KEY-ui32:00 00 00 160:643 0:000 fakesmc-key-$Adr-ui32:00 00 03 000:643 0:000 fakesmc-key-$Num-ui8 :010:643 0:000 fakesmc-key-RMde-char:410:643 0:000 fakesmc-key-RPlt-ch8*:6A 39 30 00 00 00 00 000:643 0:000 fakesmc-key-RBr -ch8*:6A 39 30 00 31 37 00 000:644 0:000 fakesmc-key-EPCI-ui32:06 F0 F0 000:644 0:000 fakesmc-key-REV -ch8*:02 20 0F 00 00 180:644 0:000 fakesmc-key-BEMB-flag:000:644 0:000 fakesmc-key-BATP-flag:000:645 0:000 fakesmc-key-BNum-ui8 :000:645 0:000 fakesmc-key-MSTc-ui8 :000:645 0:000 fakesmc-key-MSAc-ui16:00 000:645 0:000 fakesmc-key-MSLD-ui8 :000:646 0:000 fakesmc-key-MSWr-ui8 :190:646 0:000 fakesmc-key-MSPS-ui16:00 030:647 0:000 fakesmc-key-$Num-ui8:010:647 0:000 fakesmc-key-BNum-ui8:000:647 0:000 fakesmc-key-MSTc-ui8:000:647 0:000 fakesmc-key-MSLD-ui8:000:648 0:000 fakesmc-key-MSWr-ui8:190:648 0:000 fakesmc-key-MSFW-ui8:01 000:650 0:002 === [ ScanLoader ] ========================================0:650 0:000 - [02]: 'EFI'0:658 0:007 - [03]: 'Sierra'0:660 0:001 AddLoaderEntry for Volume Name=Sierra0:663 0:003 Check if volume Is Hibernated:0:663 0:000 Check sleep image 'by signature':0:668 0:004 read prefs \Library\Preferences\com.apple.PowerManagement.plist status=Success0:668 0:000 using default sleep image name = \private\var\vm\sleepimage0:670 0:002 Reading first 512 bytes of sleepimage ...0:671 0:000 OurBlockIoRead: Lba=8964318, Offset=112C863000 (BlockSize=512)0:671 0:000 sig lion: 00:671 0:000 sig snow: 00:671 0:000 no valid sleep image offset was found0:671 0:000 Reading completed -> Success0:671 0:000 sleepimage offset could not be acquired0:671 0:000 hibernated: no - sign0:677 0:005 - [04]: 'Recovery HD'0:677 0:000 AddLoaderEntry for Volume Name=Recovery HD0:683 0:006 - [06]: 'EFI'0:688 0:004 - [07]: 'TimeMachine'0:693 0:004 - [08]: 'Stockage'0:698 0:005 Scanning legacy ...0:698 0:000 0: 'Whole Disc Boot' (legacy) not legacy0:698 0:000 1: 'Whole Disc Boot' (legacy) not legacy0:698 0:000 2: 'EFI' (legacy) not legacy0:698 0:000 3: 'Sierra' (legacy) not legacy0:698 0:000 4: 'Recovery HD' (legacy) not legacy0:698 0:000 5: 'Whole Disc Boot' (legacy) not legacy0:698 0:000 6: 'EFI' (legacy) not legacy0:698 0:000 7: 'TimeMachine' (legacy) not legacy0:698 0:000 8: 'Stockage' (legacy) not legacy0:698 0:000 === [ AddCustomTool ] =====================================0:698 0:000 found tool \EFI\CLOVER\tools\Shell64U.efi0:698 0:000 Checking EFI partition Volume 2 for Clover0:698 0:000 Found Clover0:699 0:000 === [ GetEfiBootDeviceFromNvram ] =========================0:699 0:000 - efi-boot-device-data: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A,0x64028,0xDDFAC40)0:699 0:000 - Volume: 'PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A,0x64028,0xDDFAC40)'0:699 0:000 - LoaderPath: ''0:699 0:000 - Guid = A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A0:699 0:000 === [ FindStartupDiskVolume ] =============================0:699 0:000 - Volume: partition = PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A,0x64028,0xDDFAC40)0:699 0:000 - searching for that partition0:699 0:000 - found entry 0. 'Sierra', Volume 'Sierra'0:699 0:000 Boot redirected to Entry 0. 'Sierra'0:699 0:000 DefaultIndex=0 and MainMenu.EntryCount=80:805 0:106 SelectionSmallFileName != NULL0:805 0:000 SelectionBigFileName != NULL0:805 0:000 SelectionImages[0] == NULL0:811 0:005 Found Mouse device:0:812 0:001 GUI ready3:814 3:002 === [ StartLoader ] =======================================3:814 0:000 Finally: Bus=99999kHz CPU=3300MHz3:814 0:000 Loading boot.efi status=Success3:832 0:017 GetOSVersion: 10.12.2 (16C67)3:832 0:000 CSR_CFG: CSR_ALLOW_UNTRUSTED_KEXTS | CSR_ALLOW_UNRESTRICTED_FS | CSR_ALLOW_TASK_FOR_PID | CSR_ALLOW_UNRESTRICTED_DTRACE | CSR_ALLOW_UNRESTRICTED_NVRAM3:832 0:000 Filtering KextPatches:3:832 0:000 - [00]: IOAHCIBlockStorage (Trim Enabler) :: BinPatch :: [OS: 10.12.2 | MatchOS: All | MatchBuild: All] ==> allowed3:832 0:000 - [01]: AppleUSBXHCIPCI (Change 15 Port Limit To 30 in XHCI Kext 10.12(99-series)) :: BinPatch :: [OS: 10.12.2 | MatchOS: All | MatchBuild: All] ==> allowed3:832 0:000 Filtering KernelPatches:3:832 0:000 - [00]: _xcpm_SMT_scope_msrs © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 - [01]: xcpm performance fix 1 (wrsmr fix to get CPU max) © okrasit :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 - [02]: _xcpm_pkg_scope_msr © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 - [03]: XCPM_idle Replace All fix by Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 - [04]: _xcpm_core_scope_msrs © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 - [05]: _xcpm_bootstrap Sierra © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 - [06]: _xcpm_SMT_scope_msrs © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed3:832 0:000 === [ PatchSmbios ] =======================================3:832 0:000 insert table 9 for dev 0:03:832 0:000 insert table 9 for dev 0:13:832 0:000 insert table 9 for dev 19:03:832 0:000 Trusting SMBIOS...3:832 0:000 Detected alternating SMBIOS channel banks3:832 0:000 Channels: 43:832 0:000 Interleave: 0 2 4 6 1 3 5 7 8 10 12 14 9 11 13 15 16 18 20 22 17 19 21 233:832 0:000 partNum=F4-3000C15-4GRR3:832 0:000 SMBIOS Type 17 Index = 0 => 0 0:3:832 0:000 DIMM1 2666MHz 4096MB3:832 0:000 partNum=F4-3000C15-4GRR3:832 0:000 SMBIOS Type 17 Index = 1 => 1 2:3:832 0:000 DIMM2 2666MHz 4096MB3:832 0:000 partNum=F4-3000C15-4GRR3:832 0:000 SMBIOS Type 17 Index = 2 => 2 4:3:832 0:000 DIMM3 2666MHz 4096MB3:832 0:000 partNum=F4-3000C15-4GRR3:832 0:000 SMBIOS Type 17 Index = 3 => 3 6:3:832 0:000 DIMM4 2666MHz 4096MB3:832 0:000 SMBIOS Type 17 Index = 4 => 4 1:3:832 0:000 DIMM5 EMPTY3:832 0:000 SMBIOS Type 17 Index = 5 => 5 3:3:832 0:000 DIMM6 EMPTY3:832 0:000 SMBIOS Type 17 Index = 6 => 6 5:3:832 0:000 DIMM7 EMPTY3:832 0:000 SMBIOS Type 17 Index = 7 => 7 7:3:832 0:000 DIMM8 EMPTY3:832 0:000 mTotalSystemMemory = 163843:832 0:000 NumberOfMemoryDevices = 83:832 0:000 Type20[0]->End = 0x3FFFFF, Type17[0] = 0x10003:832 0:000 Type20[1]->End = 0x7FFFFF, Type17[1] = 0x30003:832 0:000 Type20[2]->End = 0xBFFFFF, Type17[2] = 0x60003:832 0:000 Type20[3]->End = 0xFFFFFF, Type17[3] = 0xA0003:832 0:000 Table 131 is present, CPUType=103:832 0:000 Change to: 5073:832 0:000 === [ PatchACPI ] =========================================3:832 0:000 RSDT 0xCB39C0283:832 0:000 FADT from RSDT: 0xCB39C1483:832 0:000 XSDT 0xCB39C0983:832 0:000 FADT from XSDT: 0xCB3D21B83:832 0:000 Xsdt reallocation done3:832 0:000 old FADT length=10C3:833 0:000 DSDT found in Clover volume OEM folder: EFI\CLOVER\ACPI\patched\DSDT.aml3:835 0:002 Apply DsdtFixMask=0x00000000 old way3:835 0:000 drop _DSM mask=0x00003:835 0:000 === [ FixBiosDsdt ] =======================================3:835 0:000 VideoCard devID=0x679A10023:835 0:000 DisplayADR1[0] = 0x30000, DisplayADR2[0] = 0x03:835 0:000 USBADR[0] = 0x140000 and PCIe = 0xFFFE3:835 0:000 USBADR[1] = 0x1A0000 and PCIe = 0xFFFE3:857 0:022 Audio HDA (addr:0x1B0000) setting specified layout-id=1 (0x1)3:857 0:000 USBADR[2] = 0x1C0004 and PCIe = 0x03:857 0:000 USBADR[3] = 0x1D0000 and PCIe = 0xFFFE3:857 0:000 first CPU found at 2B23 offset 2B273:857 0:000 device candidate at 2A8F3:857 0:000 device inserted in acpi_cpu_score SCK03:857 0:000 score candidate at 28BC3:857 0:000 score inserted in acpi_cpu_score _SB_SCK03:857 0:000 Found ACPI CPU: CP00 | CP01 | CP02 | CP03 | CP04 | CP05 | CP06 | CP07 | CP08 | CP09 | CP0A | CP0B | CP0C | CP0D | CP0E | CP0F | CP10 | CP11 | CP12 | CP13 | CP14 | CP15 | CP16 | CP17 | CP18 | CP19 | CP1A | CP1B | CP1C | CP1D | CP1E | CP1F , within the score: _SB_SCK03:857 0:000 Found PCIROOTUID = 03:857 0:000 === [ ACPIDropTables ] ====================================3:857 0:000 === [ PatchAllSSDT ] ======================================3:857 0:000 Patch table: SSDT SataTabl3:857 0:000 SSDT len = 0x36D3:857 0:000 Patch table: SSDT PmMgt3:857 0:000 SSDT len = 0x14C9B3:857 0:000 Drop tables from Xsdt, SIGN=XXXX TableID= Length=03:857 0:000 Xsdt has tables count=163:857 0:000 corrected XSDT length=1643:857 0:000 === [ ACPIPatchedAML ] ====================================3:857 0:000 Start: Processing Patched AML(s): Unsorted3:857 0:000 Inserting ssdt.aml from EFI\CLOVER\ACPI\patched ... Success3:858 0:000 End: Processing Patched AML(s)3:858 0:000 CPUBase=0 and ApicCPUBase=0 ApicCPUNum=123:858 0:000 === [ RestSetup macOS ] ===================================3:858 0:000 EdidDiscovered size=1283:858 0:000 000 | 00 FF FF FF FF FF FF 00 05 E33:858 0:000 010 | 77 32 65 01 00 00 23 1A 01 043:858 0:000 020 | B5 47 28 78 3A 91 45 A7 55 4E3:858 0:000 030 | A0 25 0C 50 54 BF EF 00 D1 C03:858 0:000 040 | B3 00 95 00 81 80 81 40 81 C03:858 0:000 050 | 01 01 01 01 56 5E 00 A0 A0 A03:858 0:000 060 | 29 50 30 20 35 00 C4 8F 21 003:858 0:000 070 | 00 1E 00 00 00 FD 00 32 4C 1E3:858 0:000 080 | 63 1E 01 0A 20 20 20 20 20 203:858 0:000 090 | 00 00 00 FC 00 51 33 32 37 373:858 0:000 100 | 0A 20 20 20 20 20 20 20 00 003:858 0:000 110 | 00 FF 00 4C 47 58 47 39 4A 413:858 0:000 120 | 30 30 30 33 35 37 01 9C3:858 0:000 Framebuffer @0xD0000000 MMIO @0xFBE00000 I/O Port @0x0000E000 ROM Addr @0xFBE400003:858 0:000 PCI region 1 = 0x00000000, region3 = 0x00000000, region5 = 0x000000003:858 0:000 BIOS_0_SCRATCH=0x0000002C, 1=0x4058B880, 2=0x00000000, 3=0x00000000, 4=0x00000000, 5=0x00000000, 6=0x000000003:858 0:000 RADEON_CRTC2_GEN_CNTL == 0x000000003:858 0:000 card posted because CONFIG_MEMSIZE=0xC003:858 0:000 ATI card POSTed,3:858 0:000 Set VRAM for Tahiti =3072Mb3:858 0:000 ATI: get_vram_size returned 0xC00000003:858 0:000 ATI Radeon EVERGREEN+ family3:858 0:000 Users config name Aji3:858 0:000 (AtiPorts) Nr of ports set to: 53:858 0:000 ATI Tahiti AMD Radeon HD 7950/8950/R9 280 3072MB (Aji) [1002:679A] (subsys [174B:E208]):: PciRoot(0x0)\Pci(0x3,0x0)\Pci(0x0,0x0)3:858 0:000 setting specified layout-id=1 (0x1)3:858 0:000 stringlength = 62903:858 0:000 CurrentMode: Width=2560 Height=14403:858 0:000 Beginning FSInjectionFSInjectionInstall ...- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C88C4818FSInjectionInstall ...- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C88C48183:865 0:006 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other3:865 0:000 Extra kext: EFI\CLOVER\kexts\Other\AppleALC.kext3:869 0:003 Extra PlugIn kext: EFI\CLOVER\kexts\Other\AppleALC.kext\Contents\PlugIns\PinConfigs.kext3:872 0:002 Extra kext: EFI\CLOVER\kexts\Other\FakeSMC.kext3:873 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_ACPISensors.kext3:874 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_CPUSensors.kext3:875 0:000 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_GPUSensors.kext3:876 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_LPCSensors.kext3:881 0:004 Extra kext: EFI\CLOVER\kexts\Other\IntelMausiEthernet.kext3:883 0:001 Extra kext: EFI\CLOVER\kexts\Other\X99_Injector USB 3.kext3:884 0:000 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.123:885 0:000 SetStartupDiskVolume:3:885 0:000 * Volume: 'Sierra'3:885 0:000 * LoaderPath: ''3:885 0:000 * DevPath: Sierra3:885 0:000 * GUID = A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A3:885 0:000 * efi-boot-device: IOMatchIOProviderClassIOMediaIOPropertyMatchUUIDA9DD86F4-69CE-4B54-86A3-9A2D95BBD68A3:885 0:000 Custom boot screen not used because entry has unset use graphicsMac-Pro-de-Fljagd:~ fljagd$ 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334591 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 So I have updated the script. Here is it 80.save_nvram_plist.local.zip. In my tests* it worked correctly. I hope, I didn't overlook any other test case. Please post your result, so I could fix any issue, if any arise. Again sorry for inconvenience. * - Fusion drive consisting two drives - FileVault 2 disk - Plain normal disk without Recovery HD How to test it: After downloading and unpacking the file do following: sudo cp ~/Downloads/80.save_nvram_plist.local /etc/rc.shutdown.d/80.save_nvram_plist.local sudo chown 0:0 /etc/rc.shutdown.d/80.save_nvram_plist.local sudo chmod 755 /etc/rc.shutdown.d/80.save_nvram_plist.local Now put a test variable in your nvram: sudo nvram testVar="blabla" Now simply run the script manually sudo /etc/rc.shutdown.d/80.save_nvram_plist.local or restart your system and check after reboot if that test variable exists: nvram -p|grep testVar 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334594 Share on other sites More sharing options...
Sherlocks Posted December 15, 2016 Share Posted December 15, 2016 So I have updated the script. Here is it 80.save_nvram_plist.local.zip. In my tests* it worked correctly. I hope, I didn't overlook any other test case. Please post your result, so I could fix any issue, if any arise. Again sorry for inconvenience. * - Fusion drive consisting two drives - FileVault 2 disk - Plain normal disk without Recovery HD How to test it: After downloading and unpacking the file do following: sudo cp ~/Downloads/80.save_nvram_plist.local /etc/rc.shutdown.d/80.save_nvram_plist.local sudo chown 0:0 /etc/rc.shutdown.d/80.save_nvram_plist.local sudo chmod 755 /etc/rc.shutdown.d/80.save_nvram_plist.local Now put a test variable in your nvram: sudo nvram testVar="blabla" Now simply run the script manually sudo /etc/rc.shutdown.d/80.save_nvram_plist.local or restart your system and check after reboot if that test variable exists: nvram -p|grep testVar script works Last login: Thu Dec 15 18:38:04 on console Supreme-MBP:~ supreme$ nvram -p|grep testVar testVar blabla Supreme-MBP:~ supreme$ i don't use FileVault 2. anyway what i said is good working. thank you. 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334597 Share on other sites More sharing options...
Fljagd Posted December 15, 2016 Share Posted December 15, 2016 Last login: Thu Dec 15 10:38:14 on console Mac-Pro-de-Fljagd:~ fljagd$ nvram -p|grep testVar Mac-Pro-de-Fljagd:~ fljagd$ sudo /etc/rc.shutdown.d/80.save_nvram_plist.local Password: Not saving nvram.plist because booting from an UEFI firmware (American Megatrends) Mac-Pro-de-Fljagd:~ fljagd$ Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334599 Share on other sites More sharing options...
smolderas Posted December 15, 2016 Share Posted December 15, 2016 Last login: Thu Dec 15 10:38:14 on console Mac-Pro-de-Fljagd:~ fljagd$ nvram -p|grep testVar Mac-Pro-de-Fljagd:~ fljagd$ sudo /etc/rc.shutdown.d/80.save_nvram_plist.local Password: Not saving nvram.plist because booting from an UEFI firmware (American Megatrends) Mac-Pro-de-Fljagd:~ fljagd$ Thanks Fljagd for your results. It helped. You do have hardware NVRAM and don't need to use this script. So in your case it worked as well by saying that it won't save 1 Link to comment https://www.insanelymac.com/forum/topic/284656-clover-general-discussion/page/474/#findComment-2334600 Share on other sites More sharing options...
Recommended Posts