]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Include/Library/BdsUnixLib.h
ArmPkg/ArmLib: Define the macro IS_ARM_MEMORY_REGION_ATTRIBUTES_SECURE()
[mirror_edk2.git] / ArmPkg / Include / Library / BdsUnixLib.h
1 /** @file
2 *
3 * Copyright (c) 2011, ARM Limited. All rights reserved.
4 *
5 * This program and the accompanying materials
6 * are licensed and made available under the terms and conditions of the BSD License
7 * which accompanies this distribution. The full text of the license may be found at
8 * http://opensource.org/licenses/bsd-license.php
9 *
10 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 *
13 **/
14
15 #ifndef __BDS_ENTRY_H__
16 #define __BDS_ENTRY_H__
17
18 EFI_STATUS
19 BdsConnectAllDrivers ( VOID );
20
21 EFI_STATUS
22 BdsBootLinux (
23 IN CONST CHAR16* LinuxKernel,
24 IN CONST CHAR8* ATag,
25 IN CONST CHAR16* Fdt
26 );
27
28 EFI_STATUS
29 BdsLoadApplication (
30 IN CHAR16* EfiApp
31 );
32
33 EFI_STATUS
34 BdsLoadApplicationFromPath (
35 IN CHAR16* EfiAppPath
36 );
37
38 #endif