1 /** @file 2 Jumper setting for multiplatform. 3 4 Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR> 5 6 7 This program and the accompanying materials are licensed and made available under 8 9 the terms and conditions of the BSD License that accompanies this distribution. 10 11 The full text of the license may be found at 12 13 http://opensource.org/licenses/bsd-license.php. 14 15 16 17 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 18 19 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. IsRecoveryJumper(IN CONST EFI_PEI_SERVICES ** PeiServices,IN OUT EFI_PLATFORM_INFO_HOB * PlatformInfoHob)20 21 22 23 24 **/ 25 26 #include <BoardJumpers.h> 27 28 BOOLEAN 29 IsRecoveryJumper ( 30 IN CONST EFI_PEI_SERVICES **PeiServices, 31 IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob 32 ) 33 { 34 return FALSE; 35 } 36 37 BOOLEAN 38 IsManufacturingMode( 39 IN CONST EFI_PEI_SERVICES **PeiServices, 40 IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob 41 ) 42 { 43 return FALSE; 44 } 45