forked from tianocore/edk2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: Id6d927936a5d2a0b835fc52a294d5910ad9f36f4 Signed-off-by: Shenglei Zhang <[email protected]>
- Loading branch information
1 parent
bdafda8
commit cbc59ec
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** @file | ||
General purpose supporting routines for FAT recovery PEIM | ||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> | ||
SPDX-License-Identifier: MIT | ||
**/ | ||
|
||
#include "FatLitePeim.h" | ||
|
||
|
||
#define CHAR_FAT_VALID 0x01 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** @file | ||
FAT format data structures | ||
Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR> | ||
SPDX-License-Identifier: | ||
**/ | ||
|
||
#ifndef _FAT_FMT_H_ | ||
#define _FAT_FMT_H_ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** @file | ||
FAT recovery PEIM entry point, Ppi Functions and FAT Api functions. | ||
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR> | ||
**/ | ||
|