Author: pebender
Date: Mon May 18 20:08:37 2009
New Revision: 4785
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
Log:
- Changed splash screen so that it starts on an otherwise empty screen.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Mon May 18
20:08:37 2009
@@ -40,6 +40,7 @@
init/modules_automatic.pm and determining
MM_HARDWARE_KERNEL_MODULES.
- Added timeout on waiting for /minimyth for local boot so that users
can
telnet in and debug when it occurs.
+ - Changed splash screen so that it starts on an otherwise empty screen.
Improved MythV slave backend support.
- Added support for DVB USB devices that make use of the
dvb-usb-dib0700
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums (original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums Mon May 18
20:08:37 2009
@@ -1 +1 @@
-bc458e44f2ed3625d606e66872797c68 download/MiniMyth.pm
+980764a623d6ba2b2d2dcf3f0ea98fdb download/MiniMyth.pm
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
(original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm Mon May
18 20:08:37 2009
@@ -555,10 +555,11 @@
default { $message = '' ; }
}
$self->message_log('info', qq(starting splash screen));
- system(qq(/usr/bin/chvt 1));
File::Path::mkpath($var_splash_fifo_dir, {mode => 0755});
$self->splash_command('exit');
system(qq($var_splash_command --theme="minimyth" --progress="0"
--mesg="$message" --type="$type"));
+ $self->splash_command('set tty silent 3');
+ $self->splash_command('set tty verbose 1');
$self->splash_command('set mode silent');
$self->splash_command('repaint');
}
@@ -574,7 +575,7 @@
$self->message_log('info', qq(stopping splash screen));
- $self->splash_command('exit');
+ $self->splash_command('exit staysilent');
return 1;
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---