From: Evan Lloyd <Evan.Lloyd@arm.com>
To: "edk2-devel@ml01.01.org" <edk2-devel@ml01.01.org>
Cc: "linaro.org@ml01.01.org" <linaro.org@ml01.01.org>,
Ruiyu Ni Leif Lindholm <ruiyu.ni@intel.comleif.lindholm>,
Dong Wei <Dong.Wei@arm.com>,
"Michael D Kinney" <michael.d.kinney@intel.com>,
Jiewen Yao <jiewen.yao@intel.com>,
"Jaben Carsey" <jaben.carsey@intel.com>
Subject: Re: [edk2-staging][PATCH 0/2] Create new acpiview branch
Date: Mon, 27 Mar 2017 18:25:13 +0000 [thread overview]
Message-ID: <AM4PR0801MB144434A7CB5AAEBAFC8D3F3F8B330@AM4PR0801MB1444.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <20170309234942.11956-1-evan.lloyd@arm.com>
Hi.
I submitted this request (with 2 patches) for a new branch on edk2-staging some weeks ago.
Is there something else I need to do to get a branch created?
Have I missed someone from the distribution?
I have a fork on GitHub and can make a pull request if that is better.
Regards,
Evan
-----Original Message-----
From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of evan.lloyd@arm.com
Sent: 09 March 2017 23:50
To: edk2-devel@ml01.01.org
Cc: linaro.org@ml01.01.org; Ruiyu Ni Leif Lindholm <ruiyu.ni@intel.comleif.lindholm>; Dong Wei <Dong.Wei@arm.com>; Michael D Kinney <michael.d.kinney@intel.com>; Jiewen Yao <jiewen.yao@intel.com>; Jaben Carsey <jaben.carsey@intel.com>
Subject: [edk2] [edk2-staging][PATCH 0/2] Create new acpiview branch
From: Evan Lloyd <evan.lloyd@arm.com>
I am requesting this acpiview staging branch following suggestions from
Jiewen Yao <jiewen.yao@intel.com> in response to a patch submitted previously.
The aim is to allow collaborative development of acpiview for all platforms.
Evan Lloyd (1):
ShellPkg: acpiview branch on edk2-staging
Sami Mujawar (1):
ShellPkg: Add acpiview tool to dump ACPI tables
ShellPkg/ShellPkg.dec | 2 +
ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf | 73 +++
ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h | 418 +++++++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h | 347 +++++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.h | 84 +++
ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.h | 34 ++
ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c | 628 +++++++++++++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.c | 173 ++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.c | 595 ++++++++++++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/BgrtParser.c | 61 ++
ShellPkg/Library/UefiShellAcpiViewCommandLib/Dbg2Parser.c | 244 ++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/DsdtParser.c | 45 ++
ShellPkg/Library/UefiShellAcpiViewCommandLib/FadtParser.c | 151 +++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/GtdtParser.c | 295 +++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/IortParser.c | 643 ++++++++++++++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/MadtParser.c | 280 +++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/McfgParser.c | 88 +++
ShellPkg/Library/UefiShellAcpiViewCommandLib/RsdpParser.c | 183 ++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/SlitParser.c | 142 +++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/SpcrParser.c | 148 +++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/SratParser.c | 307 ++++++++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/SsdtParser.c | 43 ++
ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.c | 106 ++++
ShellPkg/Library/UefiShellAcpiViewCommandLib/XsdtParser.c | 145 +++++
Readme.md | 53 ++
ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni | 125 ++++
26 files changed, 5413 insertions(+)
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.inf
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.h
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.h
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.h
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.h
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiTableParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/AcpiView.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/BgrtParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/Dbg2Parser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/DsdtParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/FadtParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/GtdtParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/IortParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/MadtParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/McfgParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/RsdpParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SlitParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SpcrParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SratParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/SsdtParser.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.c
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/XsdtParser.c
create mode 100755 Readme.md
create mode 100644 ShellPkg/Library/UefiShellAcpiViewCommandLib/UefiShellAcpiViewCommandLib.uni
--
Guid("CE165669-3EF3-493F-B85D-6190EE5B9759")
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
prev parent reply other threads:[~2017-03-27 18:25 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-09 23:49 [edk2-staging][PATCH 0/2] Create new acpiview branch evan.lloyd
2017-03-09 23:49 ` [edk2-staging][PATCH 1/2] ShellPkg: acpiview branch on edk2-staging evan.lloyd
2017-03-09 23:49 ` [edk2-staging][PATCH 2/2] ShellPkg: Add acpiview tool to dump ACPI tables evan.lloyd
2017-03-16 15:11 ` Jeff Westfahl
2017-03-17 10:12 ` Sami Mujawar
2017-03-28 19:49 ` Jeff Westfahl
2017-03-29 18:57 ` Sami Mujawar
2017-03-14 21:30 ` [edk2-staging][PATCH 0/2] Create new acpiview branch Jeff Westfahl
2017-03-27 18:25 ` Evan Lloyd [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=AM4PR0801MB144434A7CB5AAEBAFC8D3F3F8B330@AM4PR0801MB1444.eurprd08.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox