[oe-commits] Ulf Samuelsson : Add support for user-defined multimedia in rootfs

git version control git at git.openembedded.org
Sat Feb 12 16:25:44 UTC 2011


Module: openembedded.git
Branch: master
Commit: f57bd1bfbbe2b642dc5903c544d69c12c0a0ea06
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=f57bd1bfbbe2b642dc5903c544d69c12c0a0ea06

Author: Ulf Samuelsson <ulf.samuelsson at atmel.com>
Date:   Tue Feb  1 04:58:38 2011 +0000

Add support for user-defined multimedia in rootfs

Signed-off-by: Ulf Samuelsson <ulf.samuelsson at atmel.com>
Signed-off-by: Tom Rini <tom_rini at mentor.com>

---

 recipes/multimedia/multimedia_1.0.bb |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/recipes/multimedia/multimedia_1.0.bb b/recipes/multimedia/multimedia_1.0.bb
new file mode 100644
index 0000000..2abfefa
--- /dev/null
+++ b/recipes/multimedia/multimedia_1.0.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "MultiMedia files"
+LICENSE = "GPL"
+PR = "r5"
+
+# This package allows you to add multimedia contents to the file system
+# To add this, you define 
+# MULTIMEDIA_FILES=<path><filename>.tar.bz2 in local.conf
+# and include "multimedia" in your image
+
+do_install() {
+	install -d ${D}/usr/share/multimedia
+	if [ "x${MULTIMEDIA_FILES}" != "x" ] ; then
+		if [ -f ${MULTIMEDIA_FILES} ] ; then
+			tar jxvf ${MULTIMEDIA_FILES}	-C ${D}/usr/share/multimedia
+		fi
+	fi
+}
+
+FILES_${PN} = "\
+	/usr/share/multimedia/* \
+	/usr/share/multimedia \
+	"
+





More information about the Openembedded-commits mailing list