]> git.ipfire.org Git - thirdparty/plymouth.git/log
thirdparty/plymouth.git
16 years ago[libplybootsplash] Drop text-pulser
Ray Strode [Wed, 16 Sep 2009 21:21:33 +0000 (17:21 -0400)] 
[libplybootsplash] Drop text-pulser

It hasn't been used since we dropped the pulser plugin

16 years ago[entry] Fix up max bullet calculation
Ray Strode [Wed, 16 Sep 2009 19:03:57 +0000 (15:03 -0400)] 
[entry] Fix up max bullet calculation

Before we were counting space that could only fit a partial bullet as room
for a whole bullet.  Now we look and see if there is enough extra space for
at least half a bullet (since the code will draw half a bullet in the case
of more bullets than can fit)

16 years ago[main] rename state->console to state->kernel_console_tty
Ray Strode [Wed, 23 Sep 2009 07:24:26 +0000 (03:24 -0400)] 
[main] rename state->console to state->kernel_console_tty

The name "console" is sort of ambiguous.  It could mean:

1) the keyboard and mouse together (also known as "seat")
2) the VT console
3) /dev/console
4) where /dev/console messages should go

In this case we mean 4, so we rename it to kernel_console_tty
for clarity.

16 years ago[main] Make some callback functions static
Ray Strode [Wed, 16 Sep 2009 20:59:54 +0000 (16:59 -0400)] 
[main] Make some callback functions static

16 years ago[main] Flip debug buffer conditional check
Ray Strode [Fri, 18 Sep 2009 20:08:27 +0000 (16:08 -0400)] 
[main] Flip debug buffer conditional check

It was inverted so we were never creating a debug buffer
when plymouth:debug was put on the kernel command line.

16 years ago[progress] Stop progress at 25% if progress file is not loaded
Charlie Brej [Thu, 10 Sep 2009 19:22:11 +0000 (20:22 +0100)] 
[progress] Stop progress at 25% if progress file is not loaded

In cases where, before the file system is mounted, there is a very long pause,
the progress would continue all the way to 100% assuming a 60 second boot time.

It now stops at 25% to signal that something is wrong and moves to crawl mode
(nudging forward very very slowly).

16 years ago[daemon] fix detection of single on kernel cmdline
Frederic Crozat [Thu, 10 Sep 2009 16:34:32 +0000 (18:34 +0200)] 
[daemon] fix detection of single on kernel cmdline

16 years ago[daemon] recognize s, S, -s as single for kernel cmdline
Frederic Crozat [Thu, 10 Sep 2009 14:58:37 +0000 (16:58 +0200)] 
[daemon] recognize s, S, -s as single for kernel cmdline

16 years ago[populate-initrd] Don't require set_verbose function
Ray Strode [Thu, 10 Sep 2009 13:54:44 +0000 (09:54 -0400)] 
[populate-initrd] Don't require set_verbose function

If it's not around, define it, so we can use it without error

16 years ago[script] Example script rewritten to use the object system
Charlie Brej [Wed, 9 Sep 2009 20:27:39 +0000 (21:27 +0100)] 
[script] Example script rewritten to use the object system

16 years ago[script] Add inheritance to the language
Charlie Brej [Wed, 9 Sep 2009 19:57:19 +0000 (20:57 +0100)] 
[script] Add inheritance to the language

The inheritance works primarily on objects and functions.
Object example:
 A.v1 = 1;
 A.v2 = 2;
 B.v2 = 7;
 B.v3 = 3;
 C = A | B;

C is now equal to A with B as a base (C.v1 = 1, C.v2 = 2, C.v3 = 3).
A and B remain unchanged.

Function example:
 fib = fun (a) if (a < 2) 1; else fail;
     | fun (a) if (fibcache[a]) fibcache[a] ; else fail;
     | fun (a) fib (a - 1) + fib (a - 2); ;

Fail means a function is aborted and a more base function is attempted.

16 years ago[script] Create new objects when incrementing/decrementing
Charlie Brej [Wed, 9 Sep 2009 16:35:36 +0000 (17:35 +0100)] 
[script] Create new objects when incrementing/decrementing

