diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2009-03-27 15:41:58 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2009-03-27 15:41:58 +0000 |
commit | fa2bca9a3f697513fde295cb5139d7c41f92cb54 (patch) | |
tree | d0c7b4f5239d31d0db37e6030a257eef128b5a5a /scripts | |
parent | fac41326221ea4d00c50d07e1af62c29bd3463cb (diff) | |
download | bootsplash-fa2bca9a3f697513fde295cb5139d7c41f92cb54.tar bootsplash-fa2bca9a3f697513fde295cb5139d7c41f92cb54.tar.gz bootsplash-fa2bca9a3f697513fde295cb5139d7c41f92cb54.tar.bz2 bootsplash-fa2bca9a3f697513fde295cb5139d7c41f92cb54.tar.xz bootsplash-fa2bca9a3f697513fde295cb5139d7c41f92cb54.zip |
- Release 3.2.22 :
- Redirect splashy_update repaint error message to null, since it is used to ping splashy
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/splash.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/splash.sh b/scripts/splash.sh index 5ac549d..64af011 100644 --- a/scripts/splash.sh +++ b/scripts/splash.sh @@ -147,7 +147,7 @@ num=$(( $nbservices + 2 )) # Initialize and print text string.. if [ "$progress" == 1 -o "$1" == "start" -o "$1" == "suspend" -o -f /dev/.splashy_shutdown ]; then - [ ! -f /dev/.splashy_shutdown ] || /sbin/splashy_update repaint || exit 0 + [ ! -f /dev/.splashy_shutdown ] || /sbin/splashy_update repaint 2>/dev/null|| exit 0 # depending on the languages, we need to use a font different of # the default one; in such case the font must be accessible, or # the translation is disabled. @@ -283,7 +283,7 @@ if [ "$progress" == 1 -o "$1" == "start" -o "$1" == "suspend" -o -f /dev/.splash if [ "$text_x" != "" -a "$text_y" != "" \ -a "$text_color" != "" -a "$text_size" != "" -a "$_silent" == "yes" -o "$_shutdown" == "yes" -o "$1" == "suspend" ]; then gprintf "Press Esc for verbose mode." - splashy_is_running && /sbin/splashy_update repaint || exit 0 + splashy_is_running && /sbin/splashy_update repaint 2>/dev/null || exit 0 fbtruetype.static -x $text_x -y $text_y -t $text_color -s $text_size \ $custom_font "$_boot $TEXT" rm -f /dev/.splashy_shutdown |