[oe-commits] Laurentiu Palcu : gconf.bbclass: run postinstalls at rootfs time

git at git.openembedded.org git at git.openembedded.org
Thu Dec 6 12:34:39 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 50b7f625cc2c4b9224726b11b6d4bd192209cc6e
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=50b7f625cc2c4b9224726b11b6d4bd192209cc6e

Author: Laurentiu Palcu <laurentiu.palcu at intel.com>
Date:   Tue Dec  4 11:49:50 2012 +0200

gconf.bbclass: run postinstalls at rootfs time

Signed-off-by: Laurentiu Palcu <laurentiu.palcu at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/classes/gconf.bbclass |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/meta/classes/gconf.bbclass b/meta/classes/gconf.bbclass
index 7a3ee3c..38097bc 100644
--- a/meta/classes/gconf.bbclass
+++ b/meta/classes/gconf.bbclass
@@ -15,13 +15,16 @@ export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL = "1"
 
 gconf_postinst() {
 if [ "x$D" != "x" ]; then
-	exit 1
+	export GCONF_BACKEND_DIR=${STAGING_LIBDIR_NATIVE}/GConf/2
+	export GCONF_CONFIG_SOURCE="xml::$D${sysconfdir}/gconf/gconf.xml.defaults"
+else
+	export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
 fi
-SCHEMA_LOCATION=/etc/gconf/schemas
+
+SCHEMA_LOCATION=$D/etc/gconf/schemas
 for SCHEMA in ${SCHEMA_FILES}; do
 	if [ -e $SCHEMA_LOCATION/$SCHEMA ]; then
-		HOME=/root GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \
-			gconftool-2 \
+		HOME=$D/root gconftool-2 \
 			--makefile-install-rule $SCHEMA_LOCATION/$SCHEMA > /dev/null
 	fi
 done





More information about the Openembedded-commits mailing list