From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=192.55.52.151; helo=mga17.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 682F4209605B0 for ; Mon, 4 Jun 2018 02:22:45 -0700 (PDT) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Jun 2018 02:22:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,476,1520924400"; d="scan'208";a="54548145" Received: from shwde7172.ccr.corp.intel.com ([10.239.158.42]) by FMSMGA003.fm.intel.com with ESMTP; 04 Jun 2018 02:22:43 -0700 From: Liming Gao To: edk2-devel@lists.01.org Date: Mon, 4 Jun 2018 17:22:24 +0800 Message-Id: <1528104144-3496-1-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 Subject: [Patch] FDF spec: Correct the example with SET statement in [FD] section X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2018 09:22:45 -0000 Region base address needs to add FD base address as the final value. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Cc: Sean Brogan Cc: Yonghong Zhu --- 2_fdf_design_discussion/24_[fd]_sections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2_fdf_design_discussion/24_[fd]_sections.md b/2_fdf_design_discussion/24_[fd]_sections.md index d55b793..04053a0 100644 --- a/2_fdf_design_discussion/24_[fd]_sections.md +++ b/2_fdf_design_discussion/24_[fd]_sections.md @@ -212,7 +212,7 @@ gEfiMyTokenSpaceGuid.PcdFlashFvMainBaseAddress | gEfiMyTokenSpaceGuid.PcdFlashFv FV = FvMain 0x000000|0x0C0000 -SET gEfiMyTokenSpaceGuid.PcdFlashFvMainBaseAddress = 0x000000 +SET gEfiMyTokenSpaceGuid.PcdFlashFvMainBaseAddress = 0x000000 + $(BaseAddress) SET gEfiMyTokenSpaceGuid.PcdFlashFvMainSize = 0x0C0000 FV = FvMain ``` -- 2.8.0.windows.1