|
| 1 | +## @file |
| 2 | +# UEFI:NTFS Bootloader |
| 3 | +# |
| 4 | +# Copyright (c) 2021, Pete Batard <[email protected]> |
| 5 | +# |
| 6 | +# SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | +# |
| 8 | +## |
| 9 | + |
| 10 | +[Defines] |
| 11 | + PLATFORM_NAME = uefi-ntfs |
| 12 | + PLATFORM_GUID = 4F8F45AC-93DD-418D-9366-52556EBAC2B4 |
| 13 | + PLATFORM_VERSION = 1.3 |
| 14 | + DSC_SPECIFICATION = 0x00010005 |
| 15 | + SUPPORTED_ARCHITECTURES = IA32|X64|EBC|ARM|AARCH64|RISCV64 |
| 16 | + OUTPUT_DIRECTORY = Build |
| 17 | + BUILD_TARGETS = DEBUG|RELEASE|NOOPT |
| 18 | + SKUID_IDENTIFIER = DEFAULT |
| 19 | + DEFINE FORCE_READONLY = FALSE |
| 20 | + |
| 21 | +[BuildOptions] |
| 22 | + DEBUG_*_*_CC_FLAGS = -DENABLE_DEBUG |
| 23 | + RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG |
| 24 | + *_*_*_CC_FLAGS = -DDISABLE_NEW_DEPRECATED_INTERFACES |
| 25 | + |
| 26 | +!include MdePkg/MdeLibs.dsc.inc |
| 27 | + |
| 28 | +[LibraryClasses] |
| 29 | + # |
| 30 | + # Entry Point Libraries |
| 31 | + # |
| 32 | + UefiApplicationEntryPoint|MdePkg/Library/UefiApplicationEntryPoint/UefiApplicationEntryPoint.inf |
| 33 | + # |
| 34 | + # Common Libraries |
| 35 | + # |
| 36 | + BaseLib|MdePkg/Library/BaseLib/BaseLib.inf |
| 37 | + BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf |
| 38 | + DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf |
| 39 | + DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf |
| 40 | + MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf |
| 41 | + PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf |
| 42 | + PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf |
| 43 | + UefiBootServicesTableLib|MdePkg/Library/UefiBootServicesTableLib/UefiBootServicesTableLib.inf |
| 44 | + UefiLib|MdePkg/Library/UefiLib/UefiLib.inf |
| 45 | + UefiRuntimeServicesTableLib|MdePkg/Library/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.inf |
| 46 | + |
| 47 | +[LibraryClasses.ARM, LibraryClasses.AARCH64, LibraryClasses.RISCV64] |
| 48 | + NULL|ArmPkg/Library/CompilerIntrinsicsLib/CompilerIntrinsicsLib.inf |
| 49 | + NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf |
| 50 | + |
| 51 | +################################################################################################### |
| 52 | +# |
| 53 | +# Components Section - list of the modules and components that will be processed by compilation |
| 54 | +# tools and the EDK II tools to generate PE32/PE32+/Coff image files. |
| 55 | +# |
| 56 | +################################################################################################### |
| 57 | + |
| 58 | +[Components] |
| 59 | + uefi-ntfs.inf |
0 commit comments