It is dangerous to directly edit a number as it may be referenced from multiple
places.

16 years ago[script] Make "this" (the current object) a part of the status
Charlie Brej [Wed, 9 Sep 2009 16:28:40 +0000 (17:28 +0100)] 
[script] Make "this" (the current object) a part of the status

This is now also looked up when evaluating vars. Vars are looked for in the
local context, then within this (current object) and finally within the
global context;

16 years ago[script] Correct some header files
Charlie Brej [Wed, 9 Sep 2009 16:07:50 +0000 (17:07 +0100)] 
[script] Correct some header files

Missing includes and incorrect recursion protection names

16 years ago[script] Reference actual object and do not create an indirect reference
Charlie Brej [Wed, 9 Sep 2009 15:34:52 +0000 (16:34 +0100)] 
[script] Reference actual object and do not create an indirect reference

16 years ago[script] Free the scan only after adding the last debug symbol
Charlie Brej [Wed, 9 Sep 2009 15:29:12 +0000 (16:29 +0100)] 
[script] Free the scan only after adding the last debug symbol

Was causing valgrind errors of access to freed locations as the scan name was
freed.

16 years ago[populate-initrd] Try to find inst more aggressively
Ray Strode [Wed, 9 Sep 2009 15:26:46 +0000 (11:26 -0400)] 
[populate-initrd] Try to find inst more aggressively

We've been using the inst function provided by mkinitrd
to install plymouth and its dependencies into the initrd
root, but mkinitrd may not be installed in a dracut world,
and dracut has its own inst function.

This commit tries getting access to either of them, before
bailing. At some point we may want to bundle our own inst
function or get a new flag added to /usr/bin/install to do
what inst does.

16 years agomove switch_to_vt to ply-utils and rename it ply_switch_to_vt
Frederic Crozat [Fri, 4 Sep 2009 14:19:38 +0000 (16:19 +0200)] 
move switch_to_vt to ply-utils and rename it ply_switch_to_vt

16 years agoMerge git://anongit.freedesktop.org/plymouth into splash-client-lib
Frederic Crozat [Fri, 4 Sep 2009 09:12:08 +0000 (11:12 +0200)] 
Merge git://anongit.freedesktop.org/plymouth into splash-client-lib

16 years ago[script] Clean up as_numer and as_bool functions
Charlie Brej [Thu, 3 Sep 2009 20:10:56 +0000 (21:10 +0100)] 
[script] Clean up as_numer and as_bool functions

As_bool now returns false for 0.0 and NAN. It uses the fpclassify which should
be a clean way of testing for zero. The as_number function simplifies a switch
to an if.

16 years agoMerge branch 'master' into splash-client-lib
Frederic Crozat [Thu, 3 Sep 2009 17:35:30 +0000 (19:35 +0200)] 
Merge branch 'master' into splash-client-lib

16 years agoMerge branch 'master' of git://anongit.freedesktop.org/plymouth
Frederic Crozat [Thu, 3 Sep 2009 17:35:01 +0000 (19:35 +0200)] 
Merge branch 'master' of git://anongit.freedesktop.org/plymouth

16 years ago[script] Add script support for suspend and resume splash modes
Charlie Brej [Thu, 3 Sep 2009 16:00:17 +0000 (17:00 +0100)] 
[script] Add script support for suspend and resume splash modes

16 years ago[boot-splash-plugin] Add suspend and resume boot splash modes
Charlie Brej [Thu, 3 Sep 2009 15:57:31 +0000 (16:57 +0100)] 
[boot-splash-plugin] Add suspend and resume boot splash modes

16 years ago[script] Add PlymouthGetMode to get boot/shutdown mode
Charlie Brej [Thu, 3 Sep 2009 15:25:01 +0000 (16:25 +0100)] 
[script] Add PlymouthGetMode to get boot/shutdown mode

PlymouthGetMode replies the mode as a string of "boot" or "shutdown".

16 years ago[libply] allow access to ply_event_loop_process_pending_events
Frederic Crozat [Thu, 3 Sep 2009 14:36:23 +0000 (16:36 +0200)] 
[libply] allow access to ply_event_loop_process_pending_events

