Stop cutting the tarball names to eight symbols. This makes

it possible to e.g. distribute kernels with config names larger
than eight symbols, without the clash.  Previousy, LALALALA
and LALALALA-SMP would be the same tarball.  (I think this
comes from the old days where tarballs were put on the MS-DOS
formatted diskettes.)

MFC after:	3 days
This commit is contained in:
Ruslan Ermilov 2006-09-08 19:54:37 +00:00
parent 820e03699c
commit 710989358e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=162164
2 changed files with 3 additions and 3 deletions

View File

@ -1098,7 +1098,7 @@ doTARBALL:
@rm -rf ${RD}/dists/${TD}/${TN}*
@mkdir -p ${RD}/dists/${TD}
@( cd ${SD} && \
tn=`echo ${TN} | tr 'A-Z' 'a-z' | cut -c1-8` && \
tn=`echo ${TN} | tr 'A-Z' 'a-z'` && \
echo rolling ${TD}/$$tn tarball &&\
tar --exclude CVS --exclude obj --exclude BOOTMFS -cf - ${ARG} | \
${ZIPNSPLIT} ${RD}/dists/${TD}/$$tn. && \

View File

@ -35,8 +35,8 @@ if [ "$ans" = "y" ]; then
echo "Saving existing $KERNEL as $sav"
mv $KERNEL $sav
fi
# translate per Makefile:doTARBALL XXX are we sure to have tr+cut?
tn=`echo ${CONFIG} | tr 'A-Z' 'a-z' | cut -c1-8`
# translate per Makefile:doTARBALL XXX are we sure to have tr?
tn=`echo ${CONFIG} | tr 'A-Z' 'a-z'`
cat $tn.?? | tar --unlink -xpzf - -C $BOOT
else
echo "Installation of $CONFIG kernel distribution not done."