svn commit: r237356 - user/ae/bootcode/sys/boot/i386/loader

Andrey V. Elsukov ae at FreeBSD.org
Thu Jun 21 04:52:27 UTC 2012


Author: ae
Date: Thu Jun 21 04:52:26 2012
New Revision: 237356
URL: http://svn.freebsd.org/changeset/base/237356

Log:
  Enable MBR support by default.

Modified:
  user/ae/bootcode/sys/boot/i386/loader/Makefile

Modified: user/ae/bootcode/sys/boot/i386/loader/Makefile
==============================================================================
--- user/ae/bootcode/sys/boot/i386/loader/Makefile	Thu Jun 21 04:51:34 2012	(r237355)
+++ user/ae/bootcode/sys/boot/i386/loader/Makefile	Thu Jun 21 04:52:26 2012	(r237356)
@@ -50,6 +50,9 @@ CFLAGS+=	-DLOADER_BZIP2_SUPPORT
 .if !defined(LOADER_NO_GZIP_SUPPORT)
 CFLAGS+=	-DLOADER_GZIP_SUPPORT
 .endif
+.if !defined(LOADER_NO_MBR_SUPPORT)
+CFLAGS+=	-DLOADER_MBR_SUPPORT
+.endif
 .if !defined(LOADER_NO_GPT_SUPPORT)
 CFLAGS+=	-DLOADER_GPT_SUPPORT
 .endif


More information about the svn-src-user mailing list