Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Nov 2009 16:49:57 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org
Subject:   svn commit: r198808 - in stable/6/sys: . boot/i386/libi386 conf contrib/pf dev/cxgb
Message-ID:  <200911021649.nA2GnvkY063380@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Nov  2 16:49:57 2009
New Revision: 198808
URL: http://svn.freebsd.org/changeset/base/198808

Log:
  MFC r197082:
  
    If the pxe client is told to use / as the root path, honour that rather
    of trying to mount /pxeroot instead.
  
  PR:		i386/106493
  Submitted by:	Andrey Russev

Modified:
  stable/6/sys/   (props changed)
  stable/6/sys/boot/i386/libi386/pxe.c
  stable/6/sys/conf/   (props changed)
  stable/6/sys/contrib/pf/   (props changed)
  stable/6/sys/dev/cxgb/   (props changed)

Modified: stable/6/sys/boot/i386/libi386/pxe.c
==============================================================================
--- stable/6/sys/boot/i386/libi386/pxe.c	Mon Nov  2 16:46:53 2009	(r198807)
+++ stable/6/sys/boot/i386/libi386/pxe.c	Mon Nov  2 16:49:57 2009	(r198808)
@@ -282,7 +282,7 @@ pxe_open(struct open_file *f, ...)
 		bootp(pxe_sock, BOOTP_PXE);
 		if (rootip.s_addr == 0)
 			rootip.s_addr = bootplayer.sip;
-		if (!rootpath[1])
+		if (!rootpath[0])
 			strcpy(rootpath, PXENFSROOTPATH);
 
 		for (i = 0; rootpath[i] != '\0' && i < FNAME_SIZE; i++)



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