svn commit: r282477 - head/sys/boot/efi/loader

Andrew Turner andrew at FreeBSD.org
Tue May 5 11:07:44 UTC 2015


Author: andrew
Date: Tue May  5 11:07:43 2015
New Revision: 282477
URL: https://svnweb.freebsd.org/changeset/base/282477

Log:
  Add FDT to the list of known GUIDs.

Modified:
  head/sys/boot/efi/loader/main.c

Modified: head/sys/boot/efi/loader/main.c
==============================================================================
--- head/sys/boot/efi/loader/main.c	Tue May  5 11:01:31 2015	(r282476)
+++ head/sys/boot/efi/loader/main.c	Tue May  5 11:07:43 2015	(r282477)
@@ -59,6 +59,7 @@ EFI_GUID dxe = DXE_SERVICES_TABLE_GUID;
 EFI_GUID hoblist = HOB_LIST_TABLE_GUID;
 EFI_GUID memtype = MEMORY_TYPE_INFORMATION_TABLE_GUID;
 EFI_GUID debugimg = DEBUG_IMAGE_INFO_TABLE_GUID;
+EFI_GUID fdtdtb = FDT_TABLE_GUID;
 
 EFI_STATUS
 main(int argc, CHAR16 *argv[])
@@ -287,6 +288,8 @@ command_configuration(int argc, char *ar
 			printf("Memory Type Information Table");
 		else if (!memcmp(guid, &debugimg, sizeof(EFI_GUID)))
 			printf("Debug Image Info Table");
+		else if (!memcmp(guid, &fdtdtb, sizeof(EFI_GUID)))
+			printf("FDT Table");
 		else
 			printf("Unknown Table (%s)", guid_to_string(guid));
 		printf(" at %p\n", ST->ConfigurationTable[i].VendorTable);


More information about the svn-src-head mailing list