@@ -2526,13 +2526,11 @@ class DevtoolIdeSdkTests(DevtoolBase):
def _write_bb_config(self, recipe_names):
"""Helper to write the bitbake local.conf file"""
conf_lines = [
- 'IMAGE_CLASSES += "image-combined-dbg"',
- 'IMAGE_GEN_DEBUGFS = "1"',
- 'IMAGE_INSTALL:append = " gdbserver %s"' % ' '.join(
- [r + '-ptest' for r in recipe_names]),
+ 'IMAGE_INSTALL:append = " %s"' % ' '.join([r + '-ptest' for r in recipe_names]),
'DISTRO_FEATURES:append = " ptest"'
]
- self.write_config("\n".join(conf_lines))
+ fragments = ['core/yocto/devtool-ide-sdk']
+ self.write_config("\n".join(conf_lines), fragments=fragments)
def _check_workspace(self):
"""Check if a workspace directory is available and setup the cleanup"""