diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-22 22:54:38 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-09-22 22:54:38 +0000 |
commit | 76d17c315645552a99691ed0b2024f52b22aa8c9 (patch) | |
tree | 4b95aac961fd23260ef585b3270c2b23c68cc243 /ArmPkg/Library/BdsLib/BdsInternal.h | |
parent | 11c20f4e06d252feaa65aa5e526686baf015762d (diff) | |
download | edk2-platforms-76d17c315645552a99691ed0b2024f52b22aa8c9.tar.xz |
ArmPkg/BdsLib: Use two distinct functions to boot Linux either by Atag or Fdt
Separate the BdsBootLinux() function into two functions for Atag and Fdt specific Linux booting
- BdsBootLinuxAtag ()
- BdsBootLinuxFdt ()
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12408 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Library/BdsLib/BdsInternal.h')
-rw-r--r-- | ArmPkg/Library/BdsLib/BdsInternal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ArmPkg/Library/BdsLib/BdsInternal.h b/ArmPkg/Library/BdsLib/BdsInternal.h index d450e8e6b2..9b73376f96 100644 --- a/ArmPkg/Library/BdsLib/BdsInternal.h +++ b/ArmPkg/Library/BdsLib/BdsInternal.h @@ -16,14 +16,17 @@ #define __BDS_INTERNAL_H__ #include <PiDxe.h> +#include <Library/ArmLib.h> #include <Library/BaseLib.h> #include <Library/BaseMemoryLib.h> +#include <Library/HobLib.h> #include <Library/UefiBootServicesTableLib.h> #include <Library/UefiLib.h> #include <Library/DevicePathLib.h> #include <Library/MemoryAllocationLib.h> #include <Library/DebugLib.h> #include <Library/BdsLib.h> +#include <Library/PcdLib.h> #include <Library/PerformanceLib.h> #include <Library/PrintLib.h> #include <Library/UefiRuntimeServicesTableLib.h> @@ -38,6 +41,7 @@ #include <Protocol/LoadFile.h> #include <Protocol/PxeBaseCode.h> +#include "BdsLinuxLoader.h" typedef BOOLEAN (*BDS_FILE_LOADER_SUPPORT) ( IN EFI_DEVICE_PATH *DevicePath, |