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.115; helo=mga14.intel.com; envelope-from=zhichao.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (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 A5607211D56C3 for ; Tue, 5 Mar 2019 23:05:18 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Mar 2019 23:05:17 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,446,1544515200"; d="scan'208";a="139526534" Received: from gaozhic-mobl.ccr.corp.intel.com ([10.239.196.98]) by orsmga002.jf.intel.com with ESMTP; 05 Mar 2019 23:05:16 -0800 From: Zhichao Gao To: edk2-devel@lists.01.org Cc: Ruiyu Ni , Jaben Carsey , Liming Gao Date: Wed, 6 Mar 2019 15:05:14 +0800 Message-Id: <20190306070514.19220-1-zhichao.gao@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 Subject: [PATCH] ShellPkg/UefiShellAcpiViewCommandLib: Change the note in uni X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Mar 2019 07:05:18 -0000 BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1146 Add DSDT and SSDT description in the help information. Depend on the implement of UefiShellAcpiViewCommandLib, the "acpiview" command support to show all present type in the system not only support the listed type in the help information. So change the help information of this command. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zhichao Gao Cc: Ruiyu Ni Cc: Jaben Carsey Cc: Liming Gao --- .../UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni b/ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni index 0762eeba53..f2a2400b91 100644 --- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni +++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni @@ -74,10 +74,15 @@ " 1. The AcpiTable parameter can match any installed table type.\r\n" " Tables without specific handling will be displayed as a raw hex dump (or\r\n" " dumped to a file if -d is used).\r\n" -" 2. Formatted display and checking is provided for these signature types:\r\n" +" 2. -s option supports to display the specified AcpiTable type that is present\r\n" +" in the system. For normal type AcpiTable, it would display the data of the\r\n" +" AcpiTable and AcpiTable header. The following type may contain header type\r\n" +" other than AcpiTable header. The acual header can refer to the ACPI spec 6.2\r\n" +" Extra A. Particual types:\r\n" " APIC - Multiple APIC Description Table (MADT)\r\n" " BGRT - Boot Graphics Resource Table\r\n" " DBG2 - Debug Port Table 2\r\n" +" DSDT - Differentiated System Description Table\r\n" " FACP - Fixed ACPI Description Table (FADT)\r\n" " GTDT - Generic Timer Description Table\r\n" " IORT - IO Remapping Table\r\n" @@ -87,6 +92,7 @@ " SLIT - System Locality Information Table\r\n" " SPCR - Serial Port Console Redirection Table\r\n" " SRAT - System Resource Affinity Table\r\n" +" SSDT - Secondary SystemDescription Table\r\n" " XSDT - Extended System Description Table\r\n" " \r\n" ".SH STANDARDS\r\n" -- 2.16.2.windows.1