16 years ago[libplybootsplash] move ply-boot-splash.[ch] to libplybootsplash
Frederic Crozat [Thu, 3 Sep 2009 14:30:44 +0000 (16:30 +0200)] 
[libplybootsplash] move ply-boot-splash.[ch] to libplybootsplash

16 years agoMerge branch 'master' of git://anongit.freedesktop.org/plymouth
Frederic Crozat [Thu, 3 Sep 2009 14:09:17 +0000 (16:09 +0200)] 
Merge branch 'master' of git://anongit.freedesktop.org/plymouth

16 years ago[progress] Make the progress percentage settable
Charlie Brej [Thu, 3 Sep 2009 12:45:41 +0000 (13:45 +0100)] 
[progress] Make the progress percentage settable

The progress percentage is now settable. By "settable" this doesn't mean the
value will change to the new value, the set value is only a hint as to where
the progress should be at this point in time. So it it overshot or under-run,
the hint is used to determine how much time is left, and how fast to move the
bar.

16 years ago[script] Set "this" in functions called through an object
Charlie Brej [Wed, 2 Sep 2009 20:21:05 +0000 (21:21 +0100)] 
[script] Set "this" in functions called through an object

When functins are called as an element of an object (e.g. obj.func(par) ), the
object is passed into the function execution as "this" in the local context.

16 years ago[script] Use access functions when accessing variables
Charlie Brej [Tue, 1 Sep 2009 20:19:51 +0000 (21:19 +0100)] 
[script] Use access functions when accessing variables

Rather than directly accessing hash tables when accessing variables, use the
abstraction functions. Adds a peek function which does not create a new object
is one has not been defined already.

16 years ago[script] Move function definitions from operations to expressions
Charlie Brej [Tue, 1 Sep 2009 19:25:38 +0000 (20:25 +0100)] 
[script] Move function definitions from operations to expressions

This removes some of the duplication due to the two methods of creating
functions. Now function definitions like:

fun name (foo) {bar}

are treated as

name = fun (foo) {bar};

No script code needs to change as both are still valid.

16 years ago[daemon] splash=verbose is equivalent to no splash (splashy compatibility)
Frederic Crozat [Tue, 1 Sep 2009 16:36:11 +0000 (18:36 +0200)] 
[daemon] splash=verbose is equivalent to no splash (splashy compatibility)

16 years ago[script] Generate error messages on erroneous operations
Charlie Brej [Mon, 31 Aug 2009 00:17:56 +0000 (01:17 +0100)] 
[script] Generate error messages on erroneous operations

16 years ago[script] Add a expressions and operators to the debug hashtables
Charlie Brej [Sun, 30 Aug 2009 23:24:08 +0000 (00:24 +0100)] 
[script] Add a expressions and operators to the debug hashtables

16 years ago[script] Add debug information to parsed operations
Charlie Brej [Sun, 30 Aug 2009 22:41:15 +0000 (23:41 +0100)] 
[script] Add debug information to parsed operations

16 years ago[script] Pass the debug position when creating all expression elements
Charlie Brej [Sun, 30 Aug 2009 21:14:59 +0000 (22:14 +0100)] 
[script] Pass the debug position when creating all expression elements

Will be used later to form a debug table

16 years ago[script] Keep the filename while scanning for parsing error messages
Charlie Brej [Sun, 30 Aug 2009 19:53:13 +0000 (20:53 +0100)] 
[script] Keep the filename while scanning for parsing error messages

16 years ago[script] Adds debug support source files
Charlie Brej [Sun, 30 Aug 2009 18:07:51 +0000 (19:07 +0100)] 
[script] Adds debug support source files

16 years ago[script] Move op generation to constructor functions
Charlie Brej [Sun, 30 Aug 2009 17:16:04 +0000 (18:16 +0100)] 
[script] Move op generation to constructor functions

moves all construction of OPs to one place to allow adding debug info.

16 years ago[scripts] add plymouth-generate-initrd script
Ray Strode [Sat, 29 Aug 2009 00:00:08 +0000 (20:00 -0400)] 
[scripts] add plymouth-generate-initrd script

