Updates for 2.2.3 bootdisks
This commit is contained in:
parent
9c1d1aa4b5
commit
86a3c7ee39
|
@ -1,3 +1,16 @@
|
||||||
|
|
||||||
|
debian-cd (2.1.92) unstable; urgency=low
|
||||||
|
|
||||||
|
* Changes to installtools.sh, change to check for documentation
|
||||||
|
directory name by $ARCH.
|
||||||
|
* Changes to potato/boot-i386 for support of the 2.2.3 bootdisks.
|
||||||
|
* In Makefile, if there are multiple versions of the
|
||||||
|
bootdisks in the source tree, the section "boot:" seems to get
|
||||||
|
confuzed. Not fixed. Temporary solution, move old i386 boot
|
||||||
|
disks out of the source archive.
|
||||||
|
|
||||||
|
-- Jim Westveer <jwest@netnw.com> Mon, 27 Dec 1999 08:00:00 -0700
|
||||||
|
|
||||||
debian-cd (2.1.91) unstable; urgency=low
|
debian-cd (2.1.91) unstable; urgency=low
|
||||||
|
|
||||||
* Splitted the boot scripts for slink & potato. Updated the Makefile
|
* Splitted the boot scripts for slink & potato. Updated the Makefile
|
||||||
|
|
|
@ -40,15 +40,19 @@ if [ $N != 1 ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Now we do disk 1 ...
|
# Now we do disk 1 ...
|
||||||
|
# couple of changes for 2.2.x bootdisks 27-dec-99 -- jwest
|
||||||
|
|
||||||
echo -n "-J -b boot/resc2880.bin -c boot/boot.catalog boot1" > 1.mkisofs_opts
|
echo -n "-J -b boot/rescue.bin -c boot/boot.catalog boot1" > 1.mkisofs_opts
|
||||||
|
|
||||||
(cd $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/ ; \
|
(cd $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/ ; \
|
||||||
cp resc*.bin linux root.bin $CDDIR/install )
|
cp disks-2.88/resc*.bin $CDDIR/install ; \
|
||||||
|
cp linux $CDDIR/install ; \
|
||||||
|
cp disks-1.44/root.bin $CDDIR/install )
|
||||||
|
|
||||||
mkdir -p boot1/boot
|
mkdir -p boot1/boot
|
||||||
|
|
||||||
cp $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/resc2880.bin boot1/boot
|
#cp $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/resc2880.bin boot1/boot
|
||||||
|
cp $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/disks-2.88/rescue.bin boot1/boot
|
||||||
|
|
||||||
|
|
||||||
#Extracting tools for disc 1
|
#Extracting tools for disc 1
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Install files in /install and some in /doc
|
# Install files in /install and some in /doc
|
||||||
|
# 26-dec-99 changes for i386 (2.2.x) bootdisks --jwest
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
@ -8,6 +9,8 @@ BDIR=$TDIR/$CODENAME-$ARCH
|
||||||
|
|
||||||
if [ "$ARCH" = "powerpc" ]; then
|
if [ "$ARCH" = "powerpc" ]; then
|
||||||
DOCDIR="docs"
|
DOCDIR="docs"
|
||||||
|
elif [ "$ARCH" = "i386" ] ; then
|
||||||
|
DOCDIR="doc"
|
||||||
else
|
else
|
||||||
DOCDIR="documentation"
|
DOCDIR="documentation"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue