n810: Add the CAL BME PMM extractor script to preinit.
authorMichael Büsch <mb@bu3sch.de>
Sun, 6 Feb 2011 12:45:21 +0000 (12:45 +0000)
committerMichael Büsch <mb@bu3sch.de>
Sun, 6 Feb 2011 12:45:21 +0000 (12:45 +0000)
SVN-Revision: 25381

target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image [new file with mode: 0644]

diff --git a/target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image b/target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image
new file mode 100644 (file)
index 0000000..8e29fd5
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+do_extract_cal_bme_pmm() {
+       [ -e /lib/firmware/n810-cal-bme-pmm.fw ] && return 0
+
+       [ -x /usr/bin/calvaria ] || { echo "CAL-BME extract: calvaria not found"; return 1; }
+
+       /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"
+               return 1
+       }
+}
+
+boot_hook_add preinit_mount_root do_extract_cal_bme_pmm