diff options
author | Joursoir <chat@joursoir.net> | 2021-12-02 20:51:35 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-12-02 20:51:35 +0300 |
commit | 62424fc6411b5e2f9a5224837af4740956f7f5e5 (patch) | |
tree | ea562a8d173922f8ff9054f3ef182e967bbdc492 /Library/UefiShellUfmCommandLib | |
parent | 74063c05b85805fd0532b2a726a0a1b9b0f979f1 (diff) | |
download | ufm-62424fc6411b5e2f9a5224837af4740956f7f5e5.tar.gz ufm-62424fc6411b5e2f9a5224837af4740956f7f5e5.tar.bz2 ufm-62424fc6411b5e2f9a5224837af4740956f7f5e5.zip |
library: add module information file
Diffstat (limited to 'Library/UefiShellUfmCommandLib')
-rw-r--r-- | Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.inf | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.inf b/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.inf new file mode 100644 index 0000000..a80d2cf --- /dev/null +++ b/Library/UefiShellUfmCommandLib/UefiShellUfmCommandLib.inf @@ -0,0 +1,50 @@ +[Defines] + INF_VERSION = 1.25 + BASE_NAME = UefiShellUfmCommandLib + FILE_GUID = 0326b619-e996-45f8-8dd3-9aebeb59b647 + MODULE_TYPE = UEFI_APPLICATION + VERSION_STRING = 1.0 + LIBRARY_CLASS = UfmCommandLib|UEFI_APPLICATION UEFI_DRIVER + CONSTRUCTOR = UefiUfmConstructor + DESTRUCTOR = UefiUfmDestructor + VALID_ARCHITECTURES = X64 + +[Sources] + tbi/screen.c + tbi/win.c + menu-bar.c + command-bar.c + panel.c + dir.c + fs.c + actions.c + UefiShellUfmCommandLib.c + +[Packages] + MdeModulePkg/MdeModulePkg.dec + MdePkg/MdePkg.dec + ShellPkg/ShellPkg.dec + +[LibraryClasses] + BaseLib + DebugLib + DevicePathLib + MemoryAllocationLib + PrintLib + ShellCommandLib + ShellLib + UefiApplicationEntryPoint + UefiBootServicesTableLib + UefiLib + UefiRuntimeServicesTableLib + +[Guids] + +[Ppis] + +[Protocols] + gEfiSimpleFileSystemProtocolGuid + +[FeaturePcd] + +[Pcd] |