One useful way to use plymouth is by installing it into
an auxillary initrd image, that overlays the primary one.

This allows plymouth and its current theme to get updated
indepedently of the kernel and the rest of the initrd
stuff.

plymouth-generate-initrd creates an initrd named:

     initrd-plymouth.img

in /boot that is suitable for use a second initrd on
the initrd line in grub.conf.

16 years ago[script] Move expression generation to constructor functions
Charlie Brej [Fri, 28 Aug 2009 15:38:08 +0000 (16:38 +0100)] 
[script] Move expression generation to constructor functions

This is in preparation for debugging support

16 years ago[main] Allow debug output file to be set on the command line
Charlie Brej [Thu, 27 Aug 2009 15:57:12 +0000 (16:57 +0100)] 
[main] Allow debug output file to be set on the command line

16 years ago[script] Remove a line used for debugging
Charlie Brej [Thu, 27 Aug 2009 15:30:14 +0000 (16:30 +0100)] 
[script] Remove a line used for debugging

16 years ago[script] Add support for Infinity and NaN
Charlie Brej [Thu, 27 Aug 2009 14:33:16 +0000 (15:33 +0100)] 
[script] Add support for Infinity and NaN

The rules are inhertited from C (NaN != NaN etc).

16 years ago[script] Remove integer objects and rename floats "numbers"
Charlie Brej [Wed, 26 Aug 2009 17:07:48 +0000 (18:07 +0100)] 
[script] Remove integer objects and rename floats "numbers"

Integers were upgraded to floats during many operations and there was no real
advantage to keep them.

16 years ago[populate-initrd] Get plugin path from plymouth
Ray Strode [Tue, 25 Aug 2009 18:53:31 +0000 (14:53 -0400)] 
[populate-initrd] Get plugin path from plymouth

Previously, we'd try to guess the plugin path based
on the arch of the running process.  That's sort of
fragile, so better to just install plugins where
plymouth says it's going to look for them.

16 years ago[configure] Bump to 0.7.1 0.7.1
Ray Strode [Tue, 25 Aug 2009 17:30:44 +0000 (13:30 -0400)] 
[configure] Bump to 0.7.1

16 years ago[glow] Soften corners of entry box
Ray Strode [Tue, 25 Aug 2009 17:14:12 +0000 (13:14 -0400)] 
[glow] Soften corners of entry box

They (somewhat) have the illusion of roundness now.

16 years ago[glow] Update bullet to be more like GTK+ default
Ray Strode [Tue, 25 Aug 2009 17:13:19 +0000 (13:13 -0400)] 
[glow] Update bullet to be more like GTK+ default

It makes things look more consistent.

16 years ago[script] use dialog instead of dialogue
Frederic Crozat [Tue, 25 Aug 2009 13:59:30 +0000 (15:59 +0200)] 
[script] use dialog instead of dialogue

16 years ago[utils] Force modules to stay resident after close
Ray Strode [Tue, 25 Aug 2009 11:43:09 +0000 (07:43 -0400)] 
[utils] Force modules to stay resident after close

Some modules (the label plugin in particular) use
libraries with static data that don't do well with
being unmapped and remapped later.

This commit changes the module loading call so that
plugins aren't unmapped at close time (the close
is effectively ignored).  This simplifies things
for now.

At some point we may want to make it decidable on
a per plugin basis.

16 years ago[script] Force graphics mode before each frame
Ray Strode [Tue, 25 Aug 2009 01:25:52 +0000 (21:25 -0400)] 
[script] Force graphics mode before each frame

It's what all the other boot splash plugins do.  This
is important because things occasionally muck with the
terminal during boot up (knocking it out of raw mode, etc),
and resetting the window graphics mode resets the terminal
settings as well.

Future, potentially better alternatives to this could be:

1) TIOCSLCKTRMIOS to lock the terminal settings
2) Using /dev/input instead of the tty for keyboard input

16 years ago[main] Don't try to write debug buffer if open fails
Ray Strode [Mon, 24 Aug 2009 17:48:01 +0000 (13:48 -0400)] 
[main] Don't try to write debug buffer if open fails

