public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gary Lin" <glin@suse.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"michael.d.kinney@intel.com" <michael.d.kinney@intel.com>
Cc: Yi Qian <yi.qian@intel.com>, Zailiang Sun <zailiang.sun@intel.com>
Subject: Re: [edk2-devel] [edk2-platforms] [PATCH v2 0/6] Fix the boot order, SMBIOS, and capsule GUIDs of Minnowboard
Date: Thu, 8 Aug 2019 08:08:24 +0000	[thread overview]
Message-ID: <20190808080812.GB26233@GaryWorkstation> (raw)
In-Reply-To: <E92EE9817A31E24EB0585FDF735412F5B9D85351@ORSMSX113.amr.corp.intel.com>

On Thu, Aug 08, 2019 at 07:26:04AM +0000,  Michael D Kinney  wrote:
> Hi Gary,
> 
Hi Michael,

> Thank you for these patches.
> 
> I am seeing one behavior change in the setup forms.
> The following 2 forms are missing information that
> used to be filled in.  I will help look into this
> tomorrow.
> 
> 1) Device Manager -> System Setup -> Main
> 
> 2) Device Manager -> System Setup -> Main -> Platform Information
> 
I built another firmware without my patches and those information were
still missing, so the bug is probably introduced by other patch.

Thanks,

Gary Lin

> Best regards,
> 
> Mike
> 
> > -----Original Message-----
> > From: Gary Lin [mailto:GLin@suse.com]
> > Sent: Tuesday, July 30, 2019 1:16 AM
> > To: devel@edk2.groups.io
> > Cc: Sun, Zailiang <zailiang.sun@intel.com>; Qian, Yi
> > <yi.qian@intel.com>; Kinney, Michael D
> > <michael.d.kinney@intel.com>
> > Subject: [edk2-platforms] [PATCH v2 0/6] Fix the boot
> > order, SMBIOS, and capsule GUIDs of Minnowboard
> > 
> > After switching to MdeModulePkg BdsDxe, the boot option
> > created by OS was always put at the end of BootOrder
> > after reboot. Besides, the PXE boot options were always
> > the first boot options.
> > 
> > The 1st to 3rd patches fix the priority of boot options
> > and stop sorting the boot options after the first boot.
> > The missing BootManagerMenuApp is also added back.
> > 
> > The 4th patch cleans up PlatformBootOption.c to remove
> > the unused variables and function.
> > 
> > The 5th patch adds some missing bits of BIOS
> > Characteristics Extension in SMBIOS, so that fwupd can
> > detect the system correctly.
> > 
> > The 6th patch converts the device GUIDs in metainfo.xml
> > to lowercase to be compatible with LVFS/fwupd.
> > 
> > The patches are also available in my github branch:
> > https://github.com/lcp/edk2-platforms/tree/fix-
> > minnowboard-bds-v2
> > 
> > v2:
> >   * Add the missing MSG_URI_DP to BootOptionPriority()
> >   * Update the descriptioins of 2nd and 4th patches
> >   * Add the 5th and 6th patches
> > 
> > Cc: Zailiang Sun <zailiang.sun@intel.com>
> > Cc: Yi Qian <yi.qian@intel.com>
> > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > 
> > Gary Lin (6):
> >   Vlv2TbltDevicePkg: Adjust the device priority
> >   Vlv2TbltDevicePkg: Add the missing BootManagerMenuApp
> >   Vlv2TbltDevicePkg: Only sort boot options when
> > necessary
> >   Vlv2TbltDevicePkg: Clean up the unused variables and
> > function
> >   Vlv2TbltDevicePkg: Add the missing SMBIOS bits
> >   Vlv2TbltDevicePkg: Convert the device GUIDs of
> > capsules to lowercase
> > 
> > 
> > Platform/Intel/Vlv2TbltDevicePkg/Feature/Capsule/Genera
> > teCapsule/GenCapsuleAll.py       | 24 +++---
> > 
> > Platform/Intel/Vlv2TbltDevicePkg/Library/DxePlatformBoo
> > tManagerLib/BdsPlatform.c        |  9 +-
> > 
> > Platform/Intel/Vlv2TbltDevicePkg/Library/DxePlatformBoo
> > tManagerLib/PlatformBootOption.c | 86 ++++++-----------
> > ---
> >  Platform/Intel/Vlv2TbltDevicePkg/PlatformPkg.fdf
> > |  3 +-
> >  Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
> > |  1 +
> >  Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
> > |  1 +
> > 
> > Platform/Intel/Vlv2TbltDevicePkg/SmBiosMiscDxe/DataHubR
> > ecords.h                         |  5 +-
> > 
> > Platform/Intel/Vlv2TbltDevicePkg/SmBiosMiscDxe/MiscBios
> > VendorData.c                     |  5 +-
> >  8 files changed, 54 insertions(+), 80 deletions(-)
> > 
> > --
> > 2.22.0
> 
> 
> 
> 
> 

  reply	other threads:[~2019-08-08  8:09 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-30  8:16 [edk2-platforms] [PATCH v2 0/6] Fix the boot order, SMBIOS, and capsule GUIDs of Minnowboard Gary Lin
2019-07-30  8:16 ` [edk2-platforms] [PATCH v2 1/6] Vlv2TbltDevicePkg: Adjust the device priority Gary Lin
2019-07-30  8:16 ` [edk2-platforms] [PATCH v2 2/6] Vlv2TbltDevicePkg: Add the missing BootManagerMenuApp Gary Lin
2019-07-30  8:16 ` [edk2-platforms] [PATCH v2 3/6] Vlv2TbltDevicePkg: Only sort boot options when necessary Gary Lin
2019-07-30  8:16 ` [edk2-platforms] [PATCH v2 4/6] Vlv2TbltDevicePkg: Clean up the unused variables and function Gary Lin
2019-07-30  8:16 ` [edk2-platforms] [PATCH v2 5/6] Vlv2TbltDevicePkg: Add the missing SMBIOS bits Gary Lin
2019-07-30  8:16 ` [edk2-platforms] [PATCH v2 6/6] Vlv2TbltDevicePkg: Convert the device GUIDs of capsules to lowercase Gary Lin
2019-08-08  7:26 ` [edk2-platforms] [PATCH v2 0/6] Fix the boot order, SMBIOS, and capsule GUIDs of Minnowboard Michael D Kinney
2019-08-08  8:08   ` Gary Lin [this message]
2019-08-08 15:03     ` [edk2-devel] " Michael D Kinney
2019-08-09 19:15       ` Michael D Kinney

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=20190808080812.GB26233@GaryWorkstation \
    --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