From 7f50197b9528b036cf16a0493b9f40c0aee4c7a8 Mon Sep 17 00:00:00 2001 From: Andrei Leonchikov Date: Sat, 20 Sep 2025 08:23:23 +0000 Subject: [PATCH] Split config and defconfig targets. --- scripts/target.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/target.py b/scripts/target.py index b42eb04..27d0b2e 100644 --- a/scripts/target.py +++ b/scripts/target.py @@ -97,9 +97,11 @@ class Target: if (sub_target == "") or (not self.have_config): targets = self.target else: - if (sub_target == "config"): + if (sub_target == "defconfig"): opts.append(self.defconfig_name) opts.append(self.config_target) + elif (sub_target == "config"): + opts.append(self.config_target) else: Logger.error("Invalid sub-target!") for target in targets: