Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jun 2009 22:22:20 +0000 (UTC)
From:      Edwin Groothuis <edwin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r194782 - stable/7/tools/tools/nanobsd
Message-ID:  <200906232222.n5NMMKCX092572@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: edwin
Date: Tue Jun 23 22:22:20 2009
New Revision: 194782
URL: http://svn.freebsd.org/changeset/base/194782

Log:
  Fix NanoBSD when the data partition size is defined as a negative
  number.
  
        It is possible to ask nanobsd.sh to create a 'data' partition,
        separate from the system or configuration partitions, and
        furthermore, by specifying a negative value for its size
        to request that it use all space unused by those partitions
        for its own size.
  
        Because the two lines of code that calculate how much space
        is available for this data partition are written in perl-like
        syntax, the awk code that does the processing performs the
        calculation incorrectly.
        [note - this was already fixed by r174936]
  
        Furthermore, a comparison later down fails to newfs the
        partition when the size is negative.
  
  PR:           misc/127759
  Submitted by: Cyrus Rahman <crahman@gmail.com>

Modified:
  stable/7/tools/tools/nanobsd/nanobsd.sh   (contents, props changed)

Modified: stable/7/tools/tools/nanobsd/nanobsd.sh
==============================================================================
--- stable/7/tools/tools/nanobsd/nanobsd.sh	Tue Jun 23 22:19:27 2009	(r194781)
+++ stable/7/tools/tools/nanobsd/nanobsd.sh	Tue Jun 23 22:22:20 2009	(r194782)
@@ -474,7 +474,7 @@ create_i386_diskimage ( ) (
 	# XXX: fill from where ?
 
 	# Create Data slice, if any.
-	if [ $NANO_DATASIZE -gt 0 ] ; then
+	if [ $NANO_DATASIZE -ne 0 ] ; then
 		newfs ${NANO_NEWFS} /dev/${MD}s4
 		# XXX: fill from where ?
 	fi



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