From a5aa889d63b9f076719166a3224153091d4ff9a0 Mon Sep 17 00:00:00 2001 From: Corneliu Stoicescu Date: Fri, 6 Jun 2014 22:14:35 +0300 Subject: targetcontrol.py: Add a classmethod to get extra files needed by the target controllers YB: #6254 Add a new classmethod that can be used by outside scripts to get the extra files needed by the target controllers. An outside script can predict rootfs, manifest and kernel files needed by a target controller, but sometimes there are other files needed. (From OE-Core rev: fea627022473cfb73299d0988628962ad8e80f89) Signed-off-by: Corneliu Stoicescu Signed-off-by: Richard Purdie --- meta/lib/oeqa/targetcontrol.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta') diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 866c414c1b..1464bf4047 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py @@ -72,6 +72,10 @@ class BaseTarget(object): def stop(self): pass + @classmethod + def get_extra_files(self): + return None + @classmethod def get_image_fstype(self, d, image_fstypes=None): if not image_fstypes: -- cgit v1.2.3-54-g00ecf