boot.bat not working because of missing loadlin.exe ..fixed

This commit is contained in:
Jim Westveer 2000-03-25 15:38:50 +00:00
parent 2017c75b71
commit 7c1df814f7
2 changed files with 14 additions and 5 deletions

1
debian/changelog vendored
View File

@ -5,6 +5,7 @@ debian-cd (2.2.0) frozen unstable; urgency=low
organization. --jwest
* Changes to /tools/boot/potato/boot-i386 for new bootdisks --jwest
* Added missing semi-colon in the target pi-makelist.
* /install/boot.bat not working because of missing loadlin.exe fixed
-- Raphael Hertzog <hertzog@debian.org> Mon, 13 Mar 2000 13:15:11 +0100

View File

@ -52,22 +52,30 @@ echo -n "-J -b boot/rescue.bin -c boot/boot.catalog boot1" > 1.mkisofs_opts
mkdir -p boot1/boot
## 24-Mar-2000 notes from Ben Collins on using cd as live file-system
## for 2.2.9 bootdisks jwest
# (cd $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/images-1.44/ ; \
# gzip -dc root.bin > /tmp/root.bin.uncompressed ; \
# mount -o loop /tmp/root.bin.uncompressed /mnt ; \
# touch /mnt/cdrom_image ; \
# umount /mnt ; \
# sync ; \
# gzip -c9 /tmp/root.bin.uncompressed > $CDDIR/install/root.bin ; \
# rm /tmp/root.bin.uncompressed )
## end notes
cp $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/rescue.bin boot1/boot
#Extracting tools for disc 1
mkdir -p $CDDIR/install/dosutils
cp $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/dosutils/* $CDDIR/install/dosutils/
cp $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/dosutils/* $CDDIR/install/
(echo "Tools for DOS :" ; \
echo "lodlin/ load Linux kernel from DOS" ;\
echo "rawrite2/ rawrite 2.0 : create disks from disk images (*.bin)"; \
) |todos > $CDDIR/tools/README.tools
(echo "@ echo off" ; \
echo "rem Flush any write-cached disk blocks before we leave DOS. " ; \
echo "smartdrv /c" ; \