Yet more readme and install script updates
This commit is contained in:
parent
4e38cf12b3
commit
4ede86f51b
2 changed files with 13 additions and 3 deletions
|
@ -4,7 +4,7 @@ COPYITEMS="usr/src usr/bin bin usr/lib"
|
|||
RELEASEDIR=/usr/r/release
|
||||
IMAGE=cdfdimage
|
||||
ROOTIMAGE=rootimage
|
||||
CDFILES=/tmp/cdreleasefiles
|
||||
CDFILES=/usr/tmp/cdreleasefiles
|
||||
ISO=minix.iso
|
||||
ISOGZ=minix.iso.gz
|
||||
RAM=/dev/ram
|
||||
|
@ -32,8 +32,9 @@ umount $TMPDISK
|
|||
umount $RAM
|
||||
|
||||
( cd .. && make clean )
|
||||
echo " * Cleanup old files"
|
||||
rm -rf $RELEASEDIR $ISO $IMAGE $ROOTIMAGE $ISOGZ $CDFILES
|
||||
mkdir $CDFILES || exit
|
||||
mkdir -p $CDFILES || exit
|
||||
mkdir -p $RELEASEDIR
|
||||
mkfs -b 1440 -B 1024 $RAM || exit
|
||||
echo " * mounting $RAM as $RELEASEDIR"
|
||||
|
@ -51,6 +52,8 @@ echo " * Transfering $COPYITEMS to $RELEASEDIR"
|
|||
chown -R bin $RELEASEDIR/usr/src
|
||||
date >$RELEASEDIR/CD
|
||||
( cd $RELEASEDIR && find . -name CVS | xargs rm -rf )
|
||||
echo " * Making source .tgz for on ISO filesystem"
|
||||
( cd $RELEASEDIR/usr/src && tar cf - . | gzip > $CDFILES/MINIXSRC.TGZ )
|
||||
echo " * Chroot build"
|
||||
chroot $RELEASEDIR '/bin/sh -x /usr/src/tools/chrootmake.sh' || exit 1
|
||||
echo " * Chroot build done"
|
||||
|
|
|
@ -3,7 +3,14 @@ Welcome to MINIX 3 !
|
|||
|
||||
This CD is intended to be booted. It contains a MINIX system that you
|
||||
can run (a so-called "Live CD"). You can also install MINIX to your
|
||||
harddisk with it. It's contents aren't visible here though.
|
||||
harddisk with it. It's contents aren't visible here.
|
||||
|
||||
In this directory:
|
||||
. README.TXT - thisfile
|
||||
. PRESZ134.ZIP - a utility to resize your current partition.
|
||||
This may be convenient to make space for MINIX.
|
||||
. MINIXSRC.TGZ - an archive all minix sources.
|
||||
It's a gzip-compressed .tar file. E.g. WinZip can read it.
|
||||
|
||||
For more information and news that became available after this release,
|
||||
please visit:
|
||||
|
|
Loading…
Reference in a new issue