Date: Wed, 12 Nov 2014 17:56:39 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r274439 - head/sys/boot/efi/include Message-ID: <201411121756.sACHudvD004151@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: andrew Date: Wed Nov 12 17:56:38 2014 New Revision: 274439 URL: https://svnweb.freebsd.org/changeset/base/274439 Log: Add the FDT table GUID. This is used to pass the device tree blob from UEFI to the loader in a similar way to the ACPI tables. This will be used on arm64 but is not specific to the architecture. Sponsored by: The FreeBSD Foundation Modified: head/sys/boot/efi/include/efiapi.h Modified: head/sys/boot/efi/include/efiapi.h ============================================================================== --- head/sys/boot/efi/include/efiapi.h Wed Nov 12 17:31:38 2014 (r274438) +++ head/sys/boot/efi/include/efiapi.h Wed Nov 12 17:56:38 2014 (r274439) @@ -842,6 +842,8 @@ typedef struct { #define SAL_SYSTEM_TABLE_GUID \ { 0xeb9d2d32, 0x2d88, 0x11d3, 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } +#define FDT_TABLE_GUID \ + { 0xb1b621d5, 0xf19c, 0x41a5, 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0 } typedef struct _EFI_CONFIGURATION_TABLE { EFI_GUID VendorGuid;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411121756.sACHudvD004151>