From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yw0-x232.google.com (mail-yw0-x232.google.com [IPv6:2607:f8b0:4002:c05::232]) (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 229A981D72 for ; Fri, 28 Oct 2016 04:28:44 -0700 (PDT) Received: by mail-yw0-x232.google.com with SMTP id u124so79852353ywg.3 for ; Fri, 28 Oct 2016 04:28:44 -0700 (PDT) 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=NMHywsxq75J924aMigpEXKjAdjrQ0AAQByJhjmxHDxg=; b=ZVqFA5jh2rqKP5Z50b6ojtncXtsphMFLN3Q7zQ+r6AFBpJNJmEwOuBwA7MTUYy93bh LFNKp3jYcZe0xCdoMxPbPYM8ETiAvbN0stoWippDGkwYmXXGc9slONb4lao1Z0aTsHu2 aAzBaaK20SIEh1E1NAO4qipF4WA/Brs34Fdqs= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=NMHywsxq75J924aMigpEXKjAdjrQ0AAQByJhjmxHDxg=; b=Rd2/n0SUkGsIoHfP8TDGFldSYR8JUuvREo0BkjwzMxgX6wTBeDdM+WdVMj+YyOJC4B NvME0F57c4cepA1rvbaSDlSO7lONJBeoGCRYwNlaUFFgE6ZCWt5+k/E2ozmP1k1H3UAr 3eXV9oqjZQhPPB6pGdRVxwov2Z8TQv7kNjWqFEmTk5xc8c+IHrvpOz+4VEqEMKpw9Ilg Qu4lW8i4anF72O7GJNIDvXkb2EQ2EGQlUmlZDjbyAG6i/MdlpYve44/J2RQ2kTCSE+wp 8Jd9q5bnHAqUsB+WtHoXAQb/znPoAlHq0SxrhpuKIkT5MUgAAKiZwvt55HHBqy9XWBWd 7SOA== X-Gm-Message-State: ABUngvcczQJ6hSNE9Va7nr7araMQ0vd2crGC/xV7T6Jgcr++7vWPXQHVvWv2O0cbwE22ncXf2Ch1+btsHf+Z/Sg8 X-Received: by 10.36.107.72 with SMTP id v69mr1317487itc.37.1477654123802; Fri, 28 Oct 2016 04:28:43 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.5.139 with HTTP; Fri, 28 Oct 2016 04:28:43 -0700 (PDT) In-Reply-To: <1477646896-21444-1-git-send-email-ard.biesheuvel@linaro.org> References: <1477646896-21444-1-git-send-email-ard.biesheuvel@linaro.org> From: Ard Biesheuvel Date: Fri, 28 Oct 2016 12:28:43 +0100 Message-ID: To: edk2-devel-01 , Leif Lindholm Cc: Laszlo Ersek , Ryan Harkin , Ard Biesheuvel Subject: Re: [PATCH v3 0/6] ArmPkg: eliminate calls to deprecated functions X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 11:28:44 -0000 Content-Type: text/plain; charset=UTF-8 On 28 October 2016 at 10:28, Ard Biesheuvel wrote: > This series prepares ArmPkg for building with the preprocess symbol > DISABLE_NEW_DEPRECATED_INTERFACES defined, by adding missing components > to ArmPkg (#1), fixing broken code or code that relies on deprecated > functionality (#2 - #5), and finally adds -DDISABLE_NEW_DEPRECATED_INTERFACES > to the CC flags for all build types, toolchains and architectures. > > v3: > - incorporate feedback from Laszlo > - all patches now reviewed by Laszlo and tested by Ryan, thanks guys! > > v2: > - incorporate feedback from Laszlo > - add tags from Ryan, Leif and Laszlo > > Ard Biesheuvel (6): > ArmPkg: add missing components > ArmPkg/ArmCortexA9Lib RVCT: remove incompatible GCC include > ArmPkg/LinuxLoader: eliminate calls to deprecated string functions > ArmPkg/SemihostFs: eliminate calls to deprecated string functions > ArmPkg/BdsLib: eliminate calls to deprecated string functions > ArmPkg: enable -DDISABLE_NEW_DEPRECATED_INTERFACES > Series committed, thanks all