85b2f83b9d
This is a device-specific package. The only device that depends on this, device-nokia-n900, is in community, so let's move it there too. [ci:skip-build]: already built successfully in CI
10 lines
292 B
Bash
10 lines
292 B
Bash
#!/bin/sh -e
|
|
|
|
if [ -e /in-pmbootstrap ]; then
|
|
echo "Skipping update of N900 WLAN calibration data (running in pmbootstrap)"
|
|
exit 0
|
|
fi
|
|
|
|
echo "Updating N900's WLAN calibration data.."
|
|
wl1251-cal --nvs-loading=/dev/null --nvs-push-data=/lib/firmware/ti-connectivity/wl1251-nvs.bin
|
|
echo "Done"
|