diff --git a/plymouth.changes b/plymouth.changes index 7e0950d..9849bd7 100644 --- a/plymouth.changes +++ b/plymouth.changes @@ -3,6 +3,8 @@ Mon May 21 11:25:36 UTC 2012 - tittiatcoke@gmail.com - Update the installation/update from plymouth in a way that the initrd file for the current running kernel is updated. +- Corrected a typo with regards to the location of a pango module + when setting up the initrd. ------------------------------------------------------------------- Tue May 15 09:09:23 UTC 2012 - tittiatcoke@gmail.com diff --git a/suse-initrd-support b/suse-initrd-support index ad20771..841a341 100644 --- a/suse-initrd-support +++ b/suse-initrd-support @@ -33,7 +33,7 @@ +plymouth show-splash --- /dev/null +++ new/scripts/setup-plymouth.sh.in 2012-04-03 11:11:44.656337240 +0200 -@@ -0,0 +1,59 @@ +@@ -0,0 +1,61 @@ +#!/bin/bash +# +#%stage: setup @@ -63,8 +63,7 @@ + /usr/share/fonts/uni/unifont.pcf.gz \ + /etc/fonts/fonts.conf \ + /etc/fonts/conf.d/69-unifont.conf \ -+ /etc/fonts/conf.avail/69-unifont.conf \ -+ /usr/lib/pango/1.6.0/modules/pango-basic-fc.so " ++ /etc/fonts/conf.avail/69-unifont.conf " + +PLUGINS="${PLUGIN_PATH}/details.so \ + ${PLUGIN_PATH}/text.so \ @@ -87,11 +86,14 @@ + then + _pangodir=`pango-querymodules-64 | grep ModulesPath | awk '{print $4}'` + _pangomod="/etc/pango/pango64.modules" ++ pango-basic-fc="/usr/lib64/pango/1.6.0/modules/pango-basic-fc.so" + else + _pangodir=`pango-querymodules | grep ModulesPath | awk '{print $4}'` + _pangomod="/etc/pango/pango.modules" ++ pango-basic-fc="/usr/lib/pango/1.6.0/modules/pango-basic-fc.so" +fi +install -D ${_pangomod} $tmp_mnt/${_pangomod} ++install -D ${pango-basic-fc} $tmp_mnt/${pango-basic-fc} +mkdir -p $tmp_mnt/var/cache/fontconfig --- plymouth-0.8.4/scripts/plymouth-update-initrd 2008-12-19 05:36:55.000000000 +0100 +++ new/scripts/plymouth-update-initrd 2012-05-15 10:59:08.158501726 +0200