# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.562 2006/02/08 18:59:12 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.563 2006/02/08 21:48:10 rocket Exp $
+
+ 08 Feb 2006; Eric Edgar <rocket@gentoo.org>
+ targets/support/bootloader-setup.sh:
+ add additional console less entry when consoles are chosen for ppc64
08 Feb 2006; Eric Edgar <rocket@gentoo.org>
modules/generic_stage_target.py:
#!/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.30 2006/02/02 15:17:03 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/support/bootloader-setup.sh,v 1.31 2006/02/08 21:48:10 rocket Exp $
. ${clst_sharedir}/targets/support/functions.sh
. ${clst_sharedir}/targets/support/filesystem-functions.sh
IBM_YABOOT="true"
if [ -n "${clst_kernel_console}" ]
then
+ echo >> ${etc_icfg}
+ echo "image=/boot/${x}" >> ${etc_icfg}
+
+ if [ -e "$1/boot/${x}.igz" ]
+ then
+ echo "initrd=/boot/${x}.igz" >> ${etc_icfg}
+ fi
+
+ echo "label=${x}" >> ${etc_icfg}
+ echo "read-write" >> ${icfg}
+ if [ "${clst_livecd_splash_type}" == "gensplash" -a -n "${clst_livecd_splash_theme}" ]
+ then
+ echo "append=\"${default_append_line} splash=silent,theme:${clst_livecd_splash_theme}\"" >> ${etc_icfg}
+ else
+ echo "append=\"${default_append_line} splash=silent\"" >> ${etc_icfg}
+ fi
+
for y in ${clst_kernel_console}
do
echo ${y}
else
if [ -n "${clst_kernel_console}" ]
then
+ echo >> ${icfg}
+ echo "image=/boot/${x}" >> ${icfg}
+
+ if [ -e "$1/boot/${x}.igz" ]
+ then
+ echo "initrd=/boot/${x}.igz" >> ${icfg}
+ fi
+
+ echo "label=${x}" >> ${icfg}
+ echo "read-write" >> ${icfg}
+ if [ "${clst_livecd_splash_type}" == "gensplash" -a -n "${clst_livecd_splash_theme}" ]
+ then
+ echo "append=\"${default_append_line} splash=silent,theme:${clst_livecd_splash_theme}\"" >> ${icfg}
+ else
+ echo "append=\"${default_append_line} splash=silent\"" >> ${icfg}
+ fi
+
for y in ${clst_kernel_console}
do
echo >> ${icfg}