-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathEroFs.inf
More file actions
71 lines (63 loc) · 1.82 KB
/
Copy pathEroFs.inf
File metadata and controls
71 lines (63 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
## @file
#
# EroFs - EfiFs EROFS File System driver.
#
[Defines]
INF_VERSION = 0x00010005
BASE_NAME = erofs
FILE_GUID = 2B0F3769-1EBF-44E9-9BF2-E696C96104A2
MODULE_TYPE = UEFI_DRIVER
VERSION_STRING = 1.12
EDK_RELEASE_VERSION = 0x00020000
EFI_SPECIFICATION_VERSION = 0x00020000
ENTRY_POINT = FSDriverInstall
[Sources]
../src/driver.c
../src/file.c
../src/grub.c
../src/grub_file.c
../src/logging.c
../src/missing.c
../src/this.c
../src/path.c
../src/utf8.c
../grub/grub-core/kern/err.c
../grub/grub-core/kern/list.c
../grub/grub-core/kern/misc.c
../grub/grub-core/fs/fshelp.c
../grub/grub-core/fs/erofs.c
[Packages]
EfiFsPkg/EfiFsPkg.dec
MdePkg/MdePkg.dec
ShellPkg/ShellPkg.dec
[LibraryClasses]
UefiRuntimeServicesTableLib
UefiBootServicesTableLib
MemoryAllocationLib
BaseMemoryLib
BaseLib
UefiLib
UefiDriverEntryPoint
DebugLib
PcdLib
[Guids]
gEfiFileInfoGuid
gEfiFileSystemInfoGuid
gEfiFileSystemVolumeLabelInfoIdGuid
[Protocols]
gEfiDiskIoProtocolGuid
gEfiDiskIo2ProtocolGuid
gEfiBlockIoProtocolGuid
gEfiBlockIo2ProtocolGuid
gEfiSimpleFileSystemProtocolGuid
gEfiUnicodeCollationProtocolGuid
gEfiUnicodeCollation2ProtocolGuid
gEfiDevicePathToTextProtocolGuid
[Pcd]
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultLang
gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang
[BuildOptions]
*_*_IA32_CC_FLAGS = -DFORMAT=efi-app-ia32
*_*_X64_CC_FLAGS = -DFORMAT=efi-app-x64
*_*_*_CC_FLAGS = -Os -DCPU_$(ARCH) -DGRUB -DGRUB_FILE=__FILE__ -DDRIVERNAME=$(BASE_NAME) -DDRIVERNAME_STR=\"ext2/3/4\"
MSFT:*_*_*_CC_FLAGS = /Oi- /std:clatest /wd4028 /wd4068 /wd4133 /wd4146 /wd4201 /wd4204 /wd4244 /wd4245 /wd4267 /wd4311 /wd4312 /wd4334 /wd4706