X-Git-Url: https://code.delx.au/refind/blobdiff_plain/d6882a1cf9f487600ccb2b57ba880b5f91ff0c10..11fa7da805c3e263f8b05339f1900baa73a2ffd4:/EfiLib/legacy.h diff --git a/EfiLib/legacy.h b/EfiLib/legacy.h index 618c755..3384f48 100644 --- a/EfiLib/legacy.h +++ b/EfiLib/legacy.h @@ -15,9 +15,14 @@ * */ +#include "LegacyBios.h" + #ifndef __LEGACY_H_ #define __LEGACY_H_ +#define BBS_MEDIA_PRESENT 0x0800 +#define BBS_MEDIA_MAYBE_PRESENT 0x0400 + typedef UINT8 BBS_TYPE; #define VAR_FLAG EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE @@ -46,7 +51,6 @@ typedef struct { #pragma pack() EFI_STATUS -EFIAPI BdsAddNonExistingLegacyBootOptions ( VOID ); @@ -59,25 +63,23 @@ BdsAddNonExistingLegacyBootOptions ( @retval EFI_NOT_FOUND Fail to retrive variable of boot order. **/ EFI_STATUS -EFIAPI BdsDeleteAllInvalidLegacyBootOptions ( VOID ); -/** - Add the legacy boot devices from BBS table into - the legacy device boot order. +BOOLEAN +BdsIsLegacyBootOption ( + IN UINT8 *BootOptionVar, + OUT BBS_TABLE **BbsEntry, + OUT UINT16 *BbsIndex +); - @retval EFI_SUCCESS The boot devices are added successfully. - @retval EFI_NOT_FOUND The legacy boot devices are not found. - @retval EFI_OUT_OF_RESOURCES Memmory or storage is not enough. - @retval EFI_DEVICE_ERROR Fail to add the legacy device boot order into EFI variable - because of hardware error. -**/ -EFI_STATUS -EFIAPI -BdsUpdateLegacyDevOrder ( - VOID - ); +VOID +BdsBuildLegacyDevNameString ( + IN BBS_TABLE *CurBBSEntry, + IN UINTN Index, + IN UINTN BufSize, + OUT CHAR16 *BootString +); #endif \ No newline at end of file