Date: Thu, 21 Jun 2001 10:17:52 -0500 From: "Michael C . Wu" <keichii@iteration.net> To: Omachonu Ogali <missnglnk@informationwave.net> Cc: freebsd-current@freebsd.org, freebsd-small@freebsd.org Subject: Re: picobsd and mdconfig Message-ID: <20010621101752.B63569@peorth.iteration.net> In-Reply-To: <20010621110202.C15323@subtopia.informationwave.net>; from missnglnk@informationwave.net on Thu, Jun 21, 2001 at 11:02:02AM -0400 References: <20010621105232.B15323@subtopia.informationwave.net> <20010621100327.A62866@peorth.iteration.net> <20010621110202.C15323@subtopia.informationwave.net>
next in thread | previous in thread | raw e-mail | index | archive | help
--J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jun 21, 2001 at 11:02:02AM -0400, Omachonu Ogali scribbled: | On Thu, Jun 21, 2001 at 10:03:27AM -0500, Michael C . Wu wrote: | > On Thu, Jun 21, 2001 at 10:52:32AM -0400, Omachonu Ogali scribbled: | > | vnconfig has changed to mdconfig in -current, but the | > | picobsd build script still references vnconfig, also | > | CONFIG isn't defined anywhere in the script, resulting | > | in the process dying when it tries to configure the | > | kernel, a couple of punctuation mods here and there, | > | and dumped the "vnode is..." log. | > | > Hi Omachonu, | > | > Do you mind posting a URL with the above patch | > in unified form? (i.e. diff -u) | | http://www.informationwave.net/~missng/freebsd/notsubmitted/picobsd-build.unified.patch Attached is my questions about this. The rest of it looks great. We shouldn't have any problem with this patch at all. I will test this tonight or at USENIX. -- +-----------------------------------------------------------+ | keichii@iteration.net | keichii@freebsd.org | | http://iteration.net/~keichii | Yes, BSD is a conspiracy. | +-----------------------------------------------------------+ --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="picobsd-build.unified.patch" | --- src/release/picobsd/build/picobsd.orig Thu Jun 21 04:49:46 2001 | +++ src/release/picobsd/build/picobsd Thu Jun 21 10:08:00 2001 | @@ -2,3 +2,3 @@ | - gzip -9 etc/* | + for f in `find etc/ -type 'f'` ; do gzip -9 $f ; done | log "---> Compressed files in etc/ Good idea! | + newfs -i ${MFS_INODES} -m 0 -p 0 -o space /dev/md${VNUM}c > /dev/null | + mount /dev/md${VNUM}c ${MFS_MOUNTPOINT} || fail $? no_mount | + log "`df /dev/md${VNUM}c`" | } | @@ -527,3 +518,3 @@ | log "---> Copy generic floppy_tree into MFS..." | - cp -Rp ${BUILDDIR}/floppy.tree/* ${MFS_MOUNTPOINT}/fd | + cp -Rp ${BUILDDIR}/floppy.tree/* ${MFS_MOUNTPOINT}/fd || fail $? ftree_copy | + | + du -k kernel.gz | + df -k ${MFS_MOUNTPOINT} | + cp -p kernel.gz ${MFS_MOUNTPOINT}/kernel || fail $? kernel_copy Why do you call du and df? --J2SCkAp4GZ/dPZZf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-small" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010621101752.B63569>