]> code.delx.au - refind/blobdiff - EfiLib/legacy.h
Version 0.10.4 release.
[refind] / EfiLib / legacy.h
index 618c755d193a74c402e45549795818ae7e630028..3384f48832171bec5b54fcd0c0b6f513c6f9dca5 100644 (file)
  *
  */
 
+#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