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:c0c::243; helo=mail-wr0-x243.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wr0-x243.google.com (mail-wr0-x243.google.com [IPv6:2a00:1450:400c:c0c::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 B227120356240 for ; Tue, 5 Dec 2017 02:09:04 -0800 (PST) Received: by mail-wr0-x243.google.com with SMTP id x49so20398294wrb.13 for ; Tue, 05 Dec 2017 02:13:35 -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=Ed5YQ3wtcVIhksvm0Bh8sk1x2HWcxgqVtdQKiFyADi8=; b=e4/0npk7H62imM6hR0C5XabNEf4pQK5oebpFNW+Mw/NYfdq+aLUaXpV4Y62w0zHv3X 1ot88B783RRbIuQc2R06sH1K4RiaFKCADMTIdgTTCZOmh9+OoT71VYlSeO1bzJ4paq8H UiwA34iQX8ZjYlju6fYfrnpRRlqaY5FbdC0LU= 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=Ed5YQ3wtcVIhksvm0Bh8sk1x2HWcxgqVtdQKiFyADi8=; b=kzm9t1XQg8Ef+yWTwzTVgWmSn3PncNFqIUObXdzjsCgePaCw/THXD3XVDMCutTcs6R ncWNtw+Z1kzPYIXO90tQBtQE8eA9LiqMjXtWNw6bptPzEZwJmSqck/2rZBo1GN9j1Bqy DszXvNHeRPSdzcSUvnBG8E7WT2lDVXN+CBDc0mvLj+fxF1zMp5unQ3dVKAOk5N/Vpnlc fdeHl30M8wN9v/18b83CcQZFeSCV1Yl1utQKwGv4QdMT+RHlFG5IuOj/nlOh4cfxVz27 YZKx0PTHq1ZQCHSiJbuufMBbwdjm9yVRVkb+Br2EPrCqt2u/GVtwMwY6ekrKdRGGzwaT IX/w== X-Gm-Message-State: AJaThX6SP6FpiE8asbmiz4U92pcWWyWXKrTgIJXLkEJZ0rJYKb8BRJ3V QzNuTqEN12jl9k2ucK+ltnpowM+BtJ0= X-Google-Smtp-Source: AGs4zMY8t/5YpoGjl3nCRLGP1cNWySITXcUZKwIenmcEwuObl97URlE58vL8CRYbn4cRt3loQGNAnw== X-Received: by 10.223.176.233 with SMTP id j38mr16235014wra.178.1512468813275; Tue, 05 Dec 2017 02:13:33 -0800 (PST) Received: from localhost.localdomain ([105.150.171.234]) by smtp.gmail.com with ESMTPSA id d1sm14398065wra.44.2017.12.05.02.13.31 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 05 Dec 2017 02:13:32 -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:21 +0000 Message-Id: <20171205101326.23732-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.11.0 Subject: [PATCH 0/5] ArmPlatformPkg: create standalone .dsc file 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:05 -0000 Do some reshuffling and add some NULL library implementation so we can start building ArmPlatformPkg from its own .DSC Ard Biesheuvel (5): ArmPlatformPkg: remove unused ArmPlatformLibNullSec ArmPlatformPkg/PrePeiCoreMPCore: use a unique GUID ArmPlatformPkg: add Null implementation of LcdPlatformlLib ArmPlatformPkg: add Null implementation of NorFlashPlatformLib ArmPlatformPkg: add package .DSC file ArmPlatformPkg/ArmPlatformPkg.dsc | 121 ++++++++++++++++++++ ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNullSec.inf | 47 -------- ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.c | 92 +++++++++++++++ ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf | 28 +++++ ArmPlatformPkg/Library/NorFlashPlatformNullLib/NorFlashPlatformNullLib.c | 34 ++++++ ArmPlatformPkg/Library/NorFlashPlatformNullLib/NorFlashPlatformNullLib.inf | 30 +++++ ArmPlatformPkg/PrePeiCore/PrePeiCoreMPCore.inf | 2 +- 7 files changed, 306 insertions(+), 48 deletions(-) create mode 100644 ArmPlatformPkg/ArmPlatformPkg.dsc delete mode 100644 ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNullSec.inf create mode 100644 ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.c create mode 100644 ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf create mode 100644 ArmPlatformPkg/Library/NorFlashPlatformNullLib/NorFlashPlatformNullLib.c create mode 100644 ArmPlatformPkg/Library/NorFlashPlatformNullLib/NorFlashPlatformNullLib.inf -- 2.11.0