Before we would try to use the fd causing assertion failures.

16 years ago[main] initialize debug_buffer_path when --debug but no plymouth:debug
Ray Strode [Mon, 24 Aug 2009 17:44:48 +0000 (13:44 -0400)] 
[main] initialize debug_buffer_path when --debug but no plymouth:debug

Before it wasn't ever getting set, causing crashes with --debug
in some cases.

16 years ago[animation] don't go into loop with 0 frame animations
Ray Strode [Mon, 24 Aug 2009 13:48:24 +0000 (09:48 -0400)] 
[animation] don't go into loop with 0 frame animations

The animation class doesn't handle its frames missing
too well right now.  In fact, it goes into an infinite
loop instead of completing.

This commit fixes that.

16 years ago[script] add support for message in script
Frederic Crozat [Wed, 19 Aug 2009 13:21:24 +0000 (15:21 +0200)] 
[script] add support for message in script

16 years ago[script] Display password dialog even if called twice
Frederic Crozat [Tue, 18 Aug 2009 17:19:13 +0000 (19:19 +0200)] 
[script] Display password dialog even if called twice

16 years ago[image] Scale images not using data beyond the edge of the last pixel
Charlie Brej [Tue, 18 Aug 2009 15:39:50 +0000 (16:39 +0100)] 
[image] Scale images not using data beyond the edge of the last pixel

When using 1 pixel wide images and stretching them, the result is a fade
between the pixel data and the transparent pixels beyond the end of the image.

16 years ago[window] Reopen tty if disconnected
Ray Strode [Fri, 14 Aug 2009 12:44:47 +0000 (08:44 -0400)] 
[window] Reopen tty if disconnected

Some init implementations forcefully take over the tty after rc.sysinit
with the TIOCSCTTY ioctl, forcing plymouth's connection to the tty
to get dropped.  This comment just reopens the tty if it gets taken
over.

It may make sense at some point to use /dev/input for catching input
events instead of the tty, to side step these kinds of problems.

16 years ago[image] Supply correct width and height limits to interpolate 0.7.0
Charlie Brej [Tue, 11 Aug 2009 15:47:37 +0000 (16:47 +0100)] 
[image] Supply correct width and height limits to interpolate

The supplied width and height were for the new rather than the old image so
some reads would access pixels beyond the edge of the image.

16 years ago[daemon] fix fd leak
Frederic Crozat [Mon, 10 Aug 2009 16:48:25 +0000 (18:48 +0200)] 
[daemon] fix fd leak

16 years ago[client] Fix memleak at exit
Frederic Crozat [Mon, 10 Aug 2009 12:52:49 +0000 (14:52 +0200)] 
[client] Fix memleak at exit

16 years ago[client] Fix memleak in command argument
Frederic Crozat [Mon, 10 Aug 2009 12:30:05 +0000 (14:30 +0200)] 
[client] Fix memleak in command argument

16 years ago[libply] Fix memleak in command parser
Frederic Crozat [Mon, 10 Aug 2009 12:10:57 +0000 (14:10 +0200)] 
[libply] Fix memleak in command parser

16 years ago[libply] Fix message list memleaks
Frederic Crozat [Mon, 10 Aug 2009 11:36:51 +0000 (13:36 +0200)] 
[libply] Fix message list memleaks

16 years ago[throbgress] Fix memleak
Frederic Crozat [Mon, 10 Aug 2009 11:16:18 +0000 (13:16 +0200)] 
[throbgress] Fix memleak

16 years ago[space-flares] Fix memleak
Frederic Crozat [Mon, 10 Aug 2009 11:15:53 +0000 (13:15 +0200)] 
[space-flares] Fix memleak

16 years ago[daemon] fix memleak in argument parsing
Frederic Crozat [Mon, 10 Aug 2009 10:02:30 +0000 (12:02 +0200)] 
[daemon] fix memleak in argument parsing

16 years ago[libplybootsplash] fix memleak
Frederic Crozat [Mon, 10 Aug 2009 09:34:43 +0000 (11:34 +0200)] 
[libplybootsplash] fix memleak

