Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Oct 2017 16:36:27 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r325014 - head/sys/arm/include
Message-ID:  <201710261636.v9QGaROi046720@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710261636.v9QGaROi046720>