Date: Fri, 25 Jun 1999 01:30:02 -0700 (PDT) From: Nick Hibma <nick.hibma@jrc.it> To: freebsd-bugs@FreeBSD.org Subject: Re: i386/12383: make release warns about /dev entries making bin/bin tarball Message-ID: <199906250830.BAA32413@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR i386/12383; it has been noted by GNATS.
From: Nick Hibma <nick.hibma@jrc.it>
To: ggm@dstc.edu.au
Cc: freebsd-gnats-submit@FreeBSD.ORG
Subject: Re: i386/12383: make release warns about /dev entries making bin/bin tarball
Date: Fri, 25 Jun 1999 10:26:55 +0200 (MET DST)
This is a limitation of tar, maybe even the format used by tar. It looks
like to_oct() in gnu/usr.bin/tar/create.c uses a maximum of 6 digits
(8 - the '\0' and a trailing space (?))
--digs; /* Trailing null slot is left alone */
where[--digs] = ' '; /* Put in the space, though */
/* Produce the digits -- at least one */
do
{
where[--digs] = '0' + (char) (value & 7); /* one octal digit */
value >>= 3;
}
while (digs > 0 && value != 0);
/* Leading spaces, if necessary */
while (digs > 0) where[--digs] = ' ';
Nick
On Thu, 24 Jun 1999 ggm@dstc.edu.au wrote:
>
> >Number: 12383
> >Category: i386
> >Synopsis: make release warns about /dev entries making bin/bin tarball
> >Confidential: no
> >Severity: non-critical
> >Priority: low
> >Responsible: freebsd-bugs
> >State: open
> >Quarter:
> >Keywords:
> >Date-Required:
> >Class: sw-bug
> >Submitter-Id: current-users
> >Arrival-Date: Thu Jun 24 21:10:02 PDT 1999
> >Closed-Date:
> >Last-Modified:
> >Originator: George Michaelson
> >Release: 4.0-CURRENT
> >Organization:
> DSTC Pty/Ltd
> >Environment:
> FreeBSD shiraz.infenv.csee.uq.edu.au 4.0-CURRENT FreeBSD 4.0-CURRENT #5: Fri Jun 25 10:30:08 EST 1999 ggm@shiraz.infenv.csee.uq.edu.au:/opt/src-current/sys/compile/SMP-MERLOT i386
>
> >Description:
> during make release I get:
> azure $ cat > /dev/null
> touch release.5
> rm -rf /R/stage/dists
> mkdir -p /R/stage/dists
> rolling bin/bin tarball
> tar: dev/da0s3: minor number too large; not dumped
> tar: dev/rda0s3: minor number too large; not dumped
> tar: dev/da0s4: minor number too large; not dumped
> tar: dev/rda0s4: minor number too large; not dumped
> tar: dev/da1s3: minor number too large; not dumped
> tar: dev/rda1s3: minor number too large; not dumped
>
> >How-To-Repeat:
> make release on current spec. use NODOC and NOPORTS options
> >Fix:
>
>
> >Release-Note:
> >Audit-Trail:
> >Unformatted:
>
>
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-bugs" in the body of the message
>
>
--
ISIS/STA, T.P.270, Joint Research Centre, 21020 Ispra, Italy
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199906250830.BAA32413>
