From patchwork Wed Apr 11 23:50:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 151949 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 8D3F2B705D for ; Thu, 12 Apr 2012 09:52:47 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1SI7LC-00021G-Bz for incoming@patchwork.ozlabs.org; Wed, 11 Apr 2012 23:52:46 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1SI7KJ-0001xT-Mg for fwts-devel@lists.ubuntu.com; Wed, 11 Apr 2012 23:51:51 +0000 Received: from cpc19-craw6-2-0-cust5.croy.cable.virginmedia.com ([77.102.228.6] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1SI7KJ-00051j-I9 for fwts-devel@lists.ubuntu.com; Wed, 11 Apr 2012 23:51:51 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH 11/11] Update copy-acpica.sh to include new ACPICA sources Date: Thu, 12 Apr 2012 00:50:56 +0100 Message-Id: <1334188256-26566-12-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1334188256-26566-1-git-send-email-colin.king@canonical.com> References: <1334188256-26566-1-git-send-email-colin.king@canonical.com> X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com From: Colin Ian King Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Alex Hung --- copy-acpica.sh | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/copy-acpica.sh b/copy-acpica.sh index be22a9e..a4ee0cd 100755 --- a/copy-acpica.sh +++ b/copy-acpica.sh @@ -6,9 +6,11 @@ FWTS=. echo "Removing old ACPICA.." -mv acpica acpica.old +if [ -e acpica ]; then + mv acpica acpica.old +fi echo "Cloning new ACPICA.." -git clone git://git.moblin.org/acpica +git clone https://github.com/otcshare/acpica.git FWTS_ACPICA_PATH=${FWTS}/src/acpica/source SAVE_FILES=acpica-upgrade-save @@ -23,6 +25,7 @@ files="include/acpi.h \ include/actbl.h \ include/actbl1.h \ include/actbl2.h \ + include/actbl3.h \ include/acoutput.h \ include/acrestyp.h \ include/acpiosxf.h \ @@ -70,6 +73,7 @@ files="include/acpi.h \ components/disassembler/dmresrcs.c \ components/disassembler/dmutils.c \ components/disassembler/dmwalk.c \ + components/disassembler/dmresrcl2.c \ components/dispatcher/dsfield.c \ components/dispatcher/dsinit.c \ components/dispatcher/dsmethod.c \ @@ -129,6 +133,8 @@ files="include/acpi.h \ components/hardware/hwsleep.c \ components/hardware/hwvalid.c \ components/hardware/hwxface.c \ + components/hardware/hwxfsleep.c \ + components/hardware/hwesleep.c \ components/namespace/nsaccess.c \ components/namespace/nsalloc.c \ components/namespace/nsdump.c \ @@ -169,12 +175,14 @@ files="include/acpi.h \ components/resources/rsmisc.c \ components/resources/rsutils.c \ components/resources/rsxface.c \ + components/resources/rsserial.c \ components/tables/tbfadt.c \ components/tables/tbfind.c \ components/tables/tbinstal.c \ components/tables/tbutils.c \ components/tables/tbxface.c \ components/tables/tbxfroot.c \ + components/utilities/utaddress.c \ components/utilities/utalloc.c \ components/utilities/utcache.c \ components/utilities/utcopy.c \ @@ -204,6 +212,7 @@ files="include/acpi.h \ compiler/aslcompiler.h \ compiler/aslcompiler.l \ compiler/aslcompiler.y \ + compiler/aslsupport.l \ compiler/asldefine.h \ compiler/aslerror.c \ compiler/aslfiles.c \ @@ -249,6 +258,14 @@ files="include/acpi.h \ compiler/aslbtypes.c \ compiler/aslwalks.c \ compiler/asluuid.c \ + compiler/preprocess.h \ + compiler/prscan.c \ + compiler/prmacros.c \ + compiler/prutils.c \ + compiler/prexpress.c \ + compiler/prparser.y \ + compiler/prparser.l \ + compiler/aslrestype2s.c \ common/adfile.c \ common/adisasm.c \ common/adwalk.c \