[oe-commits] Corneliu Stoicescu : masterimage.py: enable dynamical determination of rootfs type

git at git.openembedded.org git at git.openembedded.org
Fri Jun 13 17:10:59 UTC 2014


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

Author: Corneliu Stoicescu <corneliux.stoicescu at intel.com>
Date:   Fri Jun  6 22:14:33 2014 +0300

masterimage.py: enable dynamical determination of rootfs type

YB: #6375

Adding support for get_image_fstype() in the MasterImageHardwareTarget and GummibootTarget classes.

Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/controllers/masterimage.py | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/meta/lib/oeqa/controllers/masterimage.py b/meta/lib/oeqa/controllers/masterimage.py
index f2585d4..b03c5bf 100644
--- a/meta/lib/oeqa/controllers/masterimage.py
+++ b/meta/lib/oeqa/controllers/masterimage.py
@@ -28,6 +28,8 @@ class MasterImageHardwareTarget(oeqa.targetcontrol.BaseTarget):
 
     __metaclass__ = ABCMeta
 
+    supported_image_fstypes = ['tar.gz', 'tar.bz2']
+
     def __init__(self, d):
         super(MasterImageHardwareTarget, self).__init__(d)
 
@@ -48,7 +50,8 @@ class MasterImageHardwareTarget(oeqa.targetcontrol.BaseTarget):
         bb.note("Server IP: %s" % self.server_ip)
 
         # test rootfs + kernel
-        self.rootfs = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("IMAGE_LINK_NAME", True) + '.tar.gz')
+        self.image_fstype = self.get_image_fstype(d)
+        self.rootfs = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("IMAGE_LINK_NAME", True) + '.' + self.image_fstype)
         self.kernel = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("KERNEL_IMAGETYPE"))
         if not os.path.isfile(self.rootfs):
             # we could've checked that IMAGE_FSTYPES contains tar.gz but the config for running testimage might not be
@@ -177,7 +180,7 @@ class GummibootTarget(MasterImageHardwareTarget):
                 'mount -t efivarfs efivarfs /sys/firmware/efi/efivars',
                 'cp ~/test-kernel /boot',
                 'rm -rf /mnt/testrootfs/*',
-                'tar xzvf ~/test-rootfs.tar.gz -C /mnt/testrootfs',
+                'tar xvf ~/test-rootfs.%s -C /mnt/testrootfs' % self.image_fstype,
                 'printf "%s" > /sys/firmware/efi/efivars/LoaderEntryOneShot-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f' % self.efivarvalue
                 ]
 
@@ -187,7 +190,7 @@ class GummibootTarget(MasterImageHardwareTarget):
         # from now on, every deploy cmd should return 0
         # else an exception will be thrown by sshcontrol
         self.master.ignore_status = False
-        self.master.copy_to(self.rootfs, "~/test-rootfs.tar.gz")
+        self.master.copy_to(self.rootfs, "~/test-rootfs." + self.image_fstype)
         self.master.copy_to(self.kernel, "~/test-kernel")
         for cmd in self.deploy_cmds:
             self.master.run(cmd)



More information about the Openembedded-commits mailing list