16 years agoallow to change system release filename with configure option
Frederic Crozat [Thu, 6 Aug 2009 08:37:46 +0000 (10:37 +0200)] 
allow to change system release filename with configure option

16 years ago[image] Add interpolation to image rotation and resize
Charlie Brej [Tue, 11 Aug 2009 14:56:40 +0000 (15:56 +0100)] 
[image] Add interpolation to image rotation and resize

This gives a smoother edges for rotated objects and less blocky results on
resizes.

16 years ago[boot-splash] Allocate new string when concatenating
Charlie Brej [Tue, 11 Aug 2009 14:37:47 +0000 (15:37 +0100)] 
[boot-splash] Allocate new string when concatenating

Mallocs when concatenating command line arguments to a string.
Used in the testing code.

16 years ago[daemon] fix fd leak
Frederic Crozat [Mon, 10 Aug 2009 16:48:25 +0000 (18:48 +0200)] 
[daemon] fix fd leak

16 years ago[client] Fix memleak at exit
Frederic Crozat [Mon, 10 Aug 2009 12:52:49 +0000 (14:52 +0200)] 
[client] Fix memleak at exit

16 years ago[client] Fix memleak in command argument
Frederic Crozat [Mon, 10 Aug 2009 12:30:05 +0000 (14:30 +0200)] 
[client] Fix memleak in command argument

16 years ago[libply] Fix memleak in command parser
Frederic Crozat [Mon, 10 Aug 2009 12:10:57 +0000 (14:10 +0200)] 
[libply] Fix memleak in command parser

16 years ago[libply] Fix message list memleaks
Frederic Crozat [Mon, 10 Aug 2009 11:36:51 +0000 (13:36 +0200)] 
[libply] Fix message list memleaks

16 years ago[throbgress] Fix memleak
Frederic Crozat [Mon, 10 Aug 2009 11:16:18 +0000 (13:16 +0200)] 
[throbgress] Fix memleak

16 years ago[space-flares] Fix memleak
Frederic Crozat [Mon, 10 Aug 2009 11:15:53 +0000 (13:15 +0200)] 
[space-flares] Fix memleak

16 years ago[daemon] fix memleak in argument parsing
Frederic Crozat [Mon, 10 Aug 2009 10:02:30 +0000 (12:02 +0200)] 
[daemon] fix memleak in argument parsing

16 years ago[libplybootsplash] fix memleak
Frederic Crozat [Mon, 10 Aug 2009 09:34:43 +0000 (11:34 +0200)] 
[libplybootsplash] fix memleak

16 years agoallow to change system release filename with configure option
Frederic Crozat [Thu, 6 Aug 2009 08:37:46 +0000 (10:37 +0200)] 
allow to change system release filename with configure option

16 years ago[main] Log debug messages more aggressively
Ray Strode [Mon, 10 Aug 2009 18:22:18 +0000 (14:22 -0400)] 
[main] Log debug messages more aggressively

Previously, we'd only log messages to a file if plymouth
crashed and it was started with --debug.  Now we log
messages to a file if it's started with --debug, or run with
plymouth:debug or plymouth:debug=file:/var/log/plymouth/foo.log

16 years ago[buffer] Increase the upper limit on buffer sizes
Ray Strode [Mon, 10 Aug 2009 18:02:05 +0000 (14:02 -0400)] 
[buffer] Increase the upper limit on buffer sizes

This should really be configurable per buffer, I think,
but for now set the upper limit to much higher than it is now.

16 years ago[window] Handle disconnected tty fd better
Ray Strode [Mon, 10 Aug 2009 17:47:41 +0000 (13:47 -0400)] 
[window] Handle disconnected tty fd better

Right now if we ever get a hangup from the mainloop
on the tty fd then the window's fd watch on the tty
becomes invalid and we will ultimately crash when
trying to disconnect the watch later.

This commit sets the watch to NULL if a hang up happens,
and adds some debug spew.

