From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Cox Subject: Re: Bug reports Date: Mon, 08 May 2006 15:25:44 +0100 Message-ID: <1147098344.18124.12.camel@localhost.localdomain> References: <20060508011933.40685.qmail@web51312.mail.yahoo.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20060508011933.40685.qmail@web51312.mail.yahoo.com> Sender: linux-8086-owner@vger.kernel.org List-Id: Content-Type: text/plain; charset="us-ascii" To: Tom McCabe Cc: linux-8086@vger.kernel.org On Sul, 2006-05-07 at 18:19 -0700, Tom McCabe wrote: > Bug #1: When rootfs_template is tarred and untarred, > the files get covered in DOS ^M carriage return > characters, which causes the scripts MAKEDEV and > MAKESET to crash. > > Bug #2: When the root disk is mounted and put > together, it's registered as full at 352 KB, even > though all the files added up only take up 300 KB. Probably not a bug - inode blocks and superblock etc all borrow some plus you use it in 1K chunks of data and then blocks for indirection on bigger files. > Bug #3: elkscmd/ash/Makefile generates a hardlink of > /bin/ash at /bin/sh instead of a softlink, taking up > extra space. Hard link is just a directory entry into the inode. Softlink takes a data block...