From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:400c:c09::242; helo=mail-wm0-x242.google.com; envelope-from=leif.lindholm@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm0-x242.google.com (mail-wm0-x242.google.com [IPv6:2a00:1450:400c:c09::242]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CC11B2222C24E for ; Fri, 26 Jan 2018 09:24:39 -0800 (PST) Received: by mail-wm0-x242.google.com with SMTP id r71so2757623wmd.1 for ; Fri, 26 Jan 2018 09:30:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=8rLV9855gykLAEx8nUeEZeOinDrxdkulK/SGWtpmUsQ=; b=VA9n2ZFO5DoWl5KihBgaDo2Vo5SJ6AbPQif5MQyaB7eEfzjif0bSGsq6ABdn6fRl0L I4UBCd8JMWt0A3cIHqKX6aPMQbn3vcgDNssAF4unF94G+VMs/93Rung2EEp/uv9U0jgp ePzu7T7y9j4irSBpe9gPInsfFpRuTf1Dwwsa4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=8rLV9855gykLAEx8nUeEZeOinDrxdkulK/SGWtpmUsQ=; b=n0xjzuag/NuCxnh7kQzLyOLLTahrzSMtaVbXy3pHRwEgaqF/YsokxI1od937JdiYsV CW9nfw0XM2Aoflnf8DHU5IOzSrPLh4d+McgxFZOrwuhHRYX0Up2hdO0c+eAoe9aWl2dZ uWv9fsEGiiRxaCOebVaiFITtGY2vJOReQe7GPmZJ+Sne93LwzRZxVlWjnoymoxWVE4nK YT8bppXjmUOdlT3q25M2e495bpFKzqgQqTNy66IK3KDLSvAJfXv6gHRTiX/75ARQSMzc TI1rl1ep20cobUwfBRsWkfdx82HLMy1FoF68t+PHtUQM6OXapTi+2RTR8BZmPAjC60e4 /r6A== X-Gm-Message-State: AKwxytcNf3fvv/bgMI4vdlg2AfvV5FdvapVueT6mK/syosZuy3ZCBPPj q+RqSKAE1VJ2J46twqaeAV2MS/FosEc= X-Google-Smtp-Source: AH8x2272n2kp7GZ6XrUx3aOFstmhn06U1V5zQQ/96GCJxKzTJ2jHIQSt25lD1a+s8mG8Vu+/PDK2Pw== X-Received: by 10.28.158.77 with SMTP id h74mr10718145wme.38.1516987808214; Fri, 26 Jan 2018 09:30:08 -0800 (PST) Received: from vanye.hemma.eciton.net (cpc92316-cmbg19-2-0-cust118.5-4.cable.virginm.net. [82.12.0.119]) by smtp.gmail.com with ESMTPSA id 74sm5101042wmf.38.2018.01.26.09.30.07 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 26 Jan 2018 09:30:07 -0800 (PST) From: Leif Lindholm To: edk2-devel@lists.01.org Cc: ard.biesheuvel@linaro.org Date: Fri, 26 Jan 2018 17:30:06 +0000 Message-Id: <20180126173006.17324-1-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.11.0 Subject: [PATCH] BeagleBoardPkg: reroute Firmware Vendor Pcd to MdeModulePkg X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jan 2018 17:24:40 -0000 Commit f9669f09fb53 ("ArmPlatformPkg: retire obsolete PCDs") got rid of the unfortunate ARM-specific variant of PcdFirmwareVendor. However, BeagleBoard was still using it, so the change broke the build. Fix this by moving BeagleBoard to use the MdeModulePkg one instead. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Leif Lindholm --- BeagleBoardPkg/BeagleBoardPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeagleBoardPkg/BeagleBoardPkg.dsc b/BeagleBoardPkg/BeagleBoardPkg.dsc index 5d87ee3891..cef2e095d4 100644 --- a/BeagleBoardPkg/BeagleBoardPkg.dsc +++ b/BeagleBoardPkg/BeagleBoardPkg.dsc @@ -262,7 +262,7 @@ [PcdsFeatureFlag.common] gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport|TRUE [PcdsFixedAtBuild.common] - gArmPlatformTokenSpaceGuid.PcdFirmwareVendor|"Beagle Board" + gEfiMdeModulePkgTokenSpaceGuid.PcdFirmwareVendor|"Beagle Board" gEfiMdePkgTokenSpaceGuid.PcdMaximumUnicodeStringLength|1000000 gEfiMdePkgTokenSpaceGuid.PcdMaximumAsciiStringLength|1000000 -- 2.11.0