In the postinst script, one of the vconftool command fails to execute
which prevents the image to be built. As a TEMPORARY WORKAROUND the
failing command is removed. This patch will need to be reverted as soon
as this issue has been properly corrected.
Bug-Tizen: BTY-27
Change-Id: If11f9a5cdb527b048ebeebbc34b275f611c2b068
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
+pkg_postinst_${PN}() {
+ #!/bin/sh -e
+
+ [ "x\$D" == "x" ] && ldconfig
+ # Temporary workaround needed to generate the image
+ #vconftool set -t int memory/Sound/SoundStatus "0" -g 29 -f -i
+}