summaryrefslogtreecommitdiffstats
path: root/scripts/postinst-intercepts/update_font_cache
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2013-02-12 18:12:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-13 16:52:28 +0000
commit7306dbea6d5ea95624f89bb247b742392be20046 (patch)
tree8106894b93f7c3ff332957806092db88acfab780 /scripts/postinst-intercepts/update_font_cache
parentc77e1f4e14edf7a07000f0e7360d42039af5e524 (diff)
downloadast2050-yocto-poky-7306dbea6d5ea95624f89bb247b742392be20046.zip
ast2050-yocto-poky-7306dbea6d5ea95624f89bb247b742392be20046.tar.gz
Add separate directory for postinstall intercepts
The scripts/postinst-intercepts will contain all postinstall hooks that we need to run after all packages have been installed. If one wants to install such a postinst hook, all it needs to do is put the hook in this directory and, from the package postinstall scriptlet, call: postinst_intercept <hook_name> <package_name> <var1=...> ... This will, practically, add the package_name in the list of packages that need the hook to run and, also, set any variables that would be needed in the hook. For example, variables like ${libdir}, ${bindir}, etc. that might depend on distribution can be passed on to the script in this way. (From OE-Core rev: 0ef538d75c2f3921a2fcbe6ca1deed5525b276cc) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/postinst-intercepts/update_font_cache')
-rw-r--r--scripts/postinst-intercepts/update_font_cache7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/postinst-intercepts/update_font_cache b/scripts/postinst-intercepts/update_font_cache
new file mode 100644
index 0000000..562b5b3
--- /dev/null
+++ b/scripts/postinst-intercepts/update_font_cache
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+PSEUDO_UNLOAD=1 qemuwrapper $D$(readelf -l $D${bindir}/fc-cache| grep "Requesting program interpreter"|sed -e 's/^.*\[.*: \(.*\)\]/\1/') \
+ --library-path $D/lib:$D/usr/lib $D${bindir}/fc-cache \
+ --sysroot=$D >/dev/null 2>&1
+
+
OpenPOWER on IntegriCloud