Add support for ia64. Closes #110553.

This commit is contained in:
Richard Hirst 2001-08-29 17:18:31 +00:00
parent bd78332c87
commit 899ca54fb1
3 changed files with 47 additions and 0 deletions

1
debian/changelog vendored
View File

@ -2,6 +2,7 @@ debian-cd (2.2.8) unstable; urgency=low
* UNRELEASED.
* Be less restrictive on non-US section name (ie accepts non-us too).
* Add support for ia64 (Richard Hirst). Closes #110553.
-- Raphael Hertzog <hertzog@debian.org> Sun, 19 Aug 2001 13:42:27 +0200

View File

@ -83,6 +83,12 @@ setserial
syslinux
#endif
#ifdef ARCH_ia64
elilo
efibootmgr
dosfstools
#endif
#ifdef ARCH_m68k
atari-bootstrap
atari-fdisk

40
tools/boot/woody/boot-ia64 Executable file
View File

@ -0,0 +1,40 @@
#!/bin/bash
#
# boot-ia64
#
# $1 is the CD number
# $2 is the temporary CD build dir
set -e
N=$1
CDDIR=$2
BOOTDIR=
cd $CDDIR/..
#
# This script is called with $1 (now $N) as the CD to
# make bootable. N may be in the form "n" or "n_NONUS"
# There may be more than 4 disks...support extras.
# Put boot images on CD1...CD(N)
#
:> $N.mkisofs_opts
mkdir -p boot$N/boot
cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/images-1.44/rescue.bin boot$N/boot/
echo -n "-no-emul-boot -J -b boot/rescue.bin -c boot/boot.catalog boot$N" > $N.mkisofs_opts
# Only disk one gets the extra files installed
#
if [ $N == "1" ] ; then
# populate the install directory as well
(cd $CDDIR/dists/$CODENAME/main/disks-$ARCH/current/ ; \
cp -f images-1.44/resc*.bin $CDDIR/install ; \
cp -f linux $CDDIR/install/linux ; \
cp -f root.bin $CDDIR/install )
fi
# th,th, thats all