My Thinkpad X260 hackintosh has 10.14.6 running and almost everything works ok so far except Sierra EM7455 WWAN adapter. Guess I'm not the first one who faced this problem. Long story short - modem is able to detect a SIM card, successfully register itself on GSM network etc but for some reason unable to connect. It gives an ERROR and that's all. AT+CEER explains nothing and ADB feature seems disabled so it's impossible to debug it further. Btw it works pretty well in Linux.
I had spare HUAWEI ME906E M.2 WWAN card branded as HP LT4112 somewhere and decided to try it out. And of course got slapped by Lenovo BIOS white-list 'feature'. It was said to be removed in recent laprop models but looks like it's true for WAN slot only.
There were two options: Remove BIOS white-list by patching BIOS chip itself with external programmer or try to change USB VID/PID of the card to some of the white-listed ones. The first option was not my case as it turned out that X260 has WSON form-factor BIOS chip and my no-name SOIC clip won't work with it. I do not have an equipment needed to unsolder the chip and solder it back. So I've opted for the second.
- Figure out whitelisted USB VID/PID
- Patch firmware flasher binary with these values and flash the card
- Huawei ME906S:
VendorID/ProductID: 12D1/15C1
- Sierra EM7455 (Lenovo branded):
VendorID/ProductID: 1199/9079
So I've chosed the first one.
This step has to done in Windows either real installation or VirtualBox.
- Downlaod modem firmware updater from HP site (remember, I have HP branded card?). In my case I decided to go with FW version 11.503.00.09.00. ftp://ftp.hp.com/pub/softpaq/sp62001-62500/sp62480.exe
- Unpack received file using
7z
to get a file namedHP_lt4112_FW_11.503.00.09.00.exe
- Open the file in your hex-editor and look for the following block:
<product product_id ="327680">
<Vendor_NV>
<nv id="50394">F0,03</nv>
<nv id="50395">1D,55</nv>
<nv id="50396">1D,58</nv>
<nv id="50397">1D,50</nv>
<nv id="50413">1</nv>
<nv id="50414">0,1,0,0,0,0,0,0</nv>
</Vendor_NV>
Replace it with:
<product product_id ="327680">
<Vendor_NV>
<nv id="50394">D1,12</nv>
<nv id="50395">68,15</nv>
<nv id="50396">C1,15</nv>
<nv id="50397">1A,1F</nv>
<nv id="50413">1</nv>
<nv id="50414">0,1,0,0,0,0,0,0</nv>
</Vendor_NV>
Here we have changed HP's default USB VID/PID to HUAWEI ME906S ones
- Go on with the file and look for the following hex sequence:
66 8b 04 5a
66 3b 45 e6
0f 85 13 01
00 00
Replace it with:
66 8b 04 5a
66 3b 45 e6
90 90 90 90
90 90
Here we have disabled CRC check of the firmware blob. Without doing this installer will hang in "Detecting ports.." infinite loop or give you an Error: 18 or 255 or whatever else.
- Save the file and shutdown your laptop.
- Remove laptop's back cover, power it on and boot into your OS. Hotplug the modem and flash it using exe saved before.
- After firmware being flashed modem will up with changed USB VID/PID.
MacOS part of this hack is not covered here but perhaps you know what to do next to get modem up and running
03.01.21 faust93
hi, any update on ME906 with macos kext?