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);
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to