diff mbox series

[meta-oe,3/3] openocd: enable dmem and jimtcl

Message ID 20251001085614.1634-1-joao.lima@hbkworld.com
State New
Headers show
Series [meta-oe,1/3] openocd: bump the openocd, jimtcl versions | expand

Commit Message

Lima, João Oct. 1, 2025, 8:56 a.m. UTC
From: Joao Lima <joao.lima@hbkworld.com>

Build configuration:
   - Enable dmem adapter driver (--enable-dmem)
   - Enable internal jimtcl (--enable-internal-jimtcl)
   - Add both features to default PACKAGECONFIG

Signed-off-by: Joao Lima <joao.lima@hbkworld.com>
---
 meta-oe/recipes-devtools/openocd/openocd_git.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-oe/recipes-devtools/openocd/openocd_git.bb b/meta-oe/recipes-devtools/openocd/openocd_git.bb
index 846d2f62c5..b39ca5c244 100644
--- a/meta-oe/recipes-devtools/openocd/openocd_git.bb
+++ b/meta-oe/recipes-devtools/openocd/openocd_git.bb
@@ -55,7 +55,10 @@  FILES:${PN} = " \
 
 PACKAGECONFIG[sysfsgpio] = "--enable-sysfsgpio,--disable-sysfsgpio"
 PACKAGECONFIG[remote-bitbang] = "--enable-remote-bitbang,--disable-remote-bitbang"
-PACKAGECONFIG ??= "sysfsgpio remote-bitbang"
+PACKAGECONFIG[dmem] = "--enable-dmem"
+PACKAGECONFIG[jimtcl] = "--enable-internal-jimtcl"
+
+PACKAGECONFIG ??= "sysfsgpio remote-bitbang dmem jimtcl"
 
 # Can't be built with ccache
 CCACHE_DISABLE = "1"