summaryrefslogtreecommitdiffstats
path: root/scripts/lib
diff options
context:
space:
mode:
authorGeorgi, Tom <tom.georgi@karlstorz.com>2024-12-20 12:43:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-12-20 15:48:16 +0000
commit465872544eeb3db2fce53ef39f9250629d0f03a9 (patch)
treebcbed5d0081460f606a4463a7853d2a56bd027c8 /scripts/lib
parent409256a2df2a71459ef60a263f2b549b5bd2365b (diff)
downloadpoky-465872544eeb3db2fce53ef39f9250629d0f03a9.tar.gz
devtool: ide-sdk: check 'tools-debug' for gdbserver
Also check that 'tools-debug' is not set in IMAGE_FEATURES to determine if gdbserver is missing. (From OE-Core rev: 28a8b35826302a40e7bb49f4bd3213fe7026f480) Signed-off-by: Georgi, Tom <tom.georgi@karlstorz.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rwxr-xr-xscripts/lib/devtool/ide_sdk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/ide_sdk.py b/scripts/lib/devtool/ide_sdk.py
index ee7c68dbbe..42ac20c654 100755
--- a/scripts/lib/devtool/ide_sdk.py
+++ b/scripts/lib/devtool/ide_sdk.py
@@ -167,7 +167,7 @@ class RecipeImage:
167 self.__rootfs_dbg = os.path.join(workdir, 'rootfs-dbg') 167 self.__rootfs_dbg = os.path.join(workdir, 'rootfs-dbg')
168 168
169 self.gdbserver_missing = 'gdbserver' not in image_d.getVar( 169 self.gdbserver_missing = 'gdbserver' not in image_d.getVar(
170 'IMAGE_INSTALL') 170 'IMAGE_INSTALL') and 'tools-debug' not in image_d.getVar('IMAGE_FEATURES')
171 171
172 @property 172 @property
173 def debug_support(self): 173 def debug_support(self):