meta-tizen: Enable initrd creation 69/42469/1
authorBaptiste Durand <baptiste.durand@open.eurogiciel.org>
Wed, 6 May 2015 08:08:17 +0000 (10:08 +0200)
committerJean-Benoit MARTIN <jean-benoit.martin@open.eurogiciel.org>
Mon, 29 Jun 2015 08:57:26 +0000 (10:57 +0200)
(From meta-tizen rev: 52ecb4cfb6dc957301575d5e7844272d65cda0c8)

Change-Id: Id0bf0f1a9d454ad67d662809277b45bf122568f5
Signed-off-by: Baptiste Durand <baptiste.durand@open.eurogiciel.org>
Signed-off-by: Jean-Benoit MARTIN <jean-benoit.martin@open.eurogiciel.org>
meta-tizen/meta-tizen-common-base/classes/metatizen.bbclass

index 5f77686..721dee7 100644 (file)
@@ -1,19 +1,15 @@
+
+DIRFILES = "1"
+
+
+
 python () {
     if bb.data.inherits_class('rootfs_rpm', d):
         rootfsdepends = d.getVarFlag("do_rootfs", "depends", True)
         rootfsdepends = rootfsdepends.replace("rpmresolve-native:do_populate_sysroot", "")
         d.setVarFlag("do_rootfs", "depends", rootfsdepends)
-
-    if bb.data.inherits_class('image-live', d):
-        bootimgdepends = d.getVarFlag("do_bootimg", "depends", True)
-        bootimgdepends = bootimgdepends.replace(d.expand("${INITRD_IMAGE}:do_rootfs"), "")
-        d.setVarFlag("do_bootimg", "depends", bootimgdepends)
-        d.setVar("INITRD_IMAGE", "")
-        d.setVar("INITRD", "")
 }
 
-DIRFILES = "1"
-
 # MANIFESTFILES_<pn> is the Tizen Smack .manifest file to be used for a binary .rpm.
 # It must be part of the source tree (either at the root or in a sub-directory)
 # or get created there during configure. Out-of-tree compilation is not supported.