svn commit: r237750 - user/ae/bootcode/sys/boot/arm/uboot

Andrey V. Elsukov ae at FreeBSD.org
Fri Jun 29 08:41:14 UTC 2012


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


More information about the svn-src-user mailing list