summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorAdrian Freihofer <adrian.freihofer@gmail.com>2024-09-22 17:43:14 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-09-30 17:00:50 +0100
commit21917a63abd74039dead6006cd3ef3d29915d530 (patch)
tree00c3c12e3b8de4352b37619607b2aac90a36dc05 /meta/lib
parent8634e46b4040b6008410b6d77fecb5cbaec7e90e (diff)
downloadpoky-21917a63abd74039dead6006cd3ef3d29915d530.tar.gz
devtool: drop S = WORKDIR workaround
Dropping support for S = WORKDIR allows to drop this ugly workaround. With S = WORKDIR it was possible to refer to a file via oe-local-files symlink or via direct file path. Ensuring the pseudo database is consistent for both paths was extra complicated and required this bad function. Really nice to drop it now! (From OE-Core rev: 2b799fdf267f44c26797593984d9828c4fd0fd31) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index 7d61773980..1739c84853 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -2585,11 +2585,6 @@ class DevtoolIdeSdkTests(DevtoolBase):
2585 i_and_d_script_path = os.path.join( 2585 i_and_d_script_path = os.path.join(
2586 self._workspace_scripts_dir(recipe_name), i_and_d_script) 2586 self._workspace_scripts_dir(recipe_name), i_and_d_script)
2587 self.assertExists(i_and_d_script_path) 2587 self.assertExists(i_and_d_script_path)
2588 del_script = "delete_package_dirs_" + recipe_id
2589 del_script_path = os.path.join(
2590 self._workspace_scripts_dir(recipe_name), del_script)
2591 self.assertExists(del_script_path)
2592 runCmd(del_script_path, cwd=tempdir)
2593 2588
2594 def _devtool_ide_sdk_qemu(self, tempdir, qemu, recipe_name, example_exe): 2589 def _devtool_ide_sdk_qemu(self, tempdir, qemu, recipe_name, example_exe):
2595 """Verify deployment and execution in Qemu system work for one recipe. 2590 """Verify deployment and execution in Qemu system work for one recipe.