mkdir boot etc;fixup etc boot
for i in ipide wd
do (cd /usr/src/Kernels/$i;tar cf - vmlinuz psdatabase)|(cd etc;tar xvfp -; \
  fixup *)
 mv etc/vmlinuz boot
 >$i.crc;fixup $i.crc
 brik -Gb etc/psdatabase >$i.crc
cat $i.crc
 echo -n "The kernel in $i has no " >install.info
 if [ "$i" = "ide" ];then echo -n "TCP/IP, NFS, " >>install.info;fi
 echo "SCSI or xd support." >>install.info
 if [ "$i" = "wd" ];then echo \
  "It contains support only for Western Digital 80*3 ethernet cards." \
  >>install.info;fi
cat install.info
 tar cf - $i.crc install.clean install.info install.setup \
  boot etc|gzip -9 >../$i.tgz
 fixup ../$i.tgz
 rm $i.crc boot/* etc/*;done
rmdir boot etc
