From d3e029575c29cad2ba40cce7bf4270a28b83870e Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Wed, 10 Aug 2022 09:45:47 +0200 Subject: [PATCH] utils/genrandconfig: improve ARM trusted firmware fixup Improve commit 541e794a959914d1189570c3674908eb5db08ce8 by adding a custom case to make sure that a random configuration with an empty platform for arm-trusted-firmware doesn't fail: make_helpers/plat_helpers.mk:15: *** "Error: Unknown platform. Please use PLAT= to specify the platform". Stop. Fixes: - http://autobuild.buildroot.org/results/1b67220008223d1bcbe70b76d643f9d04362ba6b Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- utils/genrandconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/genrandconfig b/utils/genrandconfig index 4c00d67691..6772df44e3 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -424,6 +424,10 @@ def fixup_config(sysinfo, configfile): configlines.remove('BR2_KERNEL_HEADERS_CUSTOM_TARBALL=y\n') configlines.remove('BR2_KERNEL_HEADERS_CUSTOM_TARBALL_LOCATION=""\n') + if 'BR2_TARGET_ARM_TRUSTED_FIRMWARE=y\n' in configlines and \ + 'BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM=""\n' in configlines: + return False; + if 'BR2_TARGET_ARM_TRUSTED_FIRMWARE=y\n' in configlines and \ 'BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION=y\n' in configlines and \ 'BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_VERSION_VALUE=""\n' in configlines: