Jump to content
30960 posts in this topic

Recommended Posts

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.

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.

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에서 보냄

 

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..

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

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...

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

  • Like 1

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.

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.

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.

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.

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에서 보냄

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 /

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#

  • Like 1

 

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. 

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

 

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$ 

 

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.

  • Like 1

If the information can help

 

Mac-Pro-de-Fljagd:~ fljagd$ diskutil info /
Device Identifier: disk1s2
Device Node: /dev/disk1s2
Whole: No
Part of Whole: disk1

Volume Name: Sierra
Mounted: Yes
Mount Point: /

Partition Type: Apple_HFS
File System Personality: Journaled HFS+
Type (Bundle): hfs
Name (User Visible): Mac OS Extended (Journaled)
Journal: Journal size 16384 KB at offset 0x37e000
Owners: Enabled

OS Can Be Installed: Yes
Recovery Disk: disk1s3
Media Type: Generic
Protocol: SATA
SMART Status: Verified
Volume UUID: 9DC969DC-85A1-303B-91E9-1A014D8D81A4
Disk / Partition UUID: A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A

Disk Size: 119.2 GB (119174365184 Bytes) (exactly 232762432 512-Byte-Units)
Device Block Size: 512 Bytes

Volume 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 Bytes

Read-Only Media: No
Read-Only Volume: No

Device Location: Internal
Removable Media: Fixed

Solid State: Yes

 

 

 

Last login: Thu Dec 15 09:31:33 on ttys001
Mac-Pro-de-Fljagd:~ fljagd$ diskutil list
/dev/disk0 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *2.0 TB disk0
1: EFI EFI 209.7 MB disk0s1
2: Apple_HFS TimeMachine 1.0 TB disk0s2
3: Apple_HFS Stockage 999.9 GB disk0s3

