* Last updates for the boot on mips, mipsel, alpha arches.

This commit is contained in:
Raphaël Hertzog 2002-04-22 21:01:20 +00:00
parent 8675da45e6
commit 75a0846932
4 changed files with 28 additions and 2 deletions

2
debian/changelog vendored
View File

@ -41,6 +41,8 @@ debian-cd (2.2.14) unstable; urgency=low
* Dropped old el-torito multiboot support. Documented the choice of
isolinux in README.devel.
* added ramdisk_size=8192 to palo commandline for hppa
* Added empty boot-mips & boot mipsel.
* Updated boot-alpha to conditionalize the inclusion of APB.
-- Raphael Hertzog <hertzog@debian.org> Mon, 15 Apr 2002 13:16:25 +0200

View File

@ -45,8 +45,10 @@ cp -f $(ls $FLOPPIES/MILO/milo_*.bin | sed 's,\(.*\)milo_\(.*\).bin,\1\2,') \
boot1/milo/
# Now the APB stuff
mkdir -p boot1/apb
cp -f $FLOPPIES/APB/* boot1/apb/
if [ -d "$FLOPPIES/APB" ]; then
mkdir -p boot1/apb
cp -f $FLOPPIES/APB/* boot1/apb/
fi
# Prepare aboot stuff. The bootloader itself will be installed in
# boot-alpha-post via isomarkboot.

11
tools/boot/woody/boot-mips Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# Mips doesn't have bootable CD support yet.
#
# This file must however exist so that debian-cd doesn't complain about
# lack of "bootable" support.
#
# -- Raphaël Hertzog
exit 0

11
tools/boot/woody/boot-mipsel Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# Mipsel doesn't have bootable CD support yet.
#
# This file must however exist so that debian-cd doesn't complain about
# lack of "bootable" support.
#
# -- Raphaël Hertzog
exit 0