# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.272 2005/06/14 19:48:11 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.273 2005/06/16 13:40:01 wolf31o2 Exp $
+
+ 16 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+ targets/support/bootloader-setup.sh, targets/support/create-iso.sh:
+ Fixing some bootloader isolinux/boot stuff for x86/amd64.
14 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org>
targets/support/chroot-functions.sh:
-# Copyright 1999-2004 Gentoo Foundation
+#!/bin/bash
+# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/support/bootloader-setup.sh,v 1.4 2005/04/29 14:40:25 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/support/bootloader-setup.sh,v 1.5 2005/06/16 13:40:01 wolf31o2 Exp $
. ${clst_sharedir}/targets/support/functions.sh
. ${clst_sharedir}/targets/support/filesystem-functions.sh
echo "image=\"cat /boot/help.msg\"" >> ${scfg}
echo -e "label=\"help\"" >> ${scfg}
;;
- x86)
+ x86|amd64)
if [ -e $1/boot/isolinux.bin ]
then
# the rest of this function sets up the config file for isolinux
# Setup help message
hmsg=${clst_sharedir}/livecd/files/x86-help.msg
- hmsg_txt=$(cat ${hmsg})
+ hmsg_txt="$(cat ${hmsg})"
echo >> ${icfg}
echo "title help" >> ${icfg}
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/support/create-iso.sh,v 1.4 2005/06/01 13:41:12 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/support/create-iso.sh,v 1.5 2005/06/16 13:40:01 wolf31o2 Exp $
. ${clst_sharedir}/targets/support/functions.sh
. ${clst_sharedir}/targets/support/filesystem-functions.sh
#. ${clst_sharedir}/targets/${clst_target}/${clst_mainarch}-archscript.sh
case ${clst_fstype} in
zisofs)
- mkisofs -J -R -l -V "${clst_iso_volume_id}" -o ${1} -b boot/isolinux.bin -c boot/boot.cat -no-emul-boot \
+ mkisofs -J -R -l -V "${clst_iso_volume_id}" -o ${1} -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot \
-boot-load-size 4 -boot-info-table -z ${clst_target_path} || die "Cannot make ISO image"
;;
*)