From c60a940b1dc8ae930cd367435492eb0e945e77c8 Mon Sep 17 00:00:00 2001 From: ru Date: Fri, 8 Sep 2006 19:54:37 +0000 Subject: 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 --- release/scripts/kernels-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'release/scripts/kernels-install.sh') diff --git a/release/scripts/kernels-install.sh b/release/scripts/kernels-install.sh index 831a99f..0bf9619 100644 --- a/release/scripts/kernels-install.sh +++ b/release/scripts/kernels-install.sh @@ -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." -- cgit v1.1