HomeSort by relevance Sort by last modified time
    Searched refs:InitrdImageBase (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/Arm/
LinuxStarter.c 174 EFI_PHYSICAL_ADDRESS InitrdImageBase = 0;
189 InitrdImageBase = LINUX_KERNEL_MAX_OFFSET;
190 Status = BdsLoadImage (InitrdDevicePath, AllocateMaxAddress, &InitrdImageBase, &InitrdImageBaseSize);
192 Status = BdsLoadImage (InitrdDevicePath, AllocateAnyPages, &InitrdImageBase, &InitrdImageBaseSize);
200 if (*(UINT32*)((UINTN)InitrdImageBase) == LINUX_UIMAGE_SIGNATURE) {
202 InitrdImage = (EFI_PHYSICAL_ADDRESS)((UINTN)InitrdImageBase + 64);
205 InitrdImage = InitrdImageBase;
225 gBS->FreePages (InitrdImageBase, EFI_SIZE_TO_PAGES (InitrdImageBaseSize));
263 EFI_PHYSICAL_ADDRESS InitrdImageBase = 0;
277 InitrdImageBase = LINUX_KERNEL_MAX_OFFSET;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/AArch64/
LinuxStarter.c 204 EFI_PHYSICAL_ADDRESS InitrdImageBase;
216 InitrdImageBase = 0;
245 InitrdImageBase = LINUX_KERNEL_MAX_OFFSET;
246 Status = BdsLoadImage (InitrdDevicePath, AllocateMaxAddress, &InitrdImageBase, &InitrdImageBaseSize);
248 Status = BdsLoadImage (InitrdDevicePath, AllocateAnyPages, &InitrdImageBase, &InitrdImageBaseSize);
256 if (*(UINTN*)((UINTN)InitrdImageBase) == LINUX_UIMAGE_SIGNATURE) {
258 InitrdImage = (EFI_PHYSICAL_ADDRESS)((UINTN)InitrdImageBase + 64);
261 InitrdImage = InitrdImageBase;
363 gBS->FreePages (InitrdImageBase, EFI_SIZE_TO_PAGES (InitrdImageBaseSize));

Completed in 201 milliseconds