Re-add code to generate install.bat on x86 machines. Thanks to Samuel Thibault
for the patch. Closes: #518807
This commit is contained in:
parent
699e6b7e62
commit
d5479c0814
|
@ -23,6 +23,8 @@ debian-cd (3.1.2) UNRELEASED; urgency=low
|
|||
* tools/imagesums: Add support for more checksum types. genisoimage
|
||||
will shortly start generating sha256 and sha512 sums too.
|
||||
* Recognise and ignore Breaks: lines. Closes: #523444
|
||||
* Re-add code to generate install.bat on x86 machines. Thanks to Samuel
|
||||
Thibault for the patch. Closes: #518807
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Sun, 15 Feb 2009 23:41:25 +0100
|
||||
|
||||
|
|
|
@ -142,6 +142,9 @@ extra_image () {
|
|||
else
|
||||
wget "$DI_WWW_HOME/cdrom/$image" -O $CDDIR/$INSTALLDIR/"$image"
|
||||
fi
|
||||
kernel_param=
|
||||
[ "$dir" = gtk ] && kernel_param="video=vesa:ywrap,mtrr vga=788"
|
||||
echo "\\tools\\loadlin.exe \\$INSTALLDIR\\vmlinuz initrd=initrd.gz $kernel_param" | todos > $CDDIR/$INSTALLDIR/$dir/install.bat
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -169,6 +172,7 @@ if [ "$THISTYPE" = "isolinux" ]; then
|
|||
mkdir -p $CDDIR/$INSTALLDIR
|
||||
cp -lf cdrom/vmlinuz $CDDIR/$INSTALLDIR/
|
||||
cp -lf cdrom/initrd.gz $CDDIR/$INSTALLDIR/
|
||||
echo "\\tools\\loadlin.exe vmlinuz initrd=initrd.gz" | todos > $CDDIR/$INSTALLDIR/install.bat
|
||||
|
||||
mkdir -p $CDDIR/../syslinux
|
||||
SYSLINUXDEB=`$BASEDIR/tools/which_deb $MIRROR $DI_CODENAME syslinux`
|
||||
|
|
Loading…
Reference in New Issue