aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image
blob: d03c9dee037e39d7283a3b56de195d55130583a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

n810_cal_bme_pmm_extract() {
	[ -x /usr/bin/calvaria ] && {
		/usr/bin/calvaria -p -n bme -i last /dev/mtdblock1 >/lib/firmware/n810-cal-bme-pmm.fw ||\
			echo "CAL-BME extract: Failed to extract blob"
	}
}

[ "$FIRMWARE" = "n810-cal-bme-pmm.fw" ] && {
	[ -z "$(grep -e 'Nokia N810' /proc/cpuinfo)" ] || {
		[ -e /lib/firmware/n810-cal-bme-pmm.fw ] ||\
			n810_cal_bme_pmm_extract
	}
}