From nobody Sun May 19 23:41:31 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+41515+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+41515+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1559057071; cv=none; d=zoho.com; s=zohoarc; b=La987BEr9WPIW0QOZu/LAzBxhLMdrAIJ1/1QQdHHroU8/OKpqEpPzkMK5yrhR3q6vZnUmx17nO2kHhpoNl+p6zf7tJ1ocgfxjrG66FqEt4Agcf/huA1Szu+GAQDovBsNr2rxmcnwuiDgstWVFhuy5avG5KBmRT76Mq1NPYLBixc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1559057071; h=Date:From:List-Id:List-Unsubscribe:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=q604fB+irDrdBwaM/y/2ojthHP0EFLousXE3AdCUk08=; b=oFDpmaLxzffpZTcsh7SsUnBhyxbQyOdowkSfVWu7rjzTDsQ6I2ruAZu+Q6C2ziI+kmhjTm7IhO51h0v7CSP0Gxu8nQUYB6+UK+kjgmKsuaaVfl2uGBwe3M/s1g0+V5A6H/SJsin2uVk7LBGQpq2eazuk38n55KYVR016HkjnJUM= 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+41515+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 1559057071423925.0427848412196; Tue, 28 May 2019 08:24:31 -0700 (PDT) Return-Path: X-Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by groups.io with SMTP; Tue, 28 May 2019 08:24:30 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 May 2019 08:24:29 -0700 X-ExtLoop1: 1 X-Received: from lgao4-mobl1.ccr.corp.intel.com ([10.255.28.59]) by orsmga002.jf.intel.com with ESMTP; 28 May 2019 08:24:29 -0700 From: "Liming Gao" To: devel@edk2.groups.io Subject: [edk2-devel] [FdfSpecification Patch] FDF spec: Fix the issue in Rule section for RAW Type File Date: Tue, 28 May 2019 23:24:26 +0800 Message-Id: <20190528152426.17988-1-liming.gao@intel.com> 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,liming.gao@intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1559057070; bh=i9LSTNnAqeAHwqtdH7j0XtIZks7u09COwqH/dGIw6Eg=; h=Date:From:Reply-To:Subject:To; b=H6/xyTvNlH+GUod1O/sUqIaVdbyTdD58RfbdC/lUaf0Mx/Fb5IMg66nK1FRYnoHU1Rl 5bqvI5kgcac3VxQEqLgGB33RI/wcC7cBpWaRdLa/rgM1P/2hItKJW/pf0Td4gnbMKG0bx 3iY9w1drHglUUc+YEEdXRe1P3vV/Ugtz/sE= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1765 FV File Statement clarifies RAW File type with file name only. But, FFS Rule section doesn't support this syntax. This is an issue in FDF spec. Per PI spec, RAW File has no section. It directly includes file data. So, FFS Rule section should support this usage. Signed-off-by: Liming Gao Reviewed-by: Bob Feng --- 3_edk_ii_fdf_file_format/39_[rule]_sections.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3_edk_ii_fdf_file_format/39_[rule]_sections.md b/3_edk_ii_fdf_= file_format/39_[rule]_sections.md index 34e767f..d5ec895 100644 --- a/3_edk_ii_fdf_file_format/39_[rule]_sections.md +++ b/3_edk_ii_fdf_file_format/39_[rule]_sections.md @@ -125,7 +125,8 @@ Conditional statements may be used anywhere within this= section. ::=3D ["Fixed" ] ["Checksum" ] [] ::=3D "Align" - ::=3D {} {} {} + ::=3D {} {} {} {} + ::=3D "{" "}" ::=3D [] ::=3D {"COMPAT16"} {"PE32"} {"PIC"} {"TE"} {"FV_IMAGE"} {"RAW"} {"DXE_DEPEX"} {"UI"} --=20 2.13.0.windows.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 (#41515): https://edk2.groups.io/g/devel/message/41515 Mute This Topic: https://groups.io/mt/31823007/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-