minix/tools/release.sh

393 lines
9.2 KiB
Bash
Raw Normal View History

2005-04-21 16:53:53 +02:00
#!/bin/sh
2006-02-02 18:11:10 +01:00
PACKAGEDIR=/usr/bigports/Packages
PACKAGESOURCEDIR=/usr/bigports/Sources
secs=`expr 32 '*' 64`
make_hdimage()
{
dd if=$TMPDISK of=usrimage bs=$BS count=$USRBLOCKS
rootsize=`stat -size rootimage`
usrsize=`stat -size usrimage`
rootsects=`expr $rootsize / 512`
usrsects=`expr $usrsize / 512`
# installboot -m needs at least 1KB
dd < /dev/zero >tmpimage count=2
partition -fm tmpimage 2 81:$rootsects* 0:0 81:$usrsects
installboot -m tmpimage /usr/mdec/masterboot
dd < tmpimage > subpart count=1
primsects=`expr 1 + $rootsects + $usrsects`
cyl=`expr '(' $primsects ')' / $secs + 1`
padsects=`expr $cyl \* $secs - 1 - $primsects`
{ dd < /dev/zero count=1
cat subpart
cat rootimage
cat usrimage
dd < /dev/zero count=$padsects
} > hdimage
partition -m hdimage 81:`expr $primsects + $padsects`*
installboot -m hdimage /usr/mdec/masterboot
}
hdemu_root_changes()
{
2006-02-15 12:05:47 +01:00
$RELEASEDIR/usr/bin/installboot -d $TMPDISK3 \
$RELEASEDIR/usr/mdec/bootblock boot/boot
echo \
'bootcd=2
disable=inet
bios_remap_first=1
ramimagedev=c0d7p0s0
2006-03-13 09:47:05 +01:00
bootbig(1, Regular MINIX 3) { unset image; boot }
bootsmall(2, Small MINIX 3 (<16MB)) {image=/boot/image/image_small; boot }
main() { trap 10000 boot ; menu; }
2006-02-15 12:05:47 +01:00
save' | $RELEASEDIR/usr/bin/edparams $TMPDISK3
echo \
'root=/dev/c0d7p0s0
usr=/dev/c0d7p0s2
usr_roflag="-r"' > $RELEASEDIR/etc/fstab
}
usb_root_changes()
{
$RELEASEDIR/usr/bin/installboot -d $TMPDISK3 \
$RELEASEDIR/usr/mdec/bootblock boot/boot
echo \
'bios_wini=yes
disable=inet
bios_remap_first=1
rootdev=c0d7p0s0
save' | $RELEASEDIR/usr/bin/edparams $TMPDISK3
echo \
'root=/dev/c0d7p0s0
usr=/dev/c0d7p0s2
' > $RELEASEDIR/etc/fstab
}
2006-02-03 16:43:29 +01:00
COPYITEMS="usr/bin bin usr/lib"
2005-09-24 12:30:25 +02:00
RELEASEDIR=/usr/r
RELEASEPACKAGE=${RELEASEDIR}/usr/install/packages
RELEASEPACKAGESOURCES=${RELEASEDIR}/usr/install/package-sources
2005-04-21 16:53:53 +02:00
IMAGE=cdfdimage
2005-05-03 10:54:36 +02:00
ROOTIMAGE=rootimage
CDFILES=/usr/tmp/cdreleasefiles
2005-09-11 18:36:17 +02:00
sh tell_config OS_RELEASE . OS_VERSION >/tmp/rel.$$
2005-09-12 17:44:05 +02:00
version_pretty=`sed 's/[" ]//g;/^$/d' </tmp/rel.$$`
2005-09-11 18:36:17 +02:00
version=`sed 's/[" ]//g;/^$/d' </tmp/rel.$$ | tr . _`
2006-03-24 14:48:14 +01:00
subfn="subreleaseno.$version"
if [ -f "$subfn" ]
then sub="`cat $subfn`"
else sub=0
fi
echo "`expr $sub + 1`" >$subfn
IMG_BASE=minix${version}_ide_build$sub
2005-08-10 17:14:02 +02:00
BS=4096
HDEMU=0
COPY=0
CVSTAG=HEAD
while getopts "chu?" c
do
case "$c" in
\?)
echo "Usage: $0 [-c] [-h] [-r <tag>] [-u]" >&2
exit 1
;;
h)
2005-09-01 17:26:12 +02:00
echo " * Making HD image"
2006-03-24 14:48:14 +01:00
IMG_BASE=minix${version}_bios_build$sub
HDEMU=1
;;
c)
2005-09-01 17:26:12 +02:00
echo " * Copying, not CVS"
COPY=1
;;
r)
CVSTAG=$OPTARG
;;
u)
echo " * Making live USB-stick image"
2006-03-24 14:48:14 +01:00
IMG_BASE=minix${version}_usb_build$sub
HDEMU=1
USB=1
;;
esac
done
if [ "$USB" -ne 0 ]; then
IMG=${IMG_BASE}.img
else
IMG=${IMG_BASE}.iso
fi
IMGBZ=${IMG}.bz2
echo "Making $IMGBZ"
2006-03-16 13:57:11 +01:00
USRMB=200
USRBLOCKS="`expr $USRMB \* 1024 \* 1024 / $BS`"
USRSECTS="`expr $USRMB \* 1024 \* 2`"
2005-09-11 22:51:07 +02:00
ROOTKB=1400
ROOTSECTS="`expr $ROOTKB \* 2`"
ROOTBLOCKS="`expr $ROOTKB \* 1024 / $BS`"
if [ "$COPY" -ne 1 ]
then
echo "Note: this script wants to do cvs operations, so it's necessary"
echo "to have \$CVSROOT set and cvs login done."
echo ""
fi
TD1=.td1
TD2=.td2
2006-02-15 12:05:47 +01:00
TD3=.td3
if [ -f $TD1 ]
then TMPDISK="`cat $TD1`"
echo " * Warning: I'm going to overwrite $TMPDISK!"
else
echo "Temporary (sub)partition to use to make the /usr FS image? "
echo "I need $USRMB MB. It will be mkfsed!"
echo -n "Device: /dev/"
read dev || exit 1
TMPDISK=/dev/$dev
fi
2005-04-21 16:53:53 +02:00
if [ -b $TMPDISK ]
then :
else echo "$TMPDISK is not a block device.."
exit 1
fi
echo $TMPDISK >$TD1
if [ -f $TD2 ]
then TMPDISK2="`cat $TD2`"
echo " * Warning: I'm going to overwrite $TMPDISK2!"
else
echo "Temporary (sub)partition to use for /tmp? "
echo "It will be mkfsed!"
echo -n "Device: /dev/"
read dev || exit 1
TMPDISK2=/dev/$dev
fi
if [ -b $TMPDISK2 ]
then :
else echo "$TMPDISK2 is not a block device.."
exit 1
fi
echo $TMPDISK2 >$TD2
2006-02-15 12:05:47 +01:00
if [ -f $TD3 ]
then TMPDISK3="`cat $TD3`"
echo " * Warning: I'm going to overwrite $TMPDISK3!"
else
echo "It has to be at least $ROOTKB KB."
echo ""
echo "Temporary (sub)partition to use to make the root FS image? "
echo "It will be mkfsed!"
echo -n "Device: /dev/"
read dev || exit 1
TMPDISK3=/dev/$dev
fi
if [ -b $TMPDISK3 ]
then :
else echo "$TMPDISK3 is not a block device.."
exit 1
fi
echo $TMPDISK3 >$TD3
2005-04-21 16:53:53 +02:00
umount $TMPDISK
umount $TMPDISK2
2006-02-15 12:05:47 +01:00
umount $TMPDISK3
2005-04-21 16:53:53 +02:00
2006-02-15 12:05:47 +01:00
if [ $TMPDISK = $TMPDISK2 -o $TMPDISK = $TMPDISK3 -o $TMPDISK2 = $TMPDISK3 ]
then
echo "Temporary devices can't be equal."
exit
fi
echo " * Ready to go, press RETURN if you're sure.."
read xyzzy
echo " * Cleanup old files"
rm -rf $RELEASEDIR $IMG $IMAGE $ROOTIMAGE $IMGBZ $CDFILES image*
mkdir -p $CDFILES || exit
2005-04-21 16:53:53 +02:00
mkdir -p $RELEASEDIR
2006-02-15 12:05:47 +01:00
mkfs -B $BS -b $ROOTBLOCKS $TMPDISK3 || exit
mkfs $TMPDISK2 || exit
2006-02-15 12:05:47 +01:00
echo " * mounting $TMPDISK3 as $RELEASEDIR"
mount $TMPDISK3 $RELEASEDIR || exit
mkdir -m 755 $RELEASEDIR/usr
mkdir -m 1777 $RELEASEDIR/tmp
mount $TMPDISK2 $RELEASEDIR/tmp
2005-04-21 16:53:53 +02:00
2005-08-12 14:34:56 +02:00
mkfs -B $BS -b $USRBLOCKS $TMPDISK || exit
echo " * Mounting $TMPDISK as $RELEASEDIR/usr"
2005-04-21 16:53:53 +02:00
mount $TMPDISK $RELEASEDIR/usr || exit
mkdir -p $RELEASEDIR/tmp
mkdir -p $RELEASEDIR/usr/tmp
mkdir -p $RELEASEPACKAGE
mkdir -p $RELEASEPACKAGESOURCES
echo " * Transfering $COPYITEMS to $RELEASEDIR"
( cd / && tar cf - $COPYITEMS ) | ( cd $RELEASEDIR && tar xf - ) || exit 1
if [ -d $PACKAGEDIR -a -d $PACKAGESOURCEDIR ]
then echo " * Indexing packages"
2006-03-26 20:01:39 +02:00
bintotal=0
( cd $PACKAGEDIR
2006-03-22 17:43:12 +01:00
for p in *.tar.bz2
2006-03-26 20:01:39 +02:00
do echo $p >&2
p="`echo $p | sed 's/.tar.bz2//'`"
2006-03-26 18:00:25 +02:00
descr="../$p/.descr"
if [ -f "$descr" ]
2006-03-26 17:51:34 +02:00
then echo "$p|`cat $descr`"
fi
done >List
)
2006-03-26 20:01:39 +02:00
for d in $PACKAGEDIR $PACKAGESOURCEDIR
do echo Counting size of $d
f=$d/SizeMB
if [ ! -f $f ]
then
b="`bzip2 -dc $d/*.bz2 | wc -c`"
echo "`expr 1 + $b / 1024 / 1024`" >$f
fi
echo "`cat $f` MB."
done
echo " * Transfering $PACKAGEDIR to $RELEASEPACKAGE"
cp $PACKAGEDIR/* $RELEASEPACKAGE/
echo " * Transfering $PACKAGESOURCEDIR to $RELEASEPACKAGESOURCES"
cp $PACKAGESOURCEDIR/* $RELEASEPACKAGESOURCES/
2006-03-26 20:01:39 +02:00
fi
# Make sure compilers and libraries are bin-owned
chown -R bin $RELEASEDIR/usr/lib
chmod -R u+w $RELEASEDIR/usr/lib
if [ "$COPY" -ne 1 ]
then
echo " * Doing new cvs export"
( cd $RELEASEDIR/usr && mkdir src && cvs export -r$CVSTAG src )
else
( cd .. && make depend && make clean )
srcdir=/usr/src
( cd $srcdir && tar cf - . ) | ( cd $RELEASEDIR/usr && mkdir src && cd src && tar xf - )
2005-09-01 17:26:12 +02:00
fi
echo " * Fixups for owners and modes of dirs and files"
2006-02-03 16:43:29 +01:00
chown -R bin $RELEASEDIR/usr/src
chmod -R u+w $RELEASEDIR/usr/src
find $RELEASEDIR/usr/src -type d | xargs chmod 755
find $RELEASEDIR/usr/src -type f | xargs chmod 644
find $RELEASEDIR/usr/src -name configure | xargs chmod 755
find $RELEASEDIR/usr/src/commands -name build | xargs chmod 755
# Bug tracking system not for on cd
rm -rf $RELEASEDIR/usr/src/doc/bugs
# Make sure the CD knows it's a CD
date >$RELEASEDIR/CD
echo " * Chroot build"
chroot $RELEASEDIR "/bin/sh -x /usr/src/tools/chrootmake.sh" || exit 1
echo " * Chroot build done"
# The build process leaves some file in src as root.
chown -R bin $RELEASEDIR/usr/src*
cp issue.install $RELEASEDIR/etc/issue
if [ "$USB" -ne 0 ]
then
usb_root_changes
elif [ "$HDEMU" -ne 0 ]
then
hdemu_root_changes
fi
echo "Temporary filesystems still mounted. Make changes, or press RETURN"
echo -n "to continue making the image.."
read xyzzy
2005-09-12 17:44:05 +02:00
echo $version_pretty >$RELEASEDIR/etc/version
2005-09-09 18:05:23 +02:00
echo " * Counting files"
2005-09-12 17:44:05 +02:00
df $TMPDISK | tail -1 | awk '{ print $4 }' >$RELEASEDIR/.usrkb
du -s $RELEASEDIR/usr/src.* | awk '{ t += $1 } END { print t }' >$RELEASEDIR/.extrasrckb
( for d in $RELEASEDIR/usr/src.*; do find $d; done) | wc -l >$RELEASEDIR/.extrasrcfiles
2005-09-09 18:05:23 +02:00
find $RELEASEDIR/usr | wc -l >$RELEASEDIR/.usrfiles
find $RELEASEDIR -xdev | wc -l >$RELEASEDIR/.rootfiles
echo " * Zeroing remainder of temporary areas"
df $TMPDISK
2006-02-15 12:05:47 +01:00
df $TMPDISK3
cp /dev/zero $RELEASEDIR/usr/.x
rm $RELEASEDIR/usr/.x
cp /dev/zero $RELEASEDIR/.x
rm $RELEASEDIR/.x
2005-04-21 16:53:53 +02:00
umount $TMPDISK || exit
2005-08-30 19:40:08 +02:00
umount $TMPDISK2 || exit
2006-02-15 12:05:47 +01:00
umount $TMPDISK3 || exit
2005-04-21 16:53:53 +02:00
(cd ../boot && make)
(cd .. && make depend)
make clean
2005-04-21 16:53:53 +02:00
make image || exit 1
2005-08-29 21:59:58 +02:00
cp image image_big
make clean
make image_small || exit 1
2006-02-15 12:05:47 +01:00
dd if=$TMPDISK3 of=$ROOTIMAGE bs=$BS count=$ROOTBLOCKS
2005-08-29 21:59:58 +02:00
# Prepare image and image_small for cdfdboot
cp image_big image
2006-02-15 12:05:47 +01:00
sh mkboot cdfdboot $TMPDISK3
2005-08-26 10:57:58 +02:00
cp $IMAGE $CDFILES/bootflop.img
cp release/cd/* $CDFILES
2006-03-19 21:57:22 +01:00
echo "This is Minix version $version_pretty prepared `date`." >$CDFILES/VERSION.TXT
h_opt=
bootimage=$IMAGE
if [ "$HDEMU" -ne 0 ]; then
make_hdimage
h_opt='-h'
bootimage=hdimage
fi
if [ "$USB" -ne 0 ]; then
mv $bootimage $IMG
else
writeisofs -l MINIX -b $bootimage $h_opt $CDFILES $IMG || exit 1
if [ "$HDEMU" -eq 0 ]
then
echo "Appending Minix root and usr filesystem"
# Pad ISO out to cylinder boundary
isobytes=`stat -size $IMG`
isosects=`expr $isobytes / 512`
isopad=`expr $secs - '(' $isosects % $secs ')'`
dd if=/dev/zero count=$isopad >>$IMG
# number of sectors
isosects=`expr $isosects + $isopad`
( cat $IMG $ROOTIMAGE ;
dd if=$TMPDISK bs=$BS count=$USRBLOCKS ) >m
mv m $IMG
# Make CD partition table
installboot -m $IMG /usr/mdec/masterboot
# Make sure there is no hole..! Otherwise the ISO format is
# unreadable.
partition -m $IMG 0 81:$isosects 81:$ROOTSECTS 81:$USRSECTS
fi
fi
echo " * bzipping $IMG"
bzip2 $IMG
ls -al $IMGBZ