From 899ca54fb1af317d22f70e61647aec1ae1a4d3ed Mon Sep 17 00:00:00 2001 From: Richard Hirst Date: Wed, 29 Aug 2001 17:18:31 +0000 Subject: [PATCH] Add support for ia64. Closes #110553. --- debian/changelog | 1 + tasks/base-woody | 6 ++++++ tools/boot/woody/boot-ia64 | 40 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100755 tools/boot/woody/boot-ia64 diff --git a/debian/changelog b/debian/changelog index 3fc3452e..a5012d59 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 19 Aug 2001 13:42:27 +0200 diff --git a/tasks/base-woody b/tasks/base-woody index 25e3043f..eeeaa6f7 100644 --- a/tasks/base-woody +++ b/tasks/base-woody @@ -83,6 +83,12 @@ setserial syslinux #endif +#ifdef ARCH_ia64 +elilo +efibootmgr +dosfstools +#endif + #ifdef ARCH_m68k atari-bootstrap atari-fdisk diff --git a/tools/boot/woody/boot-ia64 b/tools/boot/woody/boot-ia64 new file mode 100755 index 00000000..98e3a34d --- /dev/null +++ b/tools/boot/woody/boot-ia64 @@ -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