Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jun 2012 08:41:14 +0000 (UTC)
From:      "Andrey V. Elsukov" <ae@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r237750 - user/ae/bootcode/sys/boot/arm/uboot
Message-ID:  <201206290841.q5T8fEnv029059@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ae
Date: Fri Jun 29 08:41:13 2012
New Revision: 237750
URL: http://svn.freebsd.org/changeset/base/237750

Log:
  Turn on the build of MBR and GPT support in the arm/uboot.

Modified:
  user/ae/bootcode/sys/boot/arm/uboot/Makefile

Modified: user/ae/bootcode/sys/boot/arm/uboot/Makefile
==============================================================================
--- user/ae/bootcode/sys/boot/arm/uboot/Makefile	Fri Jun 29 08:39:30 2012	(r237749)
+++ user/ae/bootcode/sys/boot/arm/uboot/Makefile	Fri Jun 29 08:41:13 2012	(r237750)
@@ -36,6 +36,12 @@ LOADER_FDT_SUPPORT=	no
 
 .if ${LOADER_DISK_SUPPORT} == "yes"
 CFLAGS+=	-DLOADER_DISK_SUPPORT
+.if !defined(LOADER_NO_MBR_SUPPORT)
+CFLAGS+=	-DLOADER_MBR_SUPPORT
+.endif
+.if !defined(LOADER_NO_GPT_SUPPORT)
+CFLAGS+=	-DLOADER_GPT_SUPPORT
+.endif
 .endif
 .if ${LOADER_UFS_SUPPORT} == "yes"
 CFLAGS+=	-DLOADER_UFS_SUPPORT



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