svn commit: r325014 - head/sys/arm/include

Warner Losh imp at FreeBSD.org
Thu Oct 26 16:36:28 UTC 2017


Author: imp
Date: Thu Oct 26 16:36:27 2017
New Revision: 325014
URL: https://svnweb.freebsd.org/changeset/base/325014

Log:
  Add a 'place holder' arm struct efi_fb until a real one comes
  along. This allows the arm efi boot loader to compile again.
  
  Sponsored by: Netflix

Modified:
  head/sys/arm/include/metadata.h

Modified: head/sys/arm/include/metadata.h
==============================================================================
--- head/sys/arm/include/metadata.h	Thu Oct 26 16:20:47 2017	(r325013)
+++ head/sys/arm/include/metadata.h	Thu Oct 26 16:36:27 2017	(r325014)
@@ -39,4 +39,19 @@ struct efi_map_header {
 	uint32_t	descriptor_version;
 };
 
+/*
+ * Placeholder for now
+ */
+struct efi_fb {
+	uint64_t	fb_addr;
+	uint64_t	fb_size;
+	uint32_t	fb_height;
+	uint32_t	fb_width;
+	uint32_t	fb_stride;
+	uint32_t	fb_mask_red;
+	uint32_t	fb_mask_green;
+	uint32_t	fb_mask_blue;
+	uint32_t	fb_mask_reserved;
+};
+
 #endif /* !_MACHINE_METADATA_H_ */


More information about the svn-src-head mailing list