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::243; helo=mail-wm0-x243.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm0-x243.google.com (mail-wm0-x243.google.com [IPv6:2a00:1450:400c:c09::243]) (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 1249C20356240 for ; Tue, 5 Dec 2017 02:09:07 -0800 (PST) Received: by mail-wm0-x243.google.com with SMTP id 64so214369wme.3 for ; Tue, 05 Dec 2017 02:13:38 -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:in-reply-to:references; bh=OvBpfqt+pJq0AysC/sX5rDUGmy+FR/I4H2u+rsF7IBM=; b=Crh2FRToMAm0fC6pzLPm8b0gysUo/1E/Vi9kYq0NAuyljJTfzL5oW2sLbgjDyQNnHV MbsMy483hL501EexvU+g/0XeVsiDFp1L3cB6HGz3V89O7mrEqE4jmUOfLgPq9CwqgSnc au4eMwXanJydZ4G24kW+qcm+wMqArLB+hZO28= 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:in-reply-to :references; bh=OvBpfqt+pJq0AysC/sX5rDUGmy+FR/I4H2u+rsF7IBM=; b=l+kcePJ14T9sMQrMOisqw8K24Lpc9r5kQqnGtETtqIr8aGHM6liqSC2PoOUvG0YjcK lef7f+F1+eNc4dc02H2/SoP8kljj2fbhXzeHkCBEhhr0DYKCJfrL75HAi1mNB7T40LWG 4BiSIbECnZke70nk4R3fCif99AXP2EwJUPCXdiY1JWz3jmCmv9J79C/yfD1JtWLnNOgb lh+WtOo2ZYhJao3wbt0Xa2bmP9phyzWdrPIRPy0hhE5KR+5xreYu5JOc1Oh9RwhE702E SbomKIW4BjJUIj1DB94vX9/8lEZNBXmUjLxKRTxM1wRJRs/zFZnzJpBlpnIoJiqFAEJm oEUA== X-Gm-Message-State: AKGB3mJOFxs6D5fRKNqnxnAOcwniriCMa/meTciJEDBV/dbKAVfY+NCn w4W/HDbM1cqRZkzpqedKC8ql3FIjzPs= X-Google-Smtp-Source: AGs4zMY/0406rCR+MXiNQfYTl/AmTgyvpoPAxibN/t+e286HQt5Fi6oFdzhshulDapgn/aGdjOr4bA== X-Received: by 10.28.5.201 with SMTP id 192mr9169372wmf.142.1512468816730; Tue, 05 Dec 2017 02:13:36 -0800 (PST) Received: from localhost.localdomain ([105.150.171.234]) by smtp.gmail.com with ESMTPSA id d1sm14398065wra.44.2017.12.05.02.13.35 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 05 Dec 2017 02:13:36 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org, leif.lindholm@linaro.org Cc: Ard Biesheuvel Date: Tue, 5 Dec 2017 10:13:23 +0000 Message-Id: <20171205101326.23732-3-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171205101326.23732-1-ard.biesheuvel@linaro.org> References: <20171205101326.23732-1-ard.biesheuvel@linaro.org> Subject: [PATCH 2/5] ArmPlatformPkg/PrePeiCoreMPCore: use a unique GUID X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2017 10:09:08 -0000 PrePeiCoreMPCore reuses the GUID of its unicore sibling, which is usually fine, given that platforms never include both. However, it prevents us from creating a package .DSC that does include both, so update the GUID to a fresh one. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf b/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf index 8e0456f8dc2a..e3a31fa7c6f6 100644 --- a/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf +++ b/ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf @@ -16,7 +16,7 @@ [Defines] INF_VERSION = 0x00010005 BASE_NAME = ArmPlatformPrePeiCore - FILE_GUID = 469fc080-aec1-11df-927c-0002a5d5c51b + FILE_GUID = b78d02bb-d0b5-4389-bc7f-b39ee846c784 MODULE_TYPE = SEC VERSION_STRING = 1.0 -- 2.11.0