initrd bootsplash fix to use "default"
authorDaniel Robbins <drobbins@gentoo.org>
Fri, 27 Feb 2004 17:06:56 +0000 (17:06 +0000)
committerDaniel Robbins <drobbins@gentoo.org>
Fri, 27 Feb 2004 17:06:56 +0000 (17:06 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/genkernel/trunk@89 67a159dc-881f-0410-a524-ba9dfbe2cb84

gen_initrd.sh

index 76913affde9d28e02ba6d9955a068b26b3205bdd..7c3df9ccfafcad97653a47af7a0771657d37ea12 100644 (file)
@@ -209,10 +209,10 @@ create_initrd() {
        if [ "${BOOTSPLASH}" -eq "1" ]
        then
                print_info 1 "initrd: copying bootsplash"
-               /sbin/splash -s -f /etc/bootsplash/gentoo/config/bootsplash-800x600.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 800x600 bootsplash"
-               /sbin/splash -s -f /etc/bootsplash/gentoo/config/bootsplash-1024x768.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 1024x768 bootsplash"
-               /sbin/splash -s -f /etc/bootsplash/gentoo/config/bootsplash-1280x1024.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 1280x1024 bootsplash"
-               /sbin/splash -s -f /etc/bootsplash/gentoo/config/bootsplash-1600x1200.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 1600x1200 bootsplash"
+               /sbin/splash -s -f /etc/bootsplash/default/config/bootsplash-800x600.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 800x600 bootsplash"
+               /sbin/splash -s -f /etc/bootsplash/default/config/bootsplash-1024x768.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 1024x768 bootsplash"
+               /sbin/splash -s -f /etc/bootsplash/default/config/bootsplash-1280x1024.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 1280x1024 bootsplash"
+               /sbin/splash -s -f /etc/bootsplash/default/config/bootsplash-1600x1200.cfg >> ${TEMP}/initrd-loop || gen_die "could not copy 1600x1200 bootsplash"
        fi
        cp ${TEMP}/initrd-loop /boot/initrd-${KV} || gen_die "could not copy initrd to boot"
 }