Split config and defconfig targets.

This commit is contained in:
Andrei Leonchikov 2025-09-20 08:23:23 +00:00
parent c8c076a100
commit 7f50197b95

View File

@ -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: