Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Sep 2017 12:44:42 +0000 (UTC)
From:      Mariusz Zaborski <oshogbo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r323952 - head/sys/boot/i386/libi386
Message-ID:  <201709231244.v8NCig1O037355@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: oshogbo
Date: Sat Sep 23 12:44:42 2017
New Revision: 323952
URL: https://svnweb.freebsd.org/changeset/base/323952

Log:
  After the r317886 support for TFTP and NFS can be enable simultaneously.
  
  The cleanup of this distinction was done in the r318988, but this Makefile
  was omitted.
  
  Submitted by:	kczekirda@

Modified:
  head/sys/boot/i386/libi386/Makefile

Modified: head/sys/boot/i386/libi386/Makefile
==============================================================================
--- head/sys/boot/i386/libi386/Makefile	Sat Sep 23 12:35:46 2017	(r323951)
+++ head/sys/boot/i386/libi386/Makefile	Sat Sep 23 12:44:42 2017	(r323952)
@@ -12,10 +12,10 @@ SRCS=	biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp
 .PATH:	${.CURDIR}/../../zfs
 SRCS+=	devicename_stubs.c
 
-# Enable PXE TFTP or NFS support, not both.
 .if defined(LOADER_TFTP_SUPPORT)
 CFLAGS+=	-DLOADER_TFTP_SUPPORT
-.else
+.endif
+.if defined(LOADER_NFS_SUPPORT)
 CFLAGS+=	-DLOADER_NFS_SUPPORT
 .endif
 



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