acrn: add pxelinux as known bootloader

Tracked-On: #4389
Signed-off-by: Alexander Merritt <alex.merritt@intel.com>
This commit is contained in:
Alexander Merritt 2020-01-24 10:45:13 -08:00 committed by wenlingz
parent 50f284528e
commit 8ddbfc268c
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@
#include <deprivilege_boot.h>
#include <logmsg.h>
#define BOOTLOADER_NUM 4U
#define BOOTLOADER_NUM 5U
#define BOOTLOADER_NAME_SIZE 20U
struct vboot_bootloader_map {
@ -40,6 +40,7 @@ void init_vboot(void)
{"Intel IOTG/TSD ABL", DIRECT_BOOT_MODE},
{"ACRN UEFI loader", DEPRI_BOOT_MODE},
{"GRUB", DIRECT_BOOT_MODE},
{"PXELINUX", DIRECT_BOOT_MODE},
};
mbi = (struct multiboot_info *)hpa2hva((uint64_t)boot_regs[1]);