Reworked boot-ia64 to use hardlinks and so 1_NONUS.raw is built properly.

This commit is contained in:
Richard Hirst 2002-04-23 14:50:29 +00:00
parent a10af8aa52
commit 63f0213511
2 changed files with 7 additions and 6 deletions

1
debian/changelog vendored
View File

@ -43,6 +43,7 @@ debian-cd (2.2.14) unstable; urgency=low
* added ramdisk_size=8192 to palo commandline for hppa
* Added empty boot-mips & boot mipsel.
* Updated boot-alpha to conditionalize the inclusion of APB.
* Reworked boot-ia64 to use hardlinks and so 1_NONUS.raw is built properly.
-- Raphael Hertzog <hertzog@debian.org> Mon, 15 Apr 2002 13:16:25 +0200

View File

@ -24,14 +24,14 @@ fi
install_languages $CDDIR
mkdir -p boot$N/boot
cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/images-1.44/rescue.bin boot$N/boot/
cp -f $CDDIR/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
# populate the install directory as well, with symlinks to save space
# populate the install directory as well, with links to save space
# rescue.bin is 10MB on ia64
(cd CD1/install; \
ln -s ../dists/$CODENAME/main/disks-$ARCH/current/images-1.44/rescue.bin . ; \
ln -s ../dists/$CODENAME/main/disks-$ARCH/current/linux.bin . ; \
ln -s ../dists/$CODENAME/main/disks-$ARCH/current/root.bin . )
(cd $CDDIR/install; \
cp -lf ../dists/$CODENAME/main/disks-$ARCH/current/images-1.44/rescue.bin . ; \
cp -lf ../dists/$CODENAME/main/disks-$ARCH/current/linux.bin . ; \
cp -lf ../dists/$CODENAME/main/disks-$ARCH/current/root.bin . )
# th,th, thats all