From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47607+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47607+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909006; cv=none; d=zoho.com; s=zohoarc; b=EWTA2fIahOpEjAM+eCmXaO2JqaWIi3r1UbYu1Wf1QNanMV6B7TqqIdVKFxoDfWHSjf5nbBvr83vsX21IWgzZCWggLav8OkMvcO3Y1V7l/nnFAj482gCivEeAsL3zQX8wPnpejs5VqsMpbJ6MHn+Fgacr7fspzuMNi5NWzfXM+ek= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909006; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=g4BEiROuz38oTstDguz6n7KW5greNDlZtMOVQNB39Hw=; b=Wj5U9TmYSYjrB6MAYTl0+nK/JVj9I3dDmFiUvqivTy+Sb1ssO3T1YSgO9gcoNWgqbyd85fhKLOcoud8h4WAtaFpeDVRVUT2NMaTFkOvacXlOU+Rpra658PfkRq6WSWWEbY7K0dWrryNfhpbuQVDlWGQ/cwMO1NR5lp7+r0Irb1g= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47607+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909006738556.5519563842879; Thu, 19 Sep 2019 09:03:26 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id vIzeYY1788612xPbMQSYCsnW; Thu, 19 Sep 2019 09:03:26 -0700 X-Received: from mail-wr1-f43.google.com (mail-wr1-f43.google.com [209.85.221.43]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:26 -0700 X-Received: by mail-wr1-f43.google.com with SMTP id r5so3633858wrm.12 for ; Thu, 19 Sep 2019 09:03:25 -0700 (PDT) X-Gm-Message-State: KwmCRGvkzQ6F2iAKTnKsLxcHx1787277AA= X-Google-Smtp-Source: APXvYqy+yEYpEIlo5M8OiFBa4zsIatxxEHJ3Do8Ej4vkKm6wdLZpHXkUYztqnrEZvD1LEEcecke8Bw== X-Received: by 2002:adf:fd8c:: with SMTP id d12mr8310969wrr.142.1568909003750; Thu, 19 Sep 2019 09:03:23 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:22 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao Subject: [edk2-devel] [PATCH v2 1/9] BaseTools: add missing newlines at end of files Date: Thu, 19 Sep 2019 17:03:11 +0100 Message-Id: <20190919160319.16270-2-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909006; bh=Gs3aX3RNbl7nmpON6RfZyy3CZhBz6NxwyL4Mcgo/aJY=; h=Cc:Date:From:Reply-To:Subject:To; b=XLkGPTRkocFdbHqn2KKoYXlHuowT+lzRaOcSLwbLxknOMluGt7DK/jgrIhnHC1G7N8Y IKPvAnvsaIKZplabB59OZd7W3rf+pG7gVItMkTP57/JnXBc4oIfdHigHE3SUBssZLqX3Q iFURmf9TwRvxiuQArsUR3xZ2/bT0blc+rRM= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" Some scripts in Source/Python were missing newlines at end of files, so add them. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Leif Lindholm Reviewed-by: Bob Feng Reviewed-by: Philippe Mathieu-Daude --- BaseTools/Source/Python/AutoGen/DataPipe.py | 2 +- BaseTools/Source/Python/Common/DataType.py | 2 +- BaseTools/Source/Python/Common/GlobalData.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BaseTools/Source/Python/AutoGen/DataPipe.py b/BaseTools/Source= /Python/AutoGen/DataPipe.py index 8b8cfd1c51eb..078bafecb45b 100755 --- a/BaseTools/Source/Python/AutoGen/DataPipe.py +++ b/BaseTools/Source/Python/AutoGen/DataPipe.py @@ -163,4 +163,4 @@ class MemoryDataPipe(DataPipe): =20 self.DataContainer =3D {"BinCacheDest":GlobalData.gBinCacheDest} =20 - self.DataContainer =3D {"EnableGenfdsMultiThread":GlobalData.gEnab= leGenfdsMultiThread} \ No newline at end of file + self.DataContainer =3D {"EnableGenfdsMultiThread":GlobalData.gEnab= leGenfdsMultiThread} diff --git a/BaseTools/Source/Python/Common/DataType.py b/BaseTools/Source/= Python/Common/DataType.py index 8ae1bd28fabf..5d49afb0a92a 100644 --- a/BaseTools/Source/Python/Common/DataType.py +++ b/BaseTools/Source/Python/Common/DataType.py @@ -532,4 +532,4 @@ PACK_CODE_BY_SIZE =3D {8:'=3DQ', 0:'=3DB', 16:""} =20 -TAB_COMPILER_MSFT =3D 'MSFT' \ No newline at end of file +TAB_COMPILER_MSFT =3D 'MSFT' diff --git a/BaseTools/Source/Python/Common/GlobalData.py b/BaseTools/Sourc= e/Python/Common/GlobalData.py index 8eb72aa1d6f5..74c6d0079bba 100755 --- a/BaseTools/Source/Python/Common/GlobalData.py +++ b/BaseTools/Source/Python/Common/GlobalData.py @@ -129,4 +129,4 @@ file_lock =3D None # Common dictionary to share platform libraries' constant Pcd libConstPcd =3D None # Common dictionary to share platform libraries' reference info -Refes =3D None \ No newline at end of file +Refes =3D None --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47607): https://edk2.groups.io/g/devel/message/47607 Mute This Topic: https://groups.io/mt/34201143/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47608+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47608+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909007; cv=none; d=zoho.com; s=zohoarc; b=dqdgMDrL8Ts2OXVawzeuzWJu0BoNFbERqKoyj9BEPYEW9LW7bwHI/9YdqmxipFrxYsVCE9G9PddhqBf/m4/s4bWErcNA/N5PP6f2RsfK1ZDs9why+40sVd+nseC0qcdQLT96MdaOhNg1OrxVlEbeU1DrVB89krIq8m2qijgjYIE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909007; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=XmEm/XS7P0Ih72o5NonxR445S5v6zn5m4qFY+xraWSg=; b=A3vGXaJTUFELpaNhy2QsYzMN9IqZmeT9NTYg0ttZHANI07L8bjuyvBbF5mLuyje1IkyJ3u6eW6w8dyiDd8S4WD4j0xlYhfAtU8nmREG1spP/QwIOxwAWHCqYlsLh7YoOwqHWuHRb31dapKnLKnIu/rxowlKAgHriKOmZTyFGU/0= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47608+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909007819233.43432047224667; Thu, 19 Sep 2019 09:03:27 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id MI36YY1788612xqhmfErEU6f; Thu, 19 Sep 2019 09:03:27 -0700 X-Received: from mail-wm1-f48.google.com (mail-wm1-f48.google.com [209.85.128.48]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:27 -0700 X-Received: by mail-wm1-f48.google.com with SMTP id 3so4584870wmi.3 for ; Thu, 19 Sep 2019 09:03:26 -0700 (PDT) X-Gm-Message-State: fobLUtlmfPlMxyCFaK5W6sjlx1787277AA= X-Google-Smtp-Source: APXvYqxmRRKoEmYXAGtesa1guDxQP9hDXlO6rVyzriJw1bY9yjFIRdkUEowx+eQRSrxibHUUo7M4xg== X-Received: by 2002:a7b:c44d:: with SMTP id l13mr3270265wmi.160.1568909005051; Thu, 19 Sep 2019 09:03:25 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.23 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:23 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Ard Biesheuvel Subject: [edk2-devel] [PATCH v2 2/9] EmbeddedPkg: add missing newline at end of TemplateResetSystemLib.inf Date: Thu, 19 Sep 2019 17:03:12 +0100 Message-Id: <20190919160319.16270-3-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909007; bh=dQItN3SdI0ejj3yn4WnHNZCs0I/VijyAv7d97PIoGYI=; h=Cc:Date:From:Reply-To:Subject:To; b=J9qH0Ftj2IUzWyjW0qaSlysI1lg5WvxKmftO+IoIV/wIQbN3vuUXDX+Tlo5Bb0agtDw dI9rVuDnetbGDdSdPLqlRc26bSQWNt8TpnpuEnC9KCo9dgbfezpiSImv2OH/+mg45u7u/ eiJhUiD5NDga8WCQNiEXayEyS6M0KQZ5TNo= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" Cc: Ard Biesheuvel Signed-off-by: Leif Lindholm Reviewed-by: Philippe Mathieu-Daude --- EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf | 2 = +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystem= Lib.inf b/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib= .inf index 434f4ef298c7..cd7a9f845d53 100644 --- a/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf +++ b/EmbeddedPkg/Library/TemplateResetSystemLib/TemplateResetSystemLib.inf @@ -27,4 +27,4 @@ [Packages] =20 [LibraryClasses] IoLib - DebugLib \ No newline at end of file + DebugLib --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47608): https://edk2.groups.io/g/devel/message/47608 Mute This Topic: https://groups.io/mt/34201144/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47609+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47609+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909014; cv=none; d=zoho.com; s=zohoarc; b=YSklrOuRu2jhan8rv3+4/KA4iEOLlQfDSCrlT7viAhuB3gBFjtcMz1TRybKGwmgWDdpC2jg2v4QNy822nBYevUXItE8mafDQBGVgTWh0TsnFCDKCpAceT+qaJIw8TtRTZ7gmNNo1yOAPsQGuxZCowbLmo0wyZtc64P4ErvHxqXI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909014; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=wol+MYfd4Gs0lKQlIaE0HkYy6AWIlwNXeSVsE/Ck704=; b=kaIIms0ypdCLfixehUXF/7Jfo7dyEsGeKgyF+EXV6Cm0gNblNXEn7AqSujThhpjBQe5aHKVncTcTjCXSP7QADvC1FXNQfYzIjJHnA1Ccsu79vVVsO/MPRXX6CQl5MFnYPE1x+wnUSUPMkAOA5tWO+j57rZYsY83EtWLdfDftAZI= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47609+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909014412241.2866875375396; Thu, 19 Sep 2019 09:03:34 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id R24LYY1788612xKDcO4OFj99; Thu, 19 Sep 2019 09:03:33 -0700 X-Received: from mail-wr1-f43.google.com (mail-wr1-f43.google.com [209.85.221.43]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:33 -0700 X-Received: by mail-wr1-f43.google.com with SMTP id i18so3643093wru.11 for ; Thu, 19 Sep 2019 09:03:32 -0700 (PDT) X-Gm-Message-State: SLlBI837XyIRBkmPQaidUmA1x1787277AA= X-Google-Smtp-Source: APXvYqzPmMWLlw5te79TCOKr/CMlMAJJgeTkN3LWNJOtBoAEnQw0NrIjRD76+yHcJxeDMUG1AZnXRA== X-Received: by 2002:adf:a50d:: with SMTP id i13mr2013600wrb.152.1568909011075; Thu, 19 Sep 2019 09:03:31 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.25 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:25 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Siyuan Fu , Jiaxin Wu Subject: [edk2-devel] [PATCH v2 3/9] NetworkPkg: add missing newline at end of file Date: Thu, 19 Sep 2019 17:03:13 +0100 Message-Id: <20190919160319.16270-4-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909013; bh=css1kFp6Mrp+gJaeT2ocq7LMWBZ13XiPSiWVLZixK9M=; h=Cc:Date:From:Reply-To:Subject:To; b=rambxLSuSParTve8DcCBk8NSQ6HAn8Cz1XuSMr/wXFcpqa2Yj2YRlk5AR9MShlK9Px/ PJQalrDJ5bKYjo37ag4a6NgXIC9WGPueD1TbqIDo4R5iUDhFm+zo6dNqSo1OVtimqLFUJ 3XZqIizTSldzSrpU50TNA4Jmyic6JN+IsXo= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" Add missing newline at end of WifiConnectionManagerDxe .uni. Cc: Siyuan Fu Cc: Jiaxin Wu Signed-off-by: Leif Lindholm Reviewed-by: Siyuan Fu Reviewed-by: Philippe Mathieu-Daude --- NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.uni | = 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeSt= rings.uni b/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStr= ings.uni index 3f2b068fb827..187e5047aa9c 100644 --- a/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.u= ni +++ b/NetworkPkg/WifiConnectionManagerDxe/WifiConnectionManagerDxeStrings.u= ni @@ -100,4 +100,4 @@ #string STR_ADD_HIDDEN_NETWORK #language en-US "Add Hidden = Network" #string STR_HIDDEN_NETWORK_LIST #language en-US "Hidden Netw= ork List" #string STR_REMOVE_HIDDEN_NETWORK_HELP #language en-US "" -#string STR_REMOVE_HIDDEN_NETWORK #language en-US "Remove Hidd= en Network" \ No newline at end of file +#string STR_REMOVE_HIDDEN_NETWORK #language en-US "Remove Hidd= en Network" --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47609): https://edk2.groups.io/g/devel/message/47609 Mute This Topic: https://groups.io/mt/34201147/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47610+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47610+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909016; cv=none; d=zoho.com; s=zohoarc; b=fLvW4Py30XnTx5LUKosqDiE0/mg7JSKE0pOmETFlLgkKIxitIIivnrqFmQLQyqdHQKqQx4DKVEQM63vfSN1vUcedZiOfq8JEbhWl5dRh3sLAzfC6MILExusbXrf1GiwQecQNBFFjpNSUJ7vB/wDJ1CI0cYRhAk+XjuCFS8i83xA= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909016; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=nLo2ZCpswAseK2faiaqM8NtHw5xZ/IBcPLKhgg3msF4=; b=mNlsBI81RbfMnSkbthgzfQ2Cv/X0UZRt+m22Bq0yER3Egvn0/eaPW9bjkH4fV5XISxeTB4kzbS2gQnlfQC6gOxspUEYiAjFMCVfbCjDIUTELcWfjdV6iMEtTlA+c3hXGMdsAr99givrK41vxV73fawO37Vz/V3TW8GMxPFDlaiU= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47610+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909016178311.09497010258144; Thu, 19 Sep 2019 09:03:36 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id iDJxYY1788612xPKWaWP41Pp; Thu, 19 Sep 2019 09:03:35 -0700 X-Received: from mail-wr1-f41.google.com (mail-wr1-f41.google.com [209.85.221.41]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:34 -0700 X-Received: by mail-wr1-f41.google.com with SMTP id r3so3679060wrj.6 for ; Thu, 19 Sep 2019 09:03:34 -0700 (PDT) X-Gm-Message-State: ugDbxeFhaNZwdFIoUIpyZBrfx1787277AA= X-Google-Smtp-Source: APXvYqybRXwGZv6rq+QSI2ncJUdtXl6yg8QFzJmUCPINrEmMhWDQTrlnh5erCZRSrtQUPduCjEVAPg== X-Received: by 2002:a5d:4803:: with SMTP id l3mr7872903wrq.301.1568909012348; Thu, 19 Sep 2019 09:03:32 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.31 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:31 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Ard Biesheuvel Subject: [edk2-devel] [PATCH v2 4/9] EmbeddedPkg: delete outdated FdtLib README.txt Date: Thu, 19 Sep 2019 17:03:14 +0100 Message-Id: <20190919160319.16270-5-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909015; bh=BhqIJAcpOr4KccEgHUJFAGTB4yRUxp2WgMKnWoTeUd4=; h=Cc:Date:From:Reply-To:Subject:To; b=TMZgTRyUiUd+wg3D+DTlCR1WSNm3gsSB13EStdrykzyHK+4X4o8wvyVx2dS8tscNCZ0 RKvI11VAP2IMq7GNkJD0gcBpXUZk4P+KcGVC5UKVqoyOn4Yk4KAcp+ASygvh1WHKfsr+m cHKVOdb8kfWVu1S9Oi/GS64FfU3gM8rBNbI= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" While looking at encoding and line ending errors, I found this file in fact simply points to a sourceforge page which no longer exists. Since there is nothing more to say than "this is an import of libfdt", let's just delete it. Cc: Ard Biesheuvel Signed-off-by: Leif Lindholm Reviewed-by: Philippe Mathieu-Daude --- EmbeddedPkg/Library/FdtLib/README.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/EmbeddedPkg/Library/FdtLib/README.txt b/EmbeddedPkg/Library/Fd= tLib/README.txt deleted file mode 100644 index fb4010539f73..000000000000 --- a/EmbeddedPkg/Library/FdtLib/README.txt +++ /dev/null @@ -1 +0,0 @@ -See: https://sourceforge.net/apps/mediawiki/tianocore/index.php?title=3DEm= beddedPkg/Fdt \ No newline at end of file --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47610): https://edk2.groups.io/g/devel/message/47610 Mute This Topic: https://groups.io/mt/34201148/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47611+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47611+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909017; cv=none; d=zoho.com; s=zohoarc; b=SElwevCoEZZYxugPwwk9VSUziTFYY1bZ911MZgJM4441jtuPGOUKTYGuZNQYzAfzltmxrEkQigb8f8alwWafBfQzNY9O3RMo0IA59skUCb+uO8iSfvuzyk1hC+6fMPsdNythAT+rS9aBTU10w5vKOltPrEFDzlRRP/q3OtJw+yE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909017; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=BOjberCox/QhDdNImM/1SxfRtLf1SOd/MVh8Rxfe+kc=; b=Lwd+7NFMgig6IeqVx6RnGqe0cP0UGOE++Z6oTYkZYASrCofqPu0ALlYOMvrdFv4rM2tSMcTZCn19aAJpa7g+fXWpxfxTnLYsCKXjTiO+OdDROPTaSu1aY0dEmxlpquA3POLbV4u1aRKgs0gFA0GHKr8J6yocd09QPm+NQshaBrk= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47611+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909017400284.73582150413586; Thu, 19 Sep 2019 09:03:37 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id HD2gYY1788612x1tleZRWPQD; Thu, 19 Sep 2019 09:03:36 -0700 X-Received: from mail-wr1-f54.google.com (mail-wr1-f54.google.com [209.85.221.54]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:36 -0700 X-Received: by mail-wr1-f54.google.com with SMTP id y19so3698563wrd.3 for ; Thu, 19 Sep 2019 09:03:35 -0700 (PDT) X-Gm-Message-State: itw0uU6orGyf0WeyHsWcIn5Sx1787277AA= X-Google-Smtp-Source: APXvYqwMFlAZ81YTBydABGme54r3QayLTMyRRazk3WohXWSo7iKptVJ0Vbbjc2t+rAEnpcawf9xUjQ== X-Received: by 2002:adf:f790:: with SMTP id q16mr8102742wrp.164.1568909013858; Thu, 19 Sep 2019 09:03:33 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:32 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao Subject: [edk2-devel] [PATCH v2 5/9] BaseTools: fix line endings in SetupGit.py Conf files Date: Thu, 19 Sep 2019 17:03:15 +0100 Message-Id: <20190919160319.16270-6-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909016; bh=qgmpaaGEAe+XoKIIVsSYatywCjJOE0+4M+k8ks+b7j0=; h=Cc:Date:From:Reply-To:Subject:To; b=k+NPbAqdhA7NBq+CO8UOI9UCKoq3U9iXtII6eOddX+xzlysSJpIKOY+aC6kxm5gkOaS cyM8C1tK7tmpqSs7HcaQbaePlkv8O32BzJZAkKtFk5TWm0uL1ydC14/nJAiuq7SC5nm5l mgrp40kkFaXfP5nfWizr8kAtmLx+Dj5W/iU= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" A file header license/copyright header copied around in commit 5b3e695d8ac5 ("BaseTools: add centralized location for git config files") was missing a CR - add it in both faulty locations. Cc: Bob Feng Cc: Liming Gao Signed-off-by: Leif Lindholm Reviewed-by: Bob Feng Reviewed-by: Philippe Mathieu-Daude --- BaseTools/Conf/diff.order | 2 +- BaseTools/Conf/gitattributes | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BaseTools/Conf/diff.order b/BaseTools/Conf/diff.order index 68b926ca94aa..4361817012c9 100644 --- a/BaseTools/Conf/diff.order +++ b/BaseTools/Conf/diff.order @@ -2,7 +2,7 @@ # Copyright (c) 2019, Linaro Ltd. All rights reserved. # # SPDX-License-Identifier: BSD-2-Clause-Patent -# +# *.dec *.dsc.inc *.dsc diff --git a/BaseTools/Conf/gitattributes b/BaseTools/Conf/gitattributes index 9b6ab81a475b..58b93e9d4c27 100644 --- a/BaseTools/Conf/gitattributes +++ b/BaseTools/Conf/gitattributes @@ -2,7 +2,7 @@ # Copyright (c) 2019, Linaro Ltd. All rights reserved. # # SPDX-License-Identifier: BSD-2-Clause-Patent -# +# *.efi -diff *.EFI -diff *.bin -diff --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47611): https://edk2.groups.io/g/devel/message/47611 Mute This Topic: https://groups.io/mt/34201149/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47612+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47612+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909017; cv=none; d=zoho.com; s=zohoarc; b=T7H/VT/F/w6MAhooQEwkcFF1kDZq9hcMKcv6GrSqcqPoXaBmxDXA/LkQgQROyBxanG44yevvHFgy6h3gYMk3zwRJmV6PK5l4Q4fDA3tcqZANYnWZbkodYnaBOkbWi/T6uh2RBl9V3QyDmSfJhPMAtlHCNGAv1DwHgaD5kU/T3ZQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909017; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=YV+8Y5vil63Z87ylLLqa+vAkm8pQxLcNp0VQdByqqMo=; b=Vh5JZ94P77iikVT+7vDSiRLCjCW50nogSyKGlA92XTx2CLJkV+B4TQKdB/0sOw4CZ7S+imwAsgH0iDDivTK58VR+dJvaK6sZl3DTYP/DAlJTg5jlI0YqUkens9Imtue9AxpuSd8lPSNghBXMYCmk5GtBX9tVO5D62EV0BpvoPvI= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47612+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909017942172.03604929167682; Thu, 19 Sep 2019 09:03:37 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id WofbYY1788612xB4YRNFxHbc; Thu, 19 Sep 2019 09:03:37 -0700 X-Received: from mail-wr1-f49.google.com (mail-wr1-f49.google.com [209.85.221.49]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:37 -0700 X-Received: by mail-wr1-f49.google.com with SMTP id r3so3679207wrj.6 for ; Thu, 19 Sep 2019 09:03:36 -0700 (PDT) X-Gm-Message-State: HBLyZGcm1NHjr3p8H9nyWieBx1787277AA= X-Google-Smtp-Source: APXvYqwzN/T+hl+4xSaeQP5q/tCWxA4G+TiDMAPjlL6C4yIhPryTTWAqqdyffYS7Lh5iZv5SNgN+qg== X-Received: by 2002:adf:e605:: with SMTP id p5mr7628545wrm.105.1568909015223; Thu, 19 Sep 2019 09:03:35 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.33 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:34 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Sami Mujawar , Alexei Fedorov Subject: [edk2-devel] [PATCH v2 6/9] DynamicTablesPkg: fix .dsc line ending Date: Thu, 19 Sep 2019 17:03:16 +0100 Message-Id: <20190919160319.16270-7-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909017; bh=MXdIzcA/e2kyOp6wREmRb/e8xusLvH2sc70X+kLAwWo=; h=Cc:Date:From:Reply-To:Subject:To; b=oYzlOA0FmKdeztNX+FV2NnBVDEfY+gTqi2lip3XmulSQff3HwYfShef4uhGTGKKh6Qn cfN4tRK/6QgMj3TDFaTmpM7T+fZ/xoLTm3OaTavF3zV1xi+AOQ9rU2EcZ4pg4VuVYCgYV P4PZdscLMHg2XRppimBb0qRfpii7ORzPckk= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" Correct line ending in package .dsc. Cc: Sami Mujawar Cc: Alexei Fedorov Signed-off-by: Leif Lindholm Reviewed-by: Sami Mujawar Reviewed-by: Philippe Mathieu-Daude --- DynamicTablesPkg/DynamicTablesPkg.dsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DynamicTablesPkg/DynamicTablesPkg.dsc b/DynamicTablesPkg/Dynam= icTablesPkg.dsc index dfe6c0711105..ef958077ed48 100644 --- a/DynamicTablesPkg/DynamicTablesPkg.dsc +++ b/DynamicTablesPkg/DynamicTablesPkg.dsc @@ -4,7 +4,7 @@ # Copyright (c) 2019, Linaro Limited. All rights reserved.
# Copyright (c) 2019, ARM Limited. All rights reserved.
# -# SPDX-License-Identifier: BSD-2-Clause-Patent +# SPDX-License-Identifier: BSD-2-Clause-Patent # ## =20 --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47612): https://edk2.groups.io/g/devel/message/47612 Mute This Topic: https://groups.io/mt/34201150/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47613+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47613+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909020; cv=none; d=zoho.com; s=zohoarc; b=HHsfuCUuOFUbl+OC3ILFm+iBenEoVJT1nZd4L8t7RoYHnWWqg5suRqgCo+w35m4bHEUpVCDyNchq1+Qf9aAKtQ+f5DE5CG6oza0H+S2MdO7+wNW63YYgtHvgy96e4OrNNDJIMMjrt/YKQVcXkRIzlhBsXXHpB1xbbfe7zuwbrng= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909020; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=dvdEJxVqHqu4id3qUODyogHErMdlyPs3XAtA630R8Tw=; b=Bfbrac80rLJ1tgfkTEedafILKTcNHgKo/KljzSSJpqtpTR4z07ZBhamaS+9rxNTK80xhyjLuS7KdBWYEBYXgwyAig470PpIFmfRGTYvwJUQjrQSYrh6UBY5S60KX5ErQYQd2hE1Lf5PA4v4OL5dUdhI2yMR+/vK/+8datbXFwWI= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47613+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909020083713.0975964535291; Thu, 19 Sep 2019 09:03:40 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id 7RK1YY1788612xDZTXQTGNLa; Thu, 19 Sep 2019 09:03:39 -0700 X-Received: from mail-wm1-f44.google.com (mail-wm1-f44.google.com [209.85.128.44]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:38 -0700 X-Received: by mail-wm1-f44.google.com with SMTP id v17so4571169wml.4 for ; Thu, 19 Sep 2019 09:03:38 -0700 (PDT) X-Gm-Message-State: SQFSOabNXVHAmrYvwviRekHax1787277AA= X-Google-Smtp-Source: APXvYqw3k114y0/cdze9sRWT/qgNlRp6EO3jCZPBJGCi7yTq2e3tXDF3GnbrXJYREdDmrBxq8dwRZg== X-Received: by 2002:a05:600c:1009:: with SMTP id c9mr3315364wmc.64.1568909016447; Thu, 19 Sep 2019 09:03:36 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:35 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Ard Biesheuvel , "Kinney, Michael D" Subject: [edk2-devel] [PATCH v2 7/9] ArmPkg: ArmScmiDxe - convert .h to from 8859-x to 7-bit Date: Thu, 19 Sep 2019 17:03:17 +0100 Message-Id: <20190919160319.16270-8-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909019; bh=2KeAzlY4kB5WaJgb2sWFUPHQznBwXM6BowG+sm2PFls=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=acLxuYKtS4blMFIL1+srvN3TMCcwOqMwKCiQ7oJAChfRHyiVCp7t7/+5ZyzmOSLJcxe OlZ9FvkndXYHUUJDWAI4awz2NRZT24Cb3wPGTvuN/RoaoOp7RdRoUW6V97zg6yj6759Ju 2pSpiSISLyV4mTyDsCi75C+mJszmXaPc1w8= X-ZohoMail-DKIM: pass (identity @groups.io) A paragraph sign in a comment came from some ISO8859 encoding, convert it to the word "section" to remain 7-bit safe, since we're not actually doing anything special. Cc: Ard Biesheuvel Cc: "Kinney, Michael D" Signed-off-by: Leif Lindholm Reviewed-by: Philippe Mathieu-Daude --- ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h = b/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h index ee8734bbaab0..b274b5ab2ad4 100644 --- a/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h +++ b/ArmPkg/Drivers/ArmScmiDxe/ArmScmiPerformanceProtocolPrivate.h @@ -23,7 +23,7 @@ #define NUM_REMAIN_PERF_LEVELS(Lvls) (Lvls >> NUM_REMAIN_PERF_LEVELS_SHIFT) =20 /** Return values for SCMI_MESSAGE_ID_PERFORMANCE_DESCRIBE_LEVELS command. - SCMI Spec =EF=BF=BD 4.5.2.5 + SCMI Spec section 4.5.2.5 **/ typedef struct { UINT32 NumLevels; --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47613): https://edk2.groups.io/g/devel/message/47613 Mute This Topic: https://groups.io/mt/34201151/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47614+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47614+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909021; cv=none; d=zoho.com; s=zohoarc; b=O/jgalW5hxzRA71gk9C+Z+b5oHsbuOnacsjBHU/B4h4GlEFX/rIVZ9NwNrsk8E/oGCK7X3qFtSfrOCXBHZKxRnR99zclnDdB/y9As8Eyo6W4xEmA2jy1OMDU9yWejhlefPnTGXwYZeI88GcbmM2HXMXiPvqc9KYUQFWGNxF5bZc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909021; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=9T0oIOTJvi/6JU78CLbn+vMpgLmdoc1VKkm3S0/a60o=; b=jovTXgw+M4jTtU4OO8cG6hA7WvftpMH09NEFiX3vTSPnMv+TUTI5C7ORqAZ7zeGyak1ho2vnU+qHN5T4rbTHYWmfm2pAxxUaqUSp2Qd+lhY7z9dn7zO3INO7TTNfjK2JeQ+O+3idi6c6FVifOLXjQ3VPgbV4WScdAkifBqHZRR4= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47614+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1568909021226754.6985722891471; Thu, 19 Sep 2019 09:03:41 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id gLaOYY1788612xHypGOu8xLZ; Thu, 19 Sep 2019 09:03:40 -0700 X-Received: from mail-wm1-f51.google.com (mail-wm1-f51.google.com [209.85.128.51]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:40 -0700 X-Received: by mail-wm1-f51.google.com with SMTP id 5so5267468wmg.0 for ; Thu, 19 Sep 2019 09:03:39 -0700 (PDT) X-Gm-Message-State: 1sdvOeWzNYc8c5nYnzODAQkxx1787277AA= X-Google-Smtp-Source: APXvYqyOAOyK7IuETihkfHBD4NUUyHAgGuKYS/e0c1/1EGLk6jh4vMEBxzJTzCQVM83cMrl3wZcFNQ== X-Received: by 2002:a1c:e008:: with SMTP id x8mr3354397wmg.85.1568909017945; Thu, 19 Sep 2019 09:03:37 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:37 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Bob Feng , Liming Gao Subject: [edk2-devel] [PATCH v2 8/9] BaseTools: correct line endings for ConvertFce Python script Date: Thu, 19 Sep 2019 17:03:18 +0100 Message-Id: <20190919160319.16270-9-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909020; bh=G9DDLxVoe9KbbTk9DF3Jh3EDnbVITkq4ravzJP578OY=; h=Cc:Date:From:Reply-To:Subject:To; b=XvCVc3ZqJwqP5YBGk/ZtaCknGUOQDXVMgOo3+B22MWL2pfk2kqtyVeUtGs2RQY3kWHc USN8py0J+C+3i5qK9jNDapzJvNXpztaAUTA9AJLQSTPbSzqjCymCEIgqMKQfu+sJ3qjtp eEowrxsoJxaab0Qwq9REccFg19E+S058mGk= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" Cc: Bob Feng Cc: Liming Gao Signed-off-by: Leif Lindholm Reviewed-by: Bob Feng Reviewed-by: Philippe Mathieu-Daude --- BaseTools/Scripts/ConvertFceToStructurePcd.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/BaseTools/Scripts/ConvertFceToStructurePcd.py b/BaseTools/Scri= pts/ConvertFceToStructurePcd.py index 10f19dbe2f3c..89e6a727a201 100644 --- a/BaseTools/Scripts/ConvertFceToStructurePcd.py +++ b/BaseTools/Scripts/ConvertFceToStructurePcd.py @@ -506,8 +506,8 @@ class mainprocess(object): for i in range(len(info_list)-1,-1,-1): if len(info_list[i]) =3D=3D 0: info_list.remove(info_list[i]) - for i in (inf_list, title_all, header_list): - i.sort() + for i in (inf_list, title_all, header_list): + i.sort() return keys,title_all,info_list,header_list,inf_list =20 def remove_bracket(self,List): @@ -519,9 +519,9 @@ class mainprocess(object): List[List.index(i)][i.index(j)] =3D "|".join(tmp) else: List[List.index(i)][i.index(j)] =3D j - for i in List: - if type(i) =3D=3D type([0,0]): - i.sort() + for i in List: + if type(i) =3D=3D type([0,0]): + i.sort() return List =20 def write_all(self): --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47614): https://edk2.groups.io/g/devel/message/47614 Mute This Topic: https://groups.io/mt/34201152/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 8 03:08:25 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+47615+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47615+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linaro.org ARC-Seal: i=1; a=rsa-sha256; t=1568909023; cv=none; d=zoho.com; s=zohoarc; b=LYvBL2T8apILusjk5lTS8kIsFysGRrXDyxkbXw5rANHSUGAkSAqlAXngBY/bdmkXra/srlxRSgPmZgCmZ64eQuktVEAWZooY4lbnhPaq8lnVoJWqKICZ1X4JReQjJE01iTSsllY6cg2q+M78iRNveSu7kyOvpNtn6s10sSBF6NE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568909023; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=Ftn7agLeVRGUkoGpnlK7kC45SrbDU428+nOY0sbKn4k=; b=YhmpUYsX+euw/Ry0te/SXaI3rTd9QXtmy6kU8Mb7dKUJD4zyQTLqrZHh89XwWgy4yBzqGRhj4k/sWXp5/Wcp20JSzUoNhxim2EP7CgsB5bcnKbyl6gRNxaX7AqhPsbXuT9YdT7tBdtUhsB7CzkgwxnYWKIgv00SQSxdemIAXaxw= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+47615+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 156890902319132.28846500879547; Thu, 19 Sep 2019 09:03:43 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id qO7YYY1788612xtnnca0Q8Bd; Thu, 19 Sep 2019 09:03:42 -0700 X-Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by groups.io with SMTP; Thu, 19 Sep 2019 09:03:41 -0700 X-Received: by mail-wm1-f66.google.com with SMTP id x2so5253959wmj.2 for ; Thu, 19 Sep 2019 09:03:40 -0700 (PDT) X-Gm-Message-State: WrPdq8FG3sCpvMWb18cCLS72x1787277AA= X-Google-Smtp-Source: APXvYqxaByMIOLUikp9hLw4pDPhC/TsDNq3bWLFOEtWqc+ethMENbE+xARS134hlM4rllgMvS0H+aQ== X-Received: by 2002:a7b:c203:: with SMTP id x3mr3693569wmi.8.1568909019408; Thu, 19 Sep 2019 09:03:39 -0700 (PDT) X-Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id v4sm15948662wrg.56.2019.09.19.09.03.38 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 09:03:38 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Ard Biesheuvel , "Kinney, Michael D" Subject: [edk2-devel] [PATCH v2 9/9] EmbeddedPkg: convert Lauterbach README.txt to 7-bit safe Readme.md Date: Thu, 19 Sep 2019 17:03:19 +0100 Message-Id: <20190919160319.16270-10-leif.lindholm@linaro.org> In-Reply-To: <20190919160319.16270-1-leif.lindholm@linaro.org> References: <20190919160319.16270-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,leif.lindholm@linaro.org Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1568909022; bh=wwPyO9FYdxWFzJKla6LbizEJA4nx8B93NlcIzpXuYfM=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=CJEk/INY1koSl4J/pSMXhCYHXVfnrpC09caoPeEwgg0WPP2DidSVPUEvV0XIyzUL7Ag KMMFrXmcoeZ0Fr6iULXv8ez12CICUOvxpkD7aq2gXqbiX6JrqscZVM3P4XEf7bZ0PsHQf FLt0APEDBiVz1Q6HzziD8TmyKLxhApVe/ag= X-ZohoMail-DKIM: pass (identity @groups.io) This file contained what looked like windows 1250 encoded single quotation marks. Convert them to regular 's. Rework the file to markdown format and and rename it Readme.md while we're at it. Cc: Ard Biesheuvel Cc: "Kinney, Michael D" Signed-off-by: Leif Lindholm Reviewed-by: Philippe Mathieu-Daude --- EmbeddedPkg/Scripts/LauterbachT32/README.txt | 7 ------- EmbeddedPkg/Scripts/LauterbachT32/Readme.md | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/EmbeddedPkg/Scripts/LauterbachT32/README.txt b/EmbeddedPkg/Scr= ipts/LauterbachT32/README.txt deleted file mode 100644 index 06602ab8763a..000000000000 --- a/EmbeddedPkg/Scripts/LauterbachT32/README.txt +++ /dev/null @@ -1,7 +0,0 @@ -DXE Phase Debug -=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D -Update the memsize variable in EfiLoadDxe.cmm for the actual amount of mem= ory available in your system. Allow your system to boot to the point that = the DXE core is initialized (so that the System Table and Debug Information= table is present in memory) and execute this script (using the toolbar but= ton or =EF=BF=BDdo EfiLoadDxe=EF=BF=BD from the command area). It will sca= n memory for the debug info table and load modules in it. -=20 -SEC/PEI Phase Debug -=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D -There is no way to autodetect where these images reside so you must pass a= n address for the memory-mapped Firmware Volume containing these images. T= o do this, enter =EF=BF=BDdo EfiLoadFv =EF=BF=BD where is the = base address for the firmware volume containing the SEC or PEI code. To be= more efficient you may want to create a script that calls this, like MyBoa= rdLoadSec.cmm which contains the call to EfiLoadFv. You can them map this = script to a T32 menu or toolbar button for quick access. diff --git a/EmbeddedPkg/Scripts/LauterbachT32/Readme.md b/EmbeddedPkg/Scri= pts/LauterbachT32/Readme.md new file mode 100644 index 000000000000..51d2c8da5405 --- /dev/null +++ b/EmbeddedPkg/Scripts/LauterbachT32/Readme.md @@ -0,0 +1,16 @@ +# DXE Phase Debug +Update the memsize variable in EfiLoadDxe.cmm for the actual amount of mem= ory +available in your system. Allow your system to boot to the point that the= DXE +core is initialized (so that the System Table and Debug Information table = is +present in memory) and execute this script (using the toolbar button or +'do EfiLoadDxe' from the command area). It will scan memory for the debug= info +table and load modules in it. + +# SEC/PEI Phase Debug +There is no way to autodetect where these images reside so you must pass an +address for the memory-mapped Firmware Volume containing these images. To= do +this, enter 'do EfiLoadFv ' where is the base address for the +firmware volume containing the SEC or PEI code. To be more efficient you = may +want to create a script that calls this, like MyBoardLoadSec.cmm which con= tains +the call to EfiLoadFv. You can them map this script to a T32 menu or tool= bar +button for quick access. --=20 2.20.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#47615): https://edk2.groups.io/g/devel/message/47615 Mute This Topic: https://groups.io/mt/34201154/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-