16 years ago[pkgconfig] Fix up include paths
Ray Strode [Fri, 7 Aug 2009 20:34:15 +0000 (16:34 -0400)] 
[pkgconfig] Fix up include paths

16 years ago[configure] Add AS_AC_EXPAND for configured dirs
Ray Strode [Fri, 7 Aug 2009 20:28:46 +0000 (16:28 -0400)] 
[configure] Add AS_AC_EXPAND for configured dirs

We want the .pc file to have the full expanded paths,
so it doesn't end up with unexpanded datarootdir, etc.

To achieve this we copy in the AS_AC_EXPAND macro
that thomasvs did a while ago.

16 years ago[pkgconfig] Fix up pkgconfig variables
Ray Strode [Fri, 7 Aug 2009 20:32:10 +0000 (16:32 -0400)] 
[pkgconfig] Fix up pkgconfig variables

They were wrong before

16 years ago[configure] Specify plugin path in one place
Ray Strode [Fri, 7 Aug 2009 20:17:32 +0000 (16:17 -0400)] 
[configure] Specify plugin path in one place

Currently it's hardcoded all over the place in various Makefiles.

This commit consolidates its definition to configure.ac

16 years ago[client] add --get-splash-plugin-path argument
Ray Strode [Fri, 7 Aug 2009 20:07:14 +0000 (16:07 -0400)] 
[client] add --get-splash-plugin-path argument

It can be useful to know where the splash plugins are
on multilib systems.

16 years ago[main] Allow splash to be specified from grub
Ray Strode [Fri, 7 Aug 2009 19:09:18 +0000 (15:09 -0400)] 
[main] Allow splash to be specified from grub

We now check the splash from the kernel command line.
This allows initrds to ship a few splashes at once and
make it changeable at boot time.

16 years ago[configure] Add goo to turn on silent build
Ray Strode [Fri, 7 Aug 2009 01:21:43 +0000 (21:21 -0400)] 
[configure] Add goo to turn on silent build

Automake 1.11 has a new feature that's all the rage these days.

It makes build output look like:

CC     plymouthd-ply-boot-server.o
CC     plymouthd-ply-boot-splash.o
CC     plymouthd-main.o
CCLD   plymouthd

instead of the usual field gcc gunk.

This commit turns it on for those who have it.

16 years ago[event-loop] Add some debug messages to event loop
Ray Strode [Thu, 6 Aug 2009 18:42:56 +0000 (14:42 -0400)] 
[event-loop] Add some debug messages to event loop

It may help track down a crasher bug Fredric Crozat is
seeing.

16 years ago[two-step] Mark plugin interface functions static
Ray Strode [Thu, 6 Aug 2009 12:59:54 +0000 (08:59 -0400)] 
[two-step] Mark plugin interface functions static

They should only get accessed via the vtable,
so we don't need to export them directly.

16 years ago[throbgress] Mark plugin interface functions static
Ray Strode [Thu, 6 Aug 2009 12:59:54 +0000 (08:59 -0400)] 
[throbgress] Mark plugin interface functions static

They should only get accessed via the vtable,
so we don't need to export them directly.

16 years ago[space-flares] Mark plugin interface functions static
Ray Strode [Thu, 6 Aug 2009 12:59:54 +0000 (08:59 -0400)] 
[space-flares] Mark plugin interface functions static

They should only get accessed via the vtable,
so we don't need to export them directly.

16 years ago[script] Mark plugin interface functions static
Ray Strode [Thu, 6 Aug 2009 12:59:54 +0000 (08:59 -0400)] 
[script] Mark plugin interface functions static

They should only get accessed via the vtable,
so we don't need to export them directly.

16 years ago[fade-throbber] Mark plugin interface functions static
Ray Strode [Thu, 6 Aug 2009 12:59:54 +0000 (08:59 -0400)] 
[fade-throbber] Mark plugin interface functions static

They should only get accessed via the vtable,
so we don't need to export them directly.

16 years ago[details] Mark plugin interface functions static
Ray Strode [Thu, 6 Aug 2009 12:59:54 +0000 (08:59 -0400)] 
[details] Mark plugin interface functions static

They should only get accessed via the vtable,
so we don't need to export them directly.