From ee54315791ef83c2d23d2b22f8e905668e8d14fb Mon Sep 17 00:00:00 2001 From: Dominik Holland Date: Wed, 24 Jan 2024 10:14:39 +0100 Subject: [PATCH] Boot2Qt: Allow the deploy steps to be used in all deploy configurations Instead of limiting them to a specific deployment configuration, they are now limited to the B2Qt device. Change-Id: Ic27d3e4fc50cea0a838223eb41e0e422d7b17b82 Reviewed-by: hjk --- src/plugins/boot2qt/qdbplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/boot2qt/qdbplugin.cpp b/src/plugins/boot2qt/qdbplugin.cpp index bf56a0689c3..5cd9d438021 100644 --- a/src/plugins/boot2qt/qdbplugin.cpp +++ b/src/plugins/boot2qt/qdbplugin.cpp @@ -94,8 +94,8 @@ public: explicit QdbDeployStepFactory(Id existingStepId) { cloneStepCreator(existingStepId); - setSupportedConfiguration(Constants::QdbDeployConfigurationId); setSupportedStepList(ProjectExplorer::Constants::BUILDSTEPS_DEPLOY); + setSupportedDeviceType(Constants::QdbLinuxOsType); } };