From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4001:c0b::241; helo=mail-it0-x241.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-it0-x241.google.com (mail-it0-x241.google.com [IPv6:2607:f8b0:4001:c0b::241]) (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 E08D82205B91A for ; Fri, 12 Jan 2018 00:38:20 -0800 (PST) Received: by mail-it0-x241.google.com with SMTP id b5so8207513itc.3 for ; Fri, 12 Jan 2018 00:43:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=zJWBxQ0cK493gA1aSk4wdWnOpdbESE6k6vRovcOQMXc=; b=CuCI7MZ9qkQQFaZMEWn6pwwGW19GIitNnlMQhUNAeyVwC6Ut68l+UyljDR7gZ8OWx8 /fsSnXzEGqHTuznyq4fn7lcDMZ4hdgVPTZ5EYNO6MnjaYWF1x8Y1DbGPSf/KUnSh8thL BW4QOIJ0KNNHtnjr0FbEA4tXbnUImheF0rcdo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=zJWBxQ0cK493gA1aSk4wdWnOpdbESE6k6vRovcOQMXc=; b=kn0wNv+OET7wCqS39mGZMAg5VOn8rWWMYbNjoGDqcpavmmOqXI1jCmrsg51YvYMV0u tws+TkbfPSj3DpdbqDDPQ1MsBf/OEi3xJlQg6UdeVJjPWM1UZaFw1vfwXEGfTbcURYZW jV/l6zDrdlhjV9qyvQaRWD1CpmzBjjxneLLlLmTPibBpHwfZc+az0zrw0AzDsXkub7jS 1kvVo8KYVpL5QOaJCp55ClSaHgVLPMX6WURPG0MHgrIsfUJXW2K5l9sQhgxlS/VP+TT9 juYDyxikgZcJ5VmBriuyawWkIIVgL44YF87ca/Qwe+M+rCHsYPpFSYx44D2nofv1lt7X 0tBw== X-Gm-Message-State: AKwxytf9QkRHveYy1PHDwfQqbFYFE+0CpLssbg3nuFBb8o+WKqrsHcJl LwgyT1ejeouviD7wJn2aVnrVwWCXsOYI0+b80D2KxA== X-Google-Smtp-Source: ACJfBovNHqrX615QoLVapcWzbBF+CKzA32++8UxzRdRmbTdJSToaq2cpyn7toiz+yBtWZfAQQiDQ2+YFf2ubTKLS8n0= X-Received: by 10.36.160.201 with SMTP id o192mr3839597ite.48.1515746614246; Fri, 12 Jan 2018 00:43:34 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.37.197 with HTTP; Fri, 12 Jan 2018 00:43:33 -0800 (PST) In-Reply-To: <20180110064424.20804-1-sigmaepsilon92@gmail.com> References: <20180110064424.20804-1-sigmaepsilon92@gmail.com> From: Ard Biesheuvel Date: Fri, 12 Jan 2018 08:43:33 +0000 Message-ID: To: Michael Zimmermann Cc: "edk2-devel@lists.01.org" , Leif Lindholm Subject: Re: [PATCH] EmbeddedPkg/FdtLib: build fdt_empty_tree.c 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, 12 Jan 2018 08:38:21 -0000 Content-Type: text/plain; charset="UTF-8" On 10 January 2018 at 06:44, Michael Zimmermann wrote: > We're currently building everything except for this file. > Since 'fdt_create_empty_tree' can be useful for some > platforms, compile this one too. > > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Michael Zimmermann Reviewed-by: Ard Biesheuvel > --- > EmbeddedPkg/Library/FdtLib/FdtLib.inf | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/EmbeddedPkg/Library/FdtLib/FdtLib.inf b/EmbeddedPkg/Library/FdtLib/FdtLib.inf > index b26d37422da2..7aa44a302d89 100644 > --- a/EmbeddedPkg/Library/FdtLib/FdtLib.inf > +++ b/EmbeddedPkg/Library/FdtLib/FdtLib.inf > @@ -26,6 +26,7 @@ > # > > [Sources] > + fdt_empty_tree.c > fdt_ro.c > fdt_rw.c > fdt_strerror.c > -- > 2.15.1 >