https://bugzilla.novell.com/show_bug.cgi?id=220739 ------- Comment #2 from jplack@novell.com 2006-11-14 05:27 MST ------- proposed fix: Index: lilo/lilo-pmac.lib =================================================================== --- lilo/lilo-pmac.lib (revision 893) +++ lilo/lilo-pmac.lib (working copy) @@ -136,3 +136,3 @@ function running_on_pmac_new () { if [ "${CONFIG_IMAGE_PATH[$i]}" = "copy" ] ; then - echo "image = `basename ${CONFIG_IMAGE_FILE[$i]}`" + echo "image = "$(printf "vmlinux.%03d", $i) else @@ -147,3 +147,3 @@ function running_on_pmac_new () { if [ "${CONFIG_IMAGE_INITRDPATH[$i]}" = "copy" ] ; then - echo " initrd = `basename ${CONFIG_IMAGE_INITRD[$i]}`" + echo " initrd = $(printf "initrd.%03d", $i)" else @@ -305,3 +305,3 @@ function running_on_pmac_new () { if [ "${CONFIG_IMAGE_PATH[$i]}" = "copy" ] ; then - hcopy ${CONFIG_IMAGE_FILE[$i]} :`basename ${CONFIG_IMAGE_FILE[$i]}` + hcopy ${CONFIG_IMAGE_FILE[$i]} :$(printf "vmlinux.%03d", $i) fi @@ -309,3 +309,3 @@ function running_on_pmac_new () { if [ "${CONFIG_IMAGE_INITRDPATH[$i]}" = "copy" ] ; then - hcopy ${CONFIG_IMAGE_INITRD[$i]} :`basename ${CONFIG_IMAGE_INITRD[$i]}` + hcopy ${CONFIG_IMAGE_INITRD[$i]} :$(printf "initrd.%03d", $i) fi ) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.