# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.633 2006/06/15 22:18:51 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.634 2006/06/19 19:05:02 wolf31o2 Exp $
+
+ 19 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
+ targets/support/bootloader-setup.sh:
+ Fixed a problem where we were putting the kernel name in twice and causing
+ and error when using grub as a bootloader. This is for bug #137252.
15 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org>
targets/support/bootloader-setup.sh:
#!/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.37 2006/06/15 22:18:51 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/support/bootloader-setup.sh,v 1.38 2006/06/19 19:05:02 wolf31o2 Exp $
. ${clst_sharedir}/targets/support/functions.sh
. ${clst_sharedir}/targets/support/filesystem-functions.sh
fi
echo >> ${icfg}
echo "title ${x}-${y} [ No FrameBuffer ]" >> ${icfg}
- echo "kernel ${x} /boot/${x} softlevel=${y} ${default_append_line}" >> ${icfg}
+ echo "kernel /boot/${x} softlevel=${y} ${default_append_line}" >> ${icfg}
if [ -e $1/boot/${x}.igz ]
then
echo "initrd /boot/${x}.igz" >> ${icfg}
fi
echo >> ${icfg}
echo "title ${x} [ No FrameBuffer ]" >> ${icfg}
- echo "kernel ${x} /boot/${x} ${default_append_line}" >> ${icfg}
+ echo "kernel /boot/${x} ${default_append_line}" >> ${icfg}
if [ -e $1/boot/${x}.igz ]
then
echo "initrd /boot/${x}.igz" >> ${icfg}