1 ## @file 2 # Shell application VLAN configuration. 3 # 4 # It is shell application which is used to get and set VLAN configuration. 5 # 6 # Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR> 7 # 8 # This program and the accompanying materials 9 # are licensed and made available under the terms and conditions of the BSD License 10 # which accompanies this distribution. The full text of the license may be found at 11 # http://opensource.org/licenses/bsd-license.php. 12 # 13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 15 # 16 ## 17 18 [Defines] 19 INF_VERSION = 0x00010005 20 BASE_NAME = VConfig 21 FILE_GUID = 87E36301-0406-44db-AAF3-9E0E591F3725 22 MODULE_TYPE = UEFI_APPLICATION 23 VERSION_STRING = 1.0 24 ENTRY_POINT = VlanConfigMain 25 MODULE_UNI_FILE = VConfig.uni 26 27 # 28 # 29 # This flag specifies whether HII resource section is generated into PE image. 30 # 31 UEFI_HII_RESOURCE_SECTION = TRUE 32 33 # 34 # VALID_ARCHITECTURES = IA32 X64 IPF 35 # 36 37 [Sources] 38 VConfigStrings.uni 39 VConfig.c 40 41 [Packages] 42 MdePkg/MdePkg.dec 43 MdeModulePkg/MdeModulePkg.dec 44 ShellPkg/ShellPkg.dec 45 46 [LibraryClasses] 47 UefiApplicationEntryPoint 48 UefiBootServicesTableLib 49 UefiHiiServicesLib 50 UefiLib 51 ShellLib 52 NetLib 53 MemoryAllocationLib 54 HiiLib 55 56 [Protocols] 57 gEfiVlanConfigProtocolGuid ## CONSUMES 58 gEfiHiiPackageListProtocolGuid ## CONSUMES 59 60 [UserExtensions.TianoCore."ExtraFiles"] 61 VConfigExtra.uni 62