blob: cb9831e1456ac72957d3685306e0f63dfce87f35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/system/bin/sh
PATH=/sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin
ORIG_NVS_BIN=/system/etc/firmware/ti-connectivity/wl1271-nvs_127x.bin
NVS_BIN=/system/etc/firmware/ti-connectivity/wl1271-nvs.bin
if [ ! -f "$NVS_BIN" ]; then
mount -o remount,rw /system
cp ${ORIG_NVS_BIN} ${NVS_BIN}
calibrator set nvs_mac $NVS_BIN $(getprop ro.boot.wifimac | bbx sed 's/../&:/g;s/:$//')
chmod 644 ${NVS_BIN}
mount -o remount,ro /system
fi
insmod /system/lib/modules/wl12xx_sdio.ko
|