From owner-freebsd-hackers@FreeBSD.ORG Thu Jun 23 14:06:08 2005 Return-Path: X-Original-To: freebsd-hackers@freebsd.org Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 216CB16A41C for ; Thu, 23 Jun 2005 14:06:08 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D09F143D1D for ; Thu, 23 Jun 2005 14:06:07 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (junior.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.3/8.13.3) with ESMTP id j5NEEp9e010838; Thu, 23 Jun 2005 08:14:51 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <42BAC1CB.30402@samsco.org> Date: Thu, 23 Jun 2005 08:06:03 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Gregg Cooper References: <42BAC058.3040603@squbes.com> In-Reply-To: <42BAC058.3040603@squbes.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-2.8 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.0.2 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on pooker.samsco.org Cc: freebsd-hackers@freebsd.org Subject: Re: Duplicate inodes in 5.4-RELEASE-i386-disc1.iso X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jun 2005 14:06:08 -0000 Gregg Cooper wrote: > While trying to make a simple customization to the latest distribution > cd (add console="comconsole" to boot/loader.conf), the following four > sets of cross-linked files were found (pruned output from "ls -ilR > /cdrom"; isoinfo(8) from sysutils/cdrtools produces similar): > > 15005 -r--r--r-- 2 root wheel 0 May 8 03:05 dumpdates > 15005 -r--r--r-- 2 root wheel 142 May 8 03:05 fbtab > 83266 -r--r--r-- 2 root wheel 0 May 8 03:01 locale > 83266 -r--r--r-- 2 root wheel 31 May 8 03:01 mm.tmac > 83269 -r--r--r-- 2 root wheel 0 May 8 03:01 se_locale > 83269 -r--r--r-- 2 root wheel 97 May 8 03:01 se_ms.cov > 99056 -r--r--r-- 2 root wheel 0 May 8 03:05 utmp > 99056 -r--r--r-- 2 root wheel 18425 May 8 03:04 Makefile.dist > > After tar'ing the cd contents over to disk, and "diff -r" uncovering the > discrepancies in the copy (the second file of each set was now 0 bytes), > had to manually delete and re-copy the four truncated files before > making the desired change, and mkisofs(8) and burncd(8). > > Maybe this is a one-off, or perhaps a simple change could be made to the > release cd mastering process to avoid this in the future. > > Gregg We don't do anything special in the mastering process: The exact command that is used by the release Makefile: bootable="-b boot/cdboot -no-emul-boot" mkisofs $bootable -r -J -V $LABEL -publisher "$publisher" -o $NAME $* Maybe it's a bug in mkisofs? Scott