From owner-freebsd-questions@FreeBSD.ORG Sun Jan 9 15:38:59 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05469106564A for ; Sun, 9 Jan 2011 15:38:59 +0000 (UTC) (envelope-from mike@sentex.net) Received: from smarthost1.sentex.ca (smarthost1-6.sentex.ca [IPv6:2607:f3e0:0:1::12]) by mx1.freebsd.org (Postfix) with ESMTP id B64398FC08 for ; Sun, 9 Jan 2011 15:38:58 +0000 (UTC) Received: from [IPv6:2607:f3e0:0:4:356c:daf:ee13:13d1] ([IPv6:2607:f3e0:0:4:356c:daf:ee13:13d1]) by smarthost1.sentex.ca (8.14.4/8.14.4) with ESMTP id p09Fcudj057574 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Sun, 9 Jan 2011 10:38:56 -0500 (EST) (envelope-from mike@sentex.net) Message-ID: <4D29D68F.8070309@sentex.net> Date: Sun, 09 Jan 2011 10:38:55 -0500 From: Mike Tancsa User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20101207 Thunderbird/3.1.7 MIME-Version: 1.0 To: Robert Boyer References: <46BAC315-34E3-4D1B-A276-81BFE52C290D@mac.com> In-Reply-To: <46BAC315-34E3-4D1B-A276-81BFE52C290D@mac.com> X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.67 on IPv6:2607:f3e0:0:1::12 Cc: freebsd-questions@freebsd.org Subject: Re: Help with nanobsd.sh?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2011 15:38:59 -0000 On 1/8/2011 7:27 PM, Robert Boyer wrote: > I am trying nanobsd for the first time under 8.1 and have two fairly basic questions before I go about solving a few issues in my usual brute-force and wrong way. > > 1)Using a box stock system with a fresh install and the default nanobsd.sh with default configuration everything looks like it builds fine right up until.... > > 02:11:50 ## build diskimage > 02:11:50 ### log: /usr/obj/nanobsd.full//_.di > > /usr/obj/nanobsd.full/_.mnt: write failed, filesystem is full Hi, I usually create a .conf file to override some of the defaults, including making a larger media size to match my CF as well as larger image size. eg. some of the options I have in base.conf BOOT_COMCONSOLE_SPEED=115200 BOOT_PXELDR_ALWAYS_SERIAL=1 NANO_DATASIZE=80960 NANO_PMAKE="make -j 5" NANO_KERNEL=nano5501 NANO_MEDIASIZE=1800000 NANO_NAME=alix NANO_SRC=/usr/src NANO_IMAGES=2 CONF_BUILD=' NO_PAM=YES ' then to build, I will do a sh ./nanobsd.sh -c base.conf > > 2)Is there an option to run nanobsd.sh without cleaning the obj directories? Really don't want to rebuild world and kernel from scratch for a couple of different packages in custom configs - let alone do it for solving build issues. Yes -b or -n just less the file to see the other options. Its just a giant shell script ---Mike