diff options
author | Michael Büsch <mb@bu3sch.de> | 2011-02-06 12:45:21 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2011-02-06 12:45:21 +0000 |
commit | c9d7844645883807bc606e9ef0a87fe769d7d68c (patch) | |
tree | 0894e686698998340eab745eefd97aa8a70a6fca /target | |
parent | 09655bf0e46e0b889e8c7b007a5b426c9bc2d0e2 (diff) | |
download | upstream-c9d7844645883807bc606e9ef0a87fe769d7d68c.tar.gz upstream-c9d7844645883807bc606e9ef0a87fe769d7d68c.tar.bz2 upstream-c9d7844645883807bc606e9ef0a87fe769d7d68c.zip |
n810: Add the CAL BME PMM extractor script to preinit.
SVN-Revision: 25381
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image | 14 |
1 files changed, 14 insertions, 0 deletions
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 index 0000000000..8e29fd520e --- /dev/null +++ b/target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image @@ -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 |