/dev/disk1 (internal, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *120.0 GB disk1
1: EFI EFI 209.7 MB disk1s1
2: Apple_HFS Sierra 119.2 GB disk1s2
3: Apple_Boot Recovery HD 650.0 MB disk1s3

Mac-Pro-de-Fljagd:~ fljagd$

 

 

Last login: Thu Dec 15 09:47:55 on ttys001
Mac-Pro-de-Fljagd:~ fljagd$ bdmesg
0:100 0:100 MemLog inited, TSC freq: 3299996350
0:100 0:000
0:100 0:000 Now is 15.12.2016, 8:9:11 (GMT)
0:100 0:000 Starting Clover revision: 3962 on American Megatrends EFI
0: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) @C88C4B18
0:100 0:000 SelfDirPath = \EFI\BOOT
0:100 0:000 === [ Get Smbios ] ========================================
0:100 0:000 Type 16 Index = 0
0:100 0:000 Total Memory Slots Count = 8
0:100 0:000 Type 17 Index = 0
0:100 0:000 SmbiosTable.Type17->Speed = 2666MHz
0:100 0:000 SmbiosTable.Type17->Size = 4096MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A1
0:100 0:000 SmbiosTable.Type17->Vendor = G-Skill
0:100 0:000 SmbiosTable.Type17->SerialNumber = 00000000
0:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR
0:100 0:000 Type 17 Index = 1
0:100 0:000 SmbiosTable.Type17->Speed = 2666MHz
0:100 0:000 SmbiosTable.Type17->Size = 4096MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A2
0:100 0:000 SmbiosTable.Type17->Vendor = G-Skill
0:100 0:000 SmbiosTable.Type17->SerialNumber = 00000000
0:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR
0:100 0:000 Type 17 Index = 2
0:100 0:000 SmbiosTable.Type17->Speed = 2666MHz
0:100 0:000 SmbiosTable.Type17->Size = 4096MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B1
0:100 0:000 SmbiosTable.Type17->Vendor = G-Skill
0:100 0:000 SmbiosTable.Type17->SerialNumber = 00000000
0:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR
0:100 0:000 Type 17 Index = 3
0:100 0:000 SmbiosTable.Type17->Speed = 2666MHz
0:100 0:000 SmbiosTable.Type17->Size = 4096MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B2
0:100 0:000 SmbiosTable.Type17->Vendor = G-Skill
0:100 0:000 SmbiosTable.Type17->SerialNumber = 00000000
0:100 0:000 SmbiosTable.Type17->PartNumber = F4-3000C15-4GRR
0:100 0:000 Type 17 Index = 4
0:100 0:000 Ignoring insane frequency value 0MHz
0:100 0:000 SmbiosTable.Type17->Speed = 0MHz
0:100 0:000 SmbiosTable.Type17->Size = 0MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C1
0: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 = 5
0:100 0:000 Ignoring insane frequency value 0MHz
0:100 0:000 SmbiosTable.Type17->Speed = 0MHz
0:100 0:000 SmbiosTable.Type17->Size = 0MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C2
0: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 = 6
0:100 0:000 Ignoring insane frequency value 0MHz
0:100 0:000 SmbiosTable.Type17->Speed = 0MHz
0:100 0:000 SmbiosTable.Type17->Size = 0MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D1
0: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 = 7
0:100 0:000 Ignoring insane frequency value 0MHz
0:100 0:000 SmbiosTable.Type17->Speed = 0MHz
0:100 0:000 SmbiosTable.Type17->Size = 0MB
0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D2
0: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=0
0:100 0:000 Running on: 'All Series' with board 'X99-A'
0:100 0:000 === [ GetCPUProperties ] ==================================
0:100 0:000 CPU Vendor = 756E6547 Model=306F2
0:100 0:000 The CPU supported SSE4.1
0:100 0:000 got cores from CPUID_1 = 0
0:100 0:000 The CPU supported turbo
0:100 0:000 BrandString = Intel® Core i7-5820K CPU @ 3.30GHz
0:100 0:000 MSR 0xE2 before patch 00008400
0:100 0:000 MSR 0xE2 is locked, PM patches will be turned on
0:100 0:000 MSR 0xE4 00010414
0:100 0:000 MSR 0xCE 20080C3B_F3812100
0:100 0:000 MSR 0x1B0 00000000
0:100 0:000 FSBFrequency=100MHz DMIvalue=100000kHz
0:100 0:000 Corrected FSBFrequency=100MHz
0:100 0:000 Vendor/Model/Stepping: 0x756E6547/0x3F/0x2
0:100 0:000 Family/ExtFamily: 0x6/0x0
0:100 0:000 MaxDiv/MinDiv: 33.0/12
0:100 0:000 Turbo: 43/43/43/43
0:100 0:000 Features: 0xBFEBFBFF
0:100 0:000 Threads: 12
0:100 0:000 Cores: 6
0:100 0:000 FSB: 100 MHz
0:100 0:000 CPU: 3300 MHz
0:100 0:000 TSC: 3300 MHz
0:100 0:000 PIS: 400 MHz
0:100 0:000 === [ GetDevices ] ========================================
0:100 0:000 PCI (00|00:03.00) : 8086 2F08 class=060400
0:100 0:000 PCI (00|01:00.00) : 1002 679A class=030000
0:100 0:000 - GFX: Model=AMD Radeon HD 7950/8950/R9 280 (ATI/AMD)
0:100 0:000 - RADEON_BIOS_0_SCRATCH = 0x0000002C
0:100 0:000 PCI (00|01:00.01) : 1002 AAA0 class=040300
0:100 0:000 - HDMI Audio:
0:100 0:000 PCI (00|00:01.00) : 8086 2F02 class=060400
0:100 0:000 PCI (00|00:01.01) : 8086 2F03 class=060400
0:100 0:000 PCI (00|00:00.00) : 8086 2F00 class=060000
0:100 0:000 PCI (00|00:05.00) : 8086 2F28 class=088000
0:100 0:000 PCI (00|00:05.01) : 8086 2F29 class=088000
0:100 0:000 PCI (00|00:05.02) : 8086 2F2A class=088000
0:100 0:000 PCI (00|00:05.04) : 8086 2F2C class=080020
0:100 0:000 PCI (00|00:05.06) : FFFF FFFF class=FFFFFF
0:100 0:000 PCI (00|00:1F.00) : 8086 8D47 class=060100
0:100 0:000 PCI (00|00:1F.02) : 8086 8D02 class=010601
0:100 0:000 PCI (00|00:1F.03) : 8086 8D22 class=0C0500
0:100 0:000 PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF
0:100 0:000 PCI (00|00:11.00) : 8086 8D7C class=FF0000
0:100 0:000 PCI (00|00:11.04) : 8086 8D62 class=010601
0:100 0:000 PCI (00|00:14.00) : 8086 8D31 class=0C0330
0:100 0:000 PCI (00|00:16.00) : 8086 8D3A class=078000
0:100 0:000 PCI (00|00:16.01) : FFFF FFFF class=FFFFFF
0:100 0:000 PCI (00|00:16.02) : FFFF FFFF class=FFFFFF
0:100 0:000 PCI (00|00:16.03) : FFFF FFFF class=FFFFFF
0:100 0:000 PCI (00|00:19.00) : 8086 15A1 class=020000
0:100 0:000 - LAN: 0 Vendor=Intel
0:100 0:000 PCI (00|00:1A.00) : 8086 8D2D class=0C0320
0:100 0:000 PCI (00|00:1B.00) : 8086 8D20 class=040300
0:100 0:000 PCI (00|00:1C.00) : 8086 8D10 class=060400
0:100 0:000 PCI (00|00:1C.04) : 8086 8D18 class=060400
0:100 0:000 PCI (00|05:00.00) : 1B21 1142 class=0C0330
0:100 0:000 PCI (00|00:1D.00) : 8086 8D26 class=0C0320
0:100 0:000 === [ GetDefaultSettings ] ================================
0:100 0:000 Clover load options size = 0 bytes
0:105 0:005 EFI\CLOVER\config.plist loaded: Success
0:105 0:000 === [ GetListOfThemes ] ===================================
0:107 0:001 - [00]: blur
0:107 0:000 - [01]: christmas - bad theme because theme.plist can't be load
0:108 0:000 - [01]: embedded
0:109 0:001 - [01]: newyear
0:110 0:001 - [02]: random
0:110 0:000 === [ Found config plists ] ===============================
0:110 0:000 - config.plist
0:110 0:000 - config1.plist
0:111 0:001 === [ GetEarlyUserSettings ] ==============================
0:111 0:000 timeout set to 2
0:111 0:000 Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:111 0:000 KextsToPatch: 2 requested
0:111 0:000 - [00]: IOAHCIBlockStorage (Trim Enabler) :: BinPatch :: data len: 10
0:111 0:000 - [01]: AppleUSBXHCIPCI (Change 15 Port Limit To 30 in XHCI Kext 10.12(99-series)) :: BinPatch :: data len: 7
0:111 0:000 KernelToPatch: 7 requested
0:111 0:000 - [00]: _xcpm_SMT_scope_msrs  © Pike R. Alpha :: MatchOS: 10.12 :: data len: 11
0:111 0:000 - [01]: xcpm performance fix 1 (wrsmr fix to get CPU max) © okrasit :: MatchOS: 10.12 :: data len: 8
0:111 0:000 - [02]: _xcpm_pkg_scope_msr  © Pike R. Alpha :: MatchOS: 10.12 :: data len: 12
0:111 0:000 - [03]: XCPM_idle Replace All fix by Pike R. Alpha :: MatchOS: 10.12 :: data len: 8
0:111 0:000 - [04]: _xcpm_core_scope_msrs  © Pike R. Alpha :: MatchOS: 10.12 :: data len: 12
0:111 0:000 - [05]: _xcpm_bootstrap Sierra © Pike R. Alpha :: MatchOS: 10.12 :: data len: 6
0:111 0:000 - [06]: _xcpm_SMT_scope_msrs  © Pike R. Alpha :: MatchOS: 10.12 :: data len: 12
0:111 0:000 Default theme: blur
0:111 0:000 Hiding entries with string BOOTX64.EFI
0:111 0:000 Hiding entries with string Windows
0:111 0:000 Error in Early settings0: Not Found
0:111 0:000 === [ LoadDrivers ] =======================================
0:111 0:000 Loading AppleImageCodec-64.efi status=Success
0:112 0:000 Loading AppleKeyAggregator-64.efi status=Success
0:112 0:000 Loading AppleUITheme-64.efi status=Success
0:112 0:000 Loading DataHubDxe-64.efi status=Success
0:113 0:001 Loading FirmwareVolume-64.efi status=Success
0:113 0:000 Loading FSInject-64.efi status=Success
0:114 0:000 Loading HFSPlus.efi status=Success
0:114 0:000 - driver needs connecting
0:114 0:000 Loading OsxAptioFixDrv-64.efi status=Success
0:114 0:000 Loading OsxFatBinaryDrv-64.efi status=Success
0:115 0:000 Loading SMCHelper-64.efi status=Success
0:115 0:000 1 drivers needs connecting ...
0:115 0:000 PlatformDriverOverrideProtocol not found. Installing ... Success
0:115 0:000 HFS+ driver loaded
0:115 0:000 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok
0:610 0:494 === [ InitScreen ] ========================================
0:610 0:000 SetScreenResolution: 2560x1440 - already set
0:610 0:000 Console modes reported: 4, available modes:
0:610 0:000 - [01]: 80x25 (current mode)
0:610 0:000 - [02]: 80x50
0:610 0:000 - [03]: 100x31
0:610 0:000 - [04]: 320x75
0: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: Success
0: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=Success
0:611 0:000 SMBus CmdReg: 0x1
0:611 0:000 Scanning SMBus [8086:8D22], mmio: 0xFBF3C004, ioport: 0x580, hostc: 0x1
0: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=132
0:613 0:000 - [01]: APIC A M I len=256
0:613 0:000 - [02]: FPDT A M I len=68
0:613 0:000 - [03]: FIDT A M I len=156
0:613 0:000 - [04]: MCFG A M I len=60
0:613 0:000 - [05]: ASF! HCG len=160
0:613 0:000 - [06]: SSDT SataTabl len=877
0:613 0:000 - [07]: UEFI A M I len=66
0:613 0:000 - [08]: HPET A M I len=56
0:613 0:000 - [09]: MSCT A M I len=144
0:613 0:000 - [10]: SLIT A M I len=45
0:613 0:000 - [11]: SRAT A M I len=4440
0:613 0:000 - [12]: WDDT A M I len=64
0:613 0:000 - [13]: SSDT PmMgt len=85147
0:613 0:000 - [14]: VFCT A M I len=65668
0:613 0:000 - [15]: BGRT A M I len=56
0:613 0:000 Calibrated TSC frequency =3299996350 =3299MHz
0:613 0:000 === [ GetUserSettings ] ===================================
0:613 0:000 Injected EFIString of length 0
0:613 0:000 USB FixOwnership: yes
0:613 0:000 - final DSDT Fix mask=00000000
0:613 0:000 QPI: 100MHz
0:613 0:000 === [ ScanVolumes ] =======================================
0:613 0:000 Found 9 volumes with blockIO
0: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 drive
0: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 badge
0:640 0:001 Loading font from ThemeDir: Success
0:640 0:000 Choosing theme blur
0:640 0:000 after NVRAM boot-args=-v npci=0x2000
0:640 0:000 === [ Dump SMC keys from NVRAM ] ==========================
0:640 0:000 found AppleSMC protocol
0:642 0:002 fakesmc-key-#KEY-ui32:00 00 00 16
0:643 0:000 fakesmc-key-$Adr-ui32:00 00 03 00
0:643 0:000 fakesmc-key-$Num-ui8 :01
0:643 0:000 fakesmc-key-RMde-char:41
0:643 0:000 fakesmc-key-RPlt-ch8*:6A 39 30 00 00 00 00 00
0:643 0:000 fakesmc-key-RBr -ch8*:6A 39 30 00 31 37 00 00
0:644 0:000 fakesmc-key-EPCI-ui32:06 F0 F0 00
0:644 0:000 fakesmc-key-REV -ch8*:02 20 0F 00 00 18
0:644 0:000 fakesmc-key-BEMB-flag:00
0:644 0:000 fakesmc-key-BATP-flag:00
0:645 0:000 fakesmc-key-BNum-ui8 :00
0:645 0:000 fakesmc-key-MSTc-ui8 :00
0:645 0:000 fakesmc-key-MSAc-ui16:00 00
0:645 0:000 fakesmc-key-MSLD-ui8 :00
0:646 0:000 fakesmc-key-MSWr-ui8 :19
0:646 0:000 fakesmc-key-MSPS-ui16:00 03
0:647 0:000 fakesmc-key-$Num-ui8:01
0:647 0:000 fakesmc-key-BNum-ui8:00
0:647 0:000 fakesmc-key-MSTc-ui8:00
0:647 0:000 fakesmc-key-MSLD-ui8:00
0:648 0:000 fakesmc-key-MSWr-ui8:19
0:648 0:000 fakesmc-key-MSFW-ui8:01 00
0:650 0:002 === [ ScanLoader ] ========================================
0:650 0:000 - [02]: 'EFI'
0:658 0:007 - [03]: 'Sierra'
0:660 0:001 AddLoaderEntry for Volume Name=Sierra
0: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=Success
0:668 0:000 using default sleep image name = \private\var\vm\sleepimage
0: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: 0
0:671 0:000 sig snow: 0
0:671 0:000 no valid sleep image offset was found
0:671 0:000 Reading completed -> Success
0:671 0:000 sleepimage offset could not be acquired
0:671 0:000 hibernated: no - sign
0:677 0:005 - [04]: 'Recovery HD'
0:677 0:000 AddLoaderEntry for Volume Name=Recovery HD
0: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 legacy
0:698 0:000 1: 'Whole Disc Boot' (legacy) not legacy
0:698 0:000 2: 'EFI' (legacy) not legacy
0:698 0:000 3: 'Sierra' (legacy) not legacy
0:698 0:000 4: 'Recovery HD' (legacy) not legacy
0:698 0:000 5: 'Whole Disc Boot' (legacy) not legacy
0:698 0:000 6: 'EFI' (legacy) not legacy
0:698 0:000 7: 'TimeMachine' (legacy) not legacy
0:698 0:000 8: 'Stockage' (legacy) not legacy
0:698 0:000 === [ AddCustomTool ] =====================================
0:698 0:000 found tool \EFI\CLOVER\tools\Shell64U.efi
0:698 0:000 Checking EFI partition Volume 2 for Clover
0:698 0:000 Found Clover
0: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-9A2D95BBD68A
0: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 partition
0: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=8
0:805 0:106 SelectionSmallFileName != NULL
0:805 0:000 SelectionBigFileName != NULL
0:805 0:000 SelectionImages[0] == NULL
0:811 0:005 Found Mouse device:
0:812 0:001 GUI ready
3:814 3:002 === [ StartLoader ] =======================================
3:814 0:000 Finally: Bus=99999kHz CPU=3300MHz
3:814 0:000 Loading boot.efi status=Success
3: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_NVRAM
3:832 0:000 Filtering KextPatches:
3:832 0:000 - [00]: IOAHCIBlockStorage (Trim Enabler) :: BinPatch :: [OS: 10.12.2 | MatchOS: All | MatchBuild: All] ==> allowed
3: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] ==> allowed
3: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] ==> allowed
3:832 0:000 - [01]: xcpm performance fix 1 (wrsmr fix to get CPU max) © okrasit :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed
3:832 0:000 - [02]: _xcpm_pkg_scope_msr  © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed
3:832 0:000 - [03]: XCPM_idle Replace All fix by Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed
3:832 0:000 - [04]: _xcpm_core_scope_msrs  © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed
3:832 0:000 - [05]: _xcpm_bootstrap Sierra © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed
3:832 0:000 - [06]: _xcpm_SMT_scope_msrs  © Pike R. Alpha :: [OS: 10.12.2 | MatchOS: 10.12 | MatchBuild: All] ==> allowed
3:832 0:000 === [ PatchSmbios ] =======================================
3:832 0:000 insert table 9 for dev 0:0
3:832 0:000 insert table 9 for dev 0:1
3:832 0:000 insert table 9 for dev 19:0
3:832 0:000 Trusting SMBIOS...
3:832 0:000 Detected alternating SMBIOS channel banks
3:832 0:000 Channels: 4
3: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 23
3:832 0:000 partNum=F4-3000C15-4GRR
3:832 0:000 SMBIOS Type 17 Index = 0 => 0 0:
3:832 0:000 DIMM1 2666MHz 4096MB
3:832 0:000 partNum=F4-3000C15-4GRR
3:832 0:000 SMBIOS Type 17 Index = 1 => 1 2:
3:832 0:000 DIMM2 2666MHz 4096MB
3:832 0:000 partNum=F4-3000C15-4GRR
3:832 0:000 SMBIOS Type 17 Index = 2 => 2 4:
3:832 0:000 DIMM3 2666MHz 4096MB
3:832 0:000 partNum=F4-3000C15-4GRR
3:832 0:000 SMBIOS Type 17 Index = 3 => 3 6:
3:832 0:000 DIMM4 2666MHz 4096MB
3:832 0:000 SMBIOS Type 17 Index = 4 => 4 1:
3:832 0:000 DIMM5 EMPTY
3:832 0:000 SMBIOS Type 17 Index = 5 => 5 3:
3:832 0:000 DIMM6 EMPTY
3:832 0:000 SMBIOS Type 17 Index = 6 => 6 5:
3:832 0:000 DIMM7 EMPTY
3:832 0:000 SMBIOS Type 17 Index = 7 => 7 7:
3:832 0:000 DIMM8 EMPTY
3:832 0:000 mTotalSystemMemory = 16384
3:832 0:000 NumberOfMemoryDevices = 8
3:832 0:000 Type20[0]->End = 0x3FFFFF, Type17[0] = 0x1000
3:832 0:000 Type20[1]->End = 0x7FFFFF, Type17[1] = 0x3000
3:832 0:000 Type20[2]->End = 0xBFFFFF, Type17[2] = 0x6000
3:832 0:000 Type20[3]->End = 0xFFFFFF, Type17[3] = 0xA000
3:832 0:000 Table 131 is present, CPUType=10
3:832 0:000 Change to: 507
3:832 0:000 === [ PatchACPI ] =========================================
3:832 0:000 RSDT 0xCB39C028
3:832 0:000 FADT from RSDT: 0xCB39C148
3:832 0:000 XSDT 0xCB39C098
3:832 0:000 FADT from XSDT: 0xCB3D21B8
3:832 0:000 Xsdt reallocation done
3:832 0:000 old FADT length=10C
3:833 0:000 DSDT found in Clover volume OEM folder: EFI\CLOVER\ACPI\patched\DSDT.aml
3:835 0:002 Apply DsdtFixMask=0x00000000 old way
3:835 0:000 drop _DSM mask=0x0000
3:835 0:000 === [ FixBiosDsdt ] =======================================
3:835 0:000 VideoCard devID=0x679A1002
3:835 0:000 DisplayADR1[0] = 0x30000, DisplayADR2[0] = 0x0
3:835 0:000 USBADR[0] = 0x140000 and PCIe = 0xFFFE
3:835 0:000 USBADR[1] = 0x1A0000 and PCIe = 0xFFFE
3:857 0:022 Audio HDA (addr:0x1B0000) setting specified layout-id=1 (0x1)
3:857 0:000 USBADR[2] = 0x1C0004 and PCIe = 0x0
3:857 0:000 USBADR[3] = 0x1D0000 and PCIe = 0xFFFE
3:857 0:000 first CPU found at 2B23 offset 2B27
3:857 0:000 device candidate at 2A8F
3:857 0:000 device inserted in acpi_cpu_score SCK0
3:857 0:000 score candidate at 28BC
3:857 0:000 score inserted in acpi_cpu_score _SB_SCK0
3: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_SCK0
3:857 0:000 Found PCIROOTUID = 0
3:857 0:000 === [ ACPIDropTables ] ====================================
3:857 0:000 === [ PatchAllSSDT ] ======================================
3:857 0:000 Patch table: SSDT SataTabl
3:857 0:000 SSDT len = 0x36D
3:857 0:000 Patch table: SSDT PmMgt
3:857 0:000 SSDT len = 0x14C9B
3:857 0:000 Drop tables from Xsdt, SIGN=XXXX TableID= Length=0
3:857 0:000 Xsdt has tables count=16
3:857 0:000 corrected XSDT length=164
3:857 0:000 === [ ACPIPatchedAML ] ====================================
3:857 0:000 Start: Processing Patched AML(s): Unsorted
3:857 0:000 Inserting ssdt.aml from EFI\CLOVER\ACPI\patched ... Success
3:858 0:000 End: Processing Patched AML(s)
3:858 0:000 CPUBase=0 and ApicCPUBase=0 ApicCPUNum=12
3:858 0:000 === [ RestSetup macOS ] ===================================
3:858 0:000 EdidDiscovered size=128
3:858 0:000 000 | 00 FF FF FF FF FF FF 00 05 E3
3:858 0:000 010 | 77 32 65 01 00 00 23 1A 01 04
3:858 0:000 020 | B5 47 28 78 3A 91 45 A7 55 4E
3:858 0:000 030 | A0 25 0C 50 54 BF EF 00 D1 C0
3:858 0:000 040 | B3 00 95 00 81 80 81 40 81 C0
3:858 0:000 050 | 01 01 01 01 56 5E 00 A0 A0 A0
3:858 0:000 060 | 29 50 30 20 35 00 C4 8F 21 00
3:858 0:000 070 | 00 1E 00 00 00 FD 00 32 4C 1E
3:858 0:000 080 | 63 1E 01 0A 20 20 20 20 20 20
3:858 0:000 090 | 00 00 00 FC 00 51 33 32 37 37
3:858 0:000 100 | 0A 20 20 20 20 20 20 20 00 00
3:858 0:000 110 | 00 FF 00 4C 47 58 47 39 4A 41
3:858 0:000 120 | 30 30 30 33 35 37 01 9C
3:858 0:000 Framebuffer @0xD0000000 MMIO @0xFBE00000 I/O Port @0x0000E000 ROM Addr @0xFBE40000
3:858 0:000 PCI region 1 = 0x00000000, region3 = 0x00000000, region5 = 0x00000000
3:858 0:000 BIOS_0_SCRATCH=0x0000002C, 1=0x4058B880, 2=0x00000000, 3=0x00000000, 4=0x00000000, 5=0x00000000, 6=0x00000000
3:858 0:000 RADEON_CRTC2_GEN_CNTL == 0x00000000
3:858 0:000 card posted because CONFIG_MEMSIZE=0xC00
3:858 0:000 ATI card POSTed,
3:858 0:000 Set VRAM for Tahiti =3072Mb
3:858 0:000 ATI: get_vram_size returned 0xC0000000
3:858 0:000 ATI Radeon EVERGREEN+ family
3:858 0:000 Users config name Aji
3:858 0:000 (AtiPorts) Nr of ports set to: 5
3: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 = 6290
3:858 0:000 CurrentMode: Width=2560 Height=1440
3:858 0:000 Beginning FSInjection
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C88C4818
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C88C4818
3:865 0:006 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other
3:865 0:000 Extra kext: EFI\CLOVER\kexts\Other\AppleALC.kext
3:869 0:003 Extra PlugIn kext: EFI\CLOVER\kexts\Other\AppleALC.kext\Contents\PlugIns\PinConfigs.kext
3:872 0:002 Extra kext: EFI\CLOVER\kexts\Other\FakeSMC.kext
3:873 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_ACPISensors.kext
3:874 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_CPUSensors.kext
3:875 0:000 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_GPUSensors.kext
3:876 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\Other\FakeSMC.kext\Contents\PlugIns\FakeSMC_LPCSensors.kext
3:881 0:004 Extra kext: EFI\CLOVER\kexts\Other\IntelMausiEthernet.kext
3:883 0:001 Extra kext: EFI\CLOVER\kexts\Other\X99_Injector USB 3.kext
3:884 0:000 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.12
3:885 0:000 SetStartupDiskVolume:
3:885 0:000 * Volume: 'Sierra'
3:885 0:000 * LoaderPath: ''
3:885 0:000 * DevPath: Sierra
3:885 0:000 * GUID = A9DD86F4-69CE-4B54-86A3-9A2D95BBD68A
3:885 0:000 * efi-boot-device: IOMatchIOProviderClassIOMediaIOPropertyMatchUUIDA9DD86F4-69CE-4B54-86A3-9A2D95BBD68A
3:885 0:000 Custom boot screen not used because entry has unset use graphics

Mac-Pro-de-Fljagd:~ fljagd$

 

 

post-1181448-0-89208700-1481791508_thumb.png

  • Like 1

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
  • Like 1

 

So I have updated the script. Here is it attachicon.gif80.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. :) 

  • Like 1

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$
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 ;)

  • Like 1
×
×
  • Create New...