Home | History | Annotate | Download | only in BoardJumpers
      1 /** @file
      2   Jumper setting for multiplatform.
      3 
      4   Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
      5 
      6   This program and the accompanying materials are licensed and made available under
      8   the terms and conditions of the BSD License that accompanies this distribution.
     10   The full text of the license may be found at
     12   http://opensource.org/licenses/bsd-license.php.
     14 
     16   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     18   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     20 
     22 
     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