svn commit: r262694 - head/sys/boot/uboot/common

Ian Lepore ian at FreeBSD.org
Sun Mar 2 17:19:19 UTC 2014


Author: ian
Date: Sun Mar  2 17:19:19 2014
New Revision: 262694
URL: http://svnweb.freebsd.org/changeset/base/262694

Log:
  Include needed header.  I don't know why clang didn't complain about this
  but gcc sure did.

Modified:
  head/sys/boot/uboot/common/metadata.c

Modified: head/sys/boot/uboot/common/metadata.c
==============================================================================
--- head/sys/boot/uboot/common/metadata.c	Sun Mar  2 16:25:56 2014	(r262693)
+++ head/sys/boot/uboot/common/metadata.c	Sun Mar  2 17:19:19 2014	(r262694)
@@ -41,6 +41,10 @@ __FBSDID("$FreeBSD$");
 #include "bootstrap.h"
 #include "glue.h"
 
+#if defined(LOADER_FDT_SUPPORT)
+#include "libuboot.h"
+#endif
+
 /*
  * Return a 'boothowto' value corresponding to the kernel arguments in
  * (kargs) and any relevant environment variables.


More information about the svn-src-head mailing list