BDS enhancement: enumerate & show all legacy boot options in Boot Manager so that user is able to boot any devices in the same type in Boot Manager without changing the legacy dev order.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11279 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -36,4 +36,55 @@ BdsBuildLegacyDevNameString (
|
||||
OUT CHAR16 *BootString
|
||||
);
|
||||
|
||||
/**
|
||||
Group the legacy boot options in the BootOption.
|
||||
|
||||
The routine assumes the boot options in the beginning that covers all the device
|
||||
types are ordered properly and re-position the following boot options just after
|
||||
the corresponding boot options with the same device type.
|
||||
For example:
|
||||
1. Input = [Harddisk1 CdRom2 Efi1 Harddisk0 CdRom0 CdRom1 Harddisk2 Efi0]
|
||||
Assuming [Harddisk1 CdRom2 Efi1] is ordered properly
|
||||
Output = [Harddisk1 Harddisk0 Harddisk2 CdRom2 CdRom0 CdRom1 Efi1 Efi0]
|
||||
|
||||
2. Input = [Efi1 Efi0 CdRom1 Harddisk0 Harddisk1 Harddisk2 CdRom0 CdRom2]
|
||||
Assuming [Efi1 Efi0 CdRom1 Harddisk0] is ordered properly
|
||||
Output = [Efi1 Efi0 CdRom1 CdRom0 CdRom2 Harddisk0 Harddisk1 Harddisk2]
|
||||
|
||||
@param BootOption Pointer to buffer containing Boot Option Numbers
|
||||
@param BootOptionCount Count of the Boot Option Numbers
|
||||
**/
|
||||
VOID
|
||||
GroupMultipleLegacyBootOption4SameType (
|
||||
UINT16 *BootOption,
|
||||
UINTN BootOptionCount
|
||||
);
|
||||
|
||||
/**
|
||||
Re-order the Boot Option according to the DevOrder.
|
||||
|
||||
The routine re-orders the Boot Option in BootOption array according to
|
||||
the order specified by DevOrder.
|
||||
|
||||
@param BootOption Pointer to buffer containing the Boot Option Numbers
|
||||
@param BootOptionCount Count of the Boot Option Numbers
|
||||
@param DevOrder Pointer to buffer containing the BBS Index,
|
||||
high 8-bit value 0xFF indicating a disabled boot option
|
||||
@param DevOrderCount Count of the BBS Index
|
||||
@param EnBootOption Pointer to buffer receiving the enabled Boot Option Numbers
|
||||
@param EnBootOptionCount Count of the enabled Boot Option Numbers
|
||||
@param DisBootOption Pointer to buffer receiving the disabled Boot Option Numbers
|
||||
@param DisBootOptionCount Count of the disabled Boot Option Numbers
|
||||
**/
|
||||
VOID
|
||||
OrderLegacyBootOption4SameType (
|
||||
UINT16 *BootOption,
|
||||
UINTN BootOptionCount,
|
||||
UINT16 *DevOrder,
|
||||
UINTN DevOrderCount,
|
||||
UINT16 *EnBootOption,
|
||||
UINTN *EnBootOptionCount,
|
||||
UINT16 *DisBootOption,
|
||||
UINTN *DisBootOptionCount
|
||||
);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user