summaryrefslogtreecommitdiff
path: root/scripts/lib/compatlayer/context.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-09-19 15:57:07 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-21 11:34:08 +0100
commit2a6126a115f10750ea89f95629d3699ad41c5665 (patch)
treef3b795a5b5a5a8228256bf22dcfd335fb3165d1f /scripts/lib/compatlayer/context.py
parent52d0f351062da730055ffc6b953ff4e68ddb437f (diff)
downloadopenembedded-core-2a6126a115f10750ea89f95629d3699ad41c5665.tar.gz
openembedded-core-2a6126a115f10750ea89f95629d3699ad41c5665.tar.bz2
openembedded-core-2a6126a115f10750ea89f95629d3699ad41c5665.zip
scripts: rename yocto-compat-layer to remove "compatible" nomenclature
"Yocto Project Compatible" [1] is a programme which requires you meet specific criteria including going through an application process - it is not sufficient simply to run the script we have created here and have it produce no warnings/errors. To avoid people being confused by the fact that this script uses the term "compatible" or variations thereof, substitute usage of that word with "check" instead. The functionality of the script is unchanged. [1] https://www.yoctoproject.org/ecosystem/yocto-project-branding-program Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/lib/compatlayer/context.py')
-rw-r--r--scripts/lib/compatlayer/context.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/lib/compatlayer/context.py b/scripts/lib/compatlayer/context.py
deleted file mode 100644
index 7811d4ac20..0000000000
--- a/scripts/lib/compatlayer/context.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (C) 2017 Intel Corporation
-# Released under the MIT license (see COPYING.MIT)
-
-import os
-import sys
-import glob
-import re
-
-from oeqa.core.context import OETestContext
-
-class CompatLayerTestContext(OETestContext):
- def __init__(self, td=None, logger=None, layer=None, test_software_layer_signatures=True):
- super(CompatLayerTestContext, self).__init__(td, logger)
- self.layer = layer
- self.test_software_layer_signatures = test_software_layer_signatures