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 - 2014, 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# VALID_ARCHITECTURES = IA32 X64 IPF 29# 30 31[Sources] 32 VConfigStrings.uni 33 VConfig.c 34 35[Packages] 36 MdePkg/MdePkg.dec 37 MdeModulePkg/MdeModulePkg.dec 38 ShellPkg/ShellPkg.dec 39 40[LibraryClasses] 41 UefiApplicationEntryPoint 42 UefiBootServicesTableLib 43 UefiLib 44 ShellLib 45 NetLib 46 MemoryAllocationLib 47 HiiLib 48 49[Protocols] 50 gEfiVlanConfigProtocolGuid ## CONSUMES 51 52[UserExtensions.TianoCore."ExtraFiles"] 53 VConfigExtra.uni 54