From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:4864:20::441; helo=mail-wr1-x441.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wr1-x441.google.com (mail-wr1-x441.google.com [IPv6:2a00:1450:4864:20::441]) (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 DCEB021196210 for ; Tue, 27 Nov 2018 04:17:39 -0800 (PST) Received: by mail-wr1-x441.google.com with SMTP id p4so22460686wrt.7 for ; Tue, 27 Nov 2018 04:17:39 -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:mime-version :content-transfer-encoding; bh=hdjSCosq3PSTfvKv4wm+x5K6Gzb6Eu2hqBThCT0Ay20=; b=CJeYJPRhjneunE+QHkLn5QDXVyEj3kopPHR0dSFwWdHko/Vvs+3qOPvISVQ/o43vUi 7v7PD2RlWNjiBbqUKiXyyKpN3CwF+40XsGkyVx7sLB616UWynkX+Mxoq4ZsWjQGzEe+C eKwbEVcta7ZKuX15UXD2PnydkL0xuKX1fBVJo= 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:mime-version :content-transfer-encoding; bh=hdjSCosq3PSTfvKv4wm+x5K6Gzb6Eu2hqBThCT0Ay20=; b=c8gjDxzG4YFRHXfwALovZ0BsrKXSj9AZjItXFismkiRHYCYIV5PraYSNvFrW2Cyjnq YfQkcHmuig7Z/1QeOYx1Ol4DlpKYvbzm78EITqRuHDo+FZ4RsSYD25ox3ha8bMBYuXeU 8qU/bnaOXENbhFQ0KGMzmZWSk2svhkcCcl5ns1ijSpeKtYLzUhsjWI/N0M1DsR4g61em tyBGpLCIpYDd/TPEH45sZsFvywfhdK5VGbw+FZELuBNm7bBwLDo0XdVVUgnL9TLi+R6Q f2J92CNsLkbdiN7EFXfdhPTLDa3TCnCnQla4Zm/JtOmf1zQM7yiSHen3HfLzlTV6fUIs U3Hw== X-Gm-Message-State: AA+aEWYqZ5LeKtBuuRh18ocx4yeuYywvvxPy2J3eczWCaxy/y3HgB70P jHXbWQCwKB2wAZJIzGdpg7lI61m9O0c= X-Google-Smtp-Source: AFSGD/VsuoifVu2wueTCTIbV1ep56IjtFupGRryja0m5C9UbZAMgyRYsP6RXdDpyEbSo+Z33zt9Eyg== X-Received: by 2002:adf:a50c:: with SMTP id i12mr26086029wrb.220.1543321057960; Tue, 27 Nov 2018 04:17:37 -0800 (PST) Received: from harold.home ([2a01:cb1d:112:6f00:f523:5d63:a56a:3d76]) by smtp.gmail.com with ESMTPSA id y9sm4186462wrq.55.2018.11.27.04.17.36 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 27 Nov 2018 04:17:37 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Date: Tue, 27 Nov 2018 13:17:27 +0100 Message-Id: <20181127121727.23774-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Subject: [PATCH] ArmPkg/ArmPkg.dsc: move ArmMmuStandaloneMmLib.inf to AARCH64 section X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2018 12:17:40 -0000 Content-Transfer-Encoding: 8bit ArmMmuStandaloneMmLib.inf cannot be built for ARM so move it to the [Components.AARCH64] section in ArmPkg.dsc. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- ArmPkg/ArmPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmPkg/ArmPkg.dsc b/ArmPkg/ArmPkg.dsc index acf679651ddf..495f13d2bbec 100644 --- a/ArmPkg/ArmPkg.dsc +++ b/ArmPkg/ArmPkg.dsc @@ -117,7 +117,6 @@ [Components.common] ArmPkg/Library/ArmPsciResetSystemLib/ArmPsciResetSystemLib.inf ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.inf ArmPkg/Library/ArmExceptionLib/ArmRelocateExceptionLib.inf - ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf ArmPkg/Drivers/CpuDxe/CpuDxe.inf ArmPkg/Drivers/CpuPei/CpuPei.inf @@ -153,3 +152,4 @@ [Components.common] [Components.AARCH64] ArmPkg/Library/ArmMmuLib/ArmMmuPeiLib.inf + ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf -- 2.19.1