]> git.ipfire.org Git - thirdparty/plymouth.git/log
thirdparty/plymouth.git
15 years ago[controls] Add new bitmap label plugin bitmap-label-control
Charlie Brej [Mon, 12 Oct 2009 15:16:35 +0000 (11:16 -0400)] 
[controls] Add new bitmap label plugin

This is like the existing label plugin, but it has a small
ascii fixed builtin fontset and doesn't pull in any pango, cairo,
fontconfig, or freetype dependencies.

15 years ago[frame-buffer] initialize head on query not map
Ray Strode [Fri, 9 Oct 2009 21:38:17 +0000 (17:38 -0400)] 
[frame-buffer] initialize head on query not map

That's the "right" thing to do and now that we
map lazily, doing it the old way is broken.

15 years ago[renderer] map buffer lazily
Ray Strode [Thu, 8 Oct 2009 20:01:56 +0000 (16:01 -0400)] 
[renderer] map buffer lazily

This is to prevent screen clears on plugins that don't
use the renderers (text plugins)

15 years ago[renderer] make map and unmap idempotent
Ray Strode [Thu, 8 Oct 2009 19:59:15 +0000 (15:59 -0400)] 
[renderer] make map and unmap idempotent

15 years ago[keyboard] make stop_watching_for_terminal_input idempotent
Ray Strode [Thu, 8 Oct 2009 19:42:27 +0000 (15:42 -0400)] 
[keyboard] make stop_watching_for_terminal_input idempotent

15 years ago[renderer] make input_source_close idempotent
Ray Strode [Thu, 8 Oct 2009 19:41:06 +0000 (15:41 -0400)] 
[renderer] make input_source_close idempotent

15 years ago[main] remove displays before closing renderer
Ray Strode [Thu, 8 Oct 2009 19:40:16 +0000 (15:40 -0400)] 
[main] remove displays before closing renderer

15 years ago[terminal] Only close terminal on free when open
Ray Strode [Thu, 8 Oct 2009 19:33:40 +0000 (15:33 -0400)] 
[terminal] Only close terminal on free when open

We were closing the terminal twice, causing assertions
to blow.

15 years ago[main] Disconnect from tty when hiding splash
Ray Strode [Thu, 8 Oct 2009 19:22:27 +0000 (15:22 -0400)] 
[main] Disconnect from tty when hiding splash

We were still processing keystrokes when the splash screen was
hidden. This caused problems because the tty is used by other
programs at that time.

15 years ago[drm] Destroy console buffer object on error path
Ray Strode [Wed, 7 Oct 2009 21:26:16 +0000 (17:26 -0400)] 
[drm] Destroy console buffer object on error path

We were leaking the object if it couldn't be mapped.

15 years ago[drm] Destroy console buffer object when done with it
Ray Strode [Tue, 6 Oct 2009 23:07:41 +0000 (19:07 -0400)] 
[drm] Destroy console buffer object when done with it

15 years ago[main] clean up terminal when done with it
Ray Strode [Tue, 6 Oct 2009 20:47:41 +0000 (16:47 -0400)] 
[main] clean up terminal when done with it

Before we were relying on the renderer to clean
up the terminal, which was wrong.

15 years ago[renderer] close device on failures
Ray Strode [Tue, 6 Oct 2009 19:31:53 +0000 (15:31 -0400)] 
[renderer] close device on failures

Before we were just unloading the module without
closing it.

15 years ago[drm] don't close terminal
Ray Strode [Tue, 6 Oct 2009 19:30:33 +0000 (15:30 -0400)] 
[drm] don't close terminal

It belongs to the core daemon, not the plugin.

15 years ago[drm] Drop master on VT switches
Ray Strode [Tue, 6 Oct 2009 14:50:42 +0000 (10:50 -0400)] 
[drm] Drop master on VT switches

This improves plymouth's interaction with X.

15 years ago[text] Don't crash after password prompt
Ray Strode [Mon, 5 Oct 2009 21:37:48 +0000 (17:37 -0400)] 
[text] Don't crash after password prompt

We were treating the passed in view to the
draw handler as if it was the plugin itself.

15 years ago[main] Properly reinitialize environment on show splash
Ray Strode [Mon, 5 Oct 2009 20:51:40 +0000 (16:51 -0400)] 
[main] Properly reinitialize environment on show splash

Before we were tearing down the displays and keyboard on hide
splash but not bringing them back on subsequent show splashes.

This fixes that.  We can probably throw less stuff away on
hide splash, but this is a more conservative fix for now.

15 years ago[script] Give sensible unique-ish strings for all objects.
Charlie Brej [Sun, 4 Oct 2009 17:03:23 +0000 (18:03 +0100)] 
[script] Give sensible unique-ish strings for all objects.

All objects can now be transformed into strings which allows them to be used as
hash indexes. Some rules do still apply. If an object is lost (freed....)
another object may take on the name of the lost one. The object address is used
to create a string in the form "#(0x123abc45)". NULL has the string "#NULL".
So arr[NULL] is the same as arr["#NULL"], and similar for the objects.

15 years ago[script] Do not segfault if accessing array with no key
Charlie Brej [Sun, 4 Oct 2009 16:56:38 +0000 (17:56 +0100)] 
[script] Do not segfault if accessing array with no key

Things like "array[] = 7" would cause a crash.
This is now caught and warned about during the parse.

15 years ago[script] Allow inline array definitions
Charlie Brej [Sun, 4 Oct 2009 16:46:59 +0000 (17:46 +0100)] 
[script] Allow inline array definitions

This can be used to initialise an array:
arr = [12, 43];    // arr[0] = 12; arr[1] = 43;

Or create an empty object:
obj = [];

15 years ago[script] Add do-while loops
Charlie Brej [Sun, 4 Oct 2009 16:36:22 +0000 (17:36 +0100)] 
[script] Add do-while loops

Format is:
    do {operations} while (condition);
or
    do operation; while (condition);

Like in C, the semicolon at the end is necessary.

15 years ago[branch-merge] Add x11 renderer plugin
Ray Strode [Sun, 4 Oct 2009 14:47:36 +0000 (10:47 -0400)] 
[branch-merge] Add x11 renderer plugin

This merges the "x11-renderer" branch to master.

In order to make debugging splash plugins easier,
and in order to make debugging multi-head renderering
possible on single head displays, Charlie wrote an
X11 rendering plugin.

This plugin displays plymouth in a running X session,
instead of on the console.

It currently only supports graphical plugins.  At some
point it may grow support for text plugins, too, using
vte.  That will take some reworking of the plymouth
daemon core.

This could some day serve as a basis for providing a
graphical theme chooser application (like
gnome-screensaver-preferences), although it's not clear
yet that's a good idea.

Right now, it's a great debugging and development tool,
though.

15 years ago[x11] Throttle plymouth to X server x11-renderer
Ray Strode [Sun, 4 Oct 2009 01:44:26 +0000 (21:44 -0400)] 
[x11] Throttle plymouth to X server

Some drivers completely choke with the amount of data plymouth is
sending over the wire.  This makes sure that plymouth doesn't
keep assaulting the X server when it's already overworked by asking
the server to return back a pixel before continuing.

15 years ago[x11] Tile windows initially
Ray Strode [Sat, 3 Oct 2009 06:09:29 +0000 (02:09 -0400)] 
[x11] Tile windows initially

15 years ago[x11] Move windows when dragged
Ray Strode [Sat, 3 Oct 2009 06:03:32 +0000 (02:03 -0400)] 
[x11] Move windows when dragged

Since they don't have title bars now, we need to
provide and easy way for them to be moved around.

15 years ago[x11] Hide title bar
Ray Strode [Sat, 3 Oct 2009 05:45:05 +0000 (01:45 -0400)] 
[x11] Hide title bar

It's not useful.

15 years ago[x11] Ignore ply_console_set_mode calls
Ray Strode [Sat, 3 Oct 2009 05:37:46 +0000 (01:37 -0400)] 
[x11] Ignore ply_console_set_mode calls

Since X is rendering to the console, we don't need
(or want) to move the console between KD_GRAPHICS
and KD_TEXT mode.

15 years ago[console] Generalize mode override api
Ray Strode [Sat, 3 Oct 2009 05:28:13 +0000 (01:28 -0400)] 
[console] Generalize mode override api

Previously it was force_text_mode ().

Now, we do ignore_mode_changes ().  The
force_text_mode() behavior can be emulated by
setting the console mode to text mode and then
calling the new API.

This will be useful because we can make
ply_console_set_mode a NOOP for renderers that
don't render directly to the console.

15 years ago[x11] Don't allow windows to be resized
Ray Strode [Sat, 3 Oct 2009 04:28:52 +0000 (00:28 -0400)] 
[x11] Don't allow windows to be resized

We don't handle the display resizing, so disallow it.

15 years ago[x11] Draw to back pixmap instead of on exposes
Ray Strode [Sat, 3 Oct 2009 04:26:14 +0000 (00:26 -0400)] 
[x11] Draw to back pixmap instead of on exposes

It's a little more efficient.

15 years ago[x11] Process events only as they come in
Ray Strode [Sat, 3 Oct 2009 04:24:43 +0000 (00:24 -0400)] 
[x11] Process events only as they come in

Previously, we were waking up an processing events
in a loop.  Now we only do it when there are events.

15 years ago[renderer] Add start of X11 plugin
Charlie Brej [Sat, 3 Oct 2009 01:06:06 +0000 (21:06 -0400)] 
[renderer] Add start of X11 plugin

This renderer is useful for testing plymouth splash
plugins without leaving X. It simulates a multi-head
display by creating two X windows each representing
one monitor.

15 years ago[renderer] Move VT switching to renderer plugins
Ray Strode [Sat, 3 Oct 2009 03:37:02 +0000 (23:37 -0400)] 
[renderer] Move VT switching to renderer plugins

Since not all renderer plugins should switch VTs we
do it from the individual plugins now.

15 years ago[event-loop] ignore EAGAIN
Ray Strode [Sat, 3 Oct 2009 03:25:30 +0000 (23:25 -0400)] 
[event-loop] ignore EAGAIN

Sometimes when debugging under gdb, epoll_wait spuriously
returns EAGAIN.

We treat it like EINTR now.

15 years ago[text-progress-bar] Don't segfault if no os string
Ray Strode [Thu, 1 Oct 2009 14:22:28 +0000 (10:22 -0400)] 
[text-progress-bar] Don't segfault if no os string

Some distributions won't have a release file that
we know about.  In those cases, we shouldn't crash.

15 years ago[drm] Force raw mode on each draw cycle
Ray Strode [Tue, 29 Sep 2009 17:07:11 +0000 (13:07 -0400)] 
[drm] Force raw mode on each draw cycle

This is just

602d9972002cb5fd7fd946f1af930c4b00017f30

all over again.

15 years ago[terminal] Force raw mode when reopening terminal
Ray Strode [Tue, 29 Sep 2009 17:17:20 +0000 (13:17 -0400)] 
[terminal] Force raw mode when reopening terminal

If we need to reopen the terminal for whatever reason,
we'll also need to reset its attributes for input to work.

15 years agoBump to 0.8.0
Ray Strode [Mon, 28 Sep 2009 22:11:05 +0000 (18:11 -0400)] 
Bump to 0.8.0

Next release will be 0.8.0 (it's a bit off though)

15 years ago[branch-merge] Support multi-head renderering
Ray Strode [Mon, 28 Sep 2009 22:03:11 +0000 (18:03 -0400)] 
[branch-merge] Support multi-head renderering

This merges the "seat-rework" branch to master.

Instead of talking to /dev/fb, we now use libdrm
to set up the drawing area.  This gives us the
functionality we need for querying the user's
monitor layout.

There are cases where /dev/fb works when the new
interfaces don't.  For those cases we fall back
to /dev/fb.

15 years ago[throbber] Properly finish animation before stopping seat-rework
Ray Strode [Fri, 25 Sep 2009 20:39:27 +0000 (16:39 -0400)] 
[throbber] Properly finish animation before stopping

I can't say I have any idea what I was trying to do before
but it's clearly bogus.

15 years ago[animation] Make ply_animation_start idempotent
Ray Strode [Wed, 23 Sep 2009 21:38:54 +0000 (17:38 -0400)] 
[animation] Make ply_animation_start idempotent

15 years ago[animation] Use default event loop
Ray Strode [Wed, 23 Sep 2009 21:38:05 +0000 (17:38 -0400)] 
[animation] Use default event loop

15 years ago[drm] Force fb backend if 1 head and ttm driver
Ray Strode [Mon, 28 Sep 2009 21:27:56 +0000 (17:27 -0400)] 
[drm] Force fb backend if 1 head and ttm driver

Drivers backed by TTM memory manager don't support mapping the
kernel backed framebuffer console, so can't be used for doing
a smooth transition (unless you use /dev/fb).  In single head
configurations, there isn't a big advantage to using libdrm
anyway, so we bail for TTM drivers.

15 years ago[drm] Add initial support for nvidia cards
Ray Strode [Sun, 20 Sep 2009 04:09:37 +0000 (00:09 -0400)] 
[drm] Add initial support for nvidia cards

15 years ago[drm] Add initial support for radeon cards
Ray Strode [Sun, 20 Sep 2009 04:09:37 +0000 (00:09 -0400)] 
[drm] Add initial support for radeon cards

15 years ago[drm] Add initial support for intel cards
Ray Strode [Mon, 21 Sep 2009 22:03:52 +0000 (18:03 -0400)] 
[drm] Add initial support for intel cards

15 years ago[drm] Add start of a drm plugin
Ray Strode [Wed, 16 Sep 2009 22:27:53 +0000 (18:27 -0400)] 
[drm] Add start of a drm plugin

This commit adds most of the non-driver specific bits
necessary for backing a renderer plugin.

Subsequent commits will add the driver specific bits.

15 years ago[utils] Add ply_round_to_multiple macro
Ray Strode [Mon, 21 Sep 2009 17:49:43 +0000 (13:49 -0400)] 
[utils] Add ply_round_to_multiple macro

We'll need something like this for rowstride calculation

15 years ago[libplybootsplash] Drop window class
Ray Strode [Wed, 16 Sep 2009 21:23:32 +0000 (17:23 -0400)] 
[libplybootsplash] Drop window class

It's been obsoleted by the display, keyboard, console and terminal
classes.

15 years ago[libply] Drop frame-buffer class
Ray Strode [Thu, 20 Aug 2009 04:18:48 +0000 (00:18 -0400)] 
[libply] Drop frame-buffer class

We no longer use it now that we have the pixel-display class,
pixel buffers, etc.

15 years ago[image] Drop test code
Ray Strode [Thu, 17 Sep 2009 03:06:41 +0000 (23:06 -0400)] 
[image] Drop test code

It won't work when frame buffer is removed.

I really want to redo how tests are done anyway, to be
more automated.

15 years ago[utils] drop ply_switch_to_vt
Ray Strode [Thu, 24 Sep 2009 03:21:52 +0000 (23:21 -0400)] 
[utils] drop ply_switch_to_vt

It's been replaced by ply_console_set_active_vt, and won't
work right because of ply-console anyway.

15 years ago[main] switch to vt that plymouth is running on at startup
Ray Strode [Thu, 24 Sep 2009 02:54:26 +0000 (22:54 -0400)] 
[main] switch to vt that plymouth is running on at startup

15 years ago[main] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 21:03:47 +0000 (17:03 -0400)] 
[main] Update to use new multihead interface

15 years ago[two-step] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[two-step] Update to use new multihead interface

15 years ago[trigger] add new ignore_next_pull method
Ray Strode [Wed, 16 Sep 2009 17:39:35 +0000 (13:39 -0400)] 
[trigger] add new ignore_next_pull method

It can be cumbersome to wait for multiple operations to finish before
pulling a trigger.  In those cases, one option would be to have a
separate trigger for each operation, and then wait until every trigger
is pulled before pulling the main trigger.

This commit instead allows a trigger to get pulled more
than once before it actually fires.  By calling ignore_next_pull
once for each suboperaton, and immediately pulling the trigger,
it won't fire until the last operation finishes.

15 years ago[throbgress] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[throbgress] Update to use new multihead interface

15 years ago[text] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[text] Update to use new multihead interface

15 years ago[space-flares] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[space-flares] Update to use new multihead interface

15 years ago[script] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[script] Update to use new multihead interface

15 years ago[fade-throbber] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[fade-throbber] Update to use new multihead interface

15 years ago[details] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:28:04 +0000 (16:28 -0400)] 
[details] Update to use new multihead interface

15 years ago[text-progress-bar] Use text display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[text-progress-bar] Use text display instead of window

15 years ago[progress-bar] Use pixel display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[progress-bar] Use pixel display instead of window

15 years ago[progress-animation] Use pixel display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[progress-animation] Use pixel display instead of window

15 years ago[throbber] Use pixel display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[throbber] Use pixel display instead of window

15 years ago[animation] Use pixel display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[animation] Use pixel display instead of window

15 years ago[entry] Use pixel display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[entry] Use pixel display instead of window

15 years ago[label] Use pixel display instead of window
Ray Strode [Wed, 16 Sep 2009 19:08:59 +0000 (15:08 -0400)] 
[label] Use pixel display instead of window

15 years ago[boot-splash] Update to use new multihead interface
Ray Strode [Wed, 16 Sep 2009 20:23:39 +0000 (16:23 -0400)] 
[boot-splash] Update to use new multihead interface

The boot splash plugin now takes in a keyboard, text
displays, pixel displays, and the console.

I passes those along to the plugins, and listens for
key strokes to handle CTRL-L refresh and other keybindings.

So now it's assuming some of the role of ply-window.

15 years ago[renderer] Add start of frame-buffer plugin
Ray Strode [Fri, 21 Aug 2009 14:13:22 +0000 (10:13 -0400)] 
[renderer] Add start of frame-buffer plugin

Much of this code comes directly from ply-frame-buffer in libply,
but shoehorned to fit into the renderer plugin interface.

One improvement over the old code is it tracks VT changes, and
stops drawing when the wrong VT is active.

15 years ago[libplybootsplash] Add pixel-display class
Ray Strode [Fri, 21 Aug 2009 23:21:53 +0000 (19:21 -0400)] 
[libplybootsplash] Add pixel-display class

This is the graphical output portion of the window class.  This
commit and the previous few commits lay the foundation needed
for dropping the window class and getting  multi-head rendering support.

15 years ago[libplybootsplash] Add text-display class
Ray Strode [Fri, 21 Aug 2009 23:21:53 +0000 (19:21 -0400)] 
[libplybootsplash] Add text-display class

This is the text output portion of the window class.  With this commit
and a subsequent commit to split out the graphical output portion,
we should be able to drop the window class.

As mentioned earlier, this will give us the flexibility we
need for multi-head rendering.

15 years ago[libplybootsplash] Add renderer class
Ray Strode [Fri, 21 Aug 2009 13:53:33 +0000 (09:53 -0400)] 
[libplybootsplash] Add renderer class

In order to support multiple rendering backends, and multi-head
monitor layouts, I'm moving the actually rendering to render
plugins.

Examples of plugins could be frame-buffer, drm fb, and x11
(for debugging).

The renderer class is responsible for loading the appropriate rendering
backend, and providing an interface for the rendering backend to
advertise multiple displays.

Right now we only check for a frame-buffer plugin, although, it isn't
implemented yet.

15 years ago[libplybootsplash] Add terminal class
Ray Strode [Wed, 16 Sep 2009 20:57:13 +0000 (16:57 -0400)] 
[libplybootsplash] Add terminal class

This is the terminal settings portion of the window class.  With this
commit and subsequent commits to split out the higher level text output,
and graphical output portions, we should be able to drop window
in favor of the new display classes.

15 years ago[libplybootsplash] Add console class
Ray Strode [Wed, 23 Sep 2009 06:53:21 +0000 (02:53 -0400)] 
[libplybootsplash] Add console class

This serves a few purposes:

1) To watch for VT changes
2) To make VT changes
3) To put the console in KD_GRAPHICS mode

The latter is handled by the window class right now, but I want to
drop the window class.

15 years ago[libplybootsplash] Add keyboard class
Ray Strode [Fri, 21 Aug 2009 23:21:53 +0000 (19:21 -0400)] 
[libplybootsplash] Add keyboard class

This is the input portion of the window class.  With this commit
and subsequent commits to split out the output portions, we should
be able to drop the window class.

This will give us the flexibility we need for multi-head rendering.

15 years ago[libplybootsplash] Add new pixel buffer class
Ray Strode [Thu, 20 Aug 2009 04:06:06 +0000 (00:06 -0400)] 
[libplybootsplash] Add new pixel buffer class

Right now a lot of pixel manipulation functions are in the frame buffer
code.  This means it's hard to do these types of things without the
results showing up on the display.

Furthermore, we want to get away from one frame buffer anyway for
multihead support.  I can imagine each display in a multihead
configuration with its own pixel buffer, so splash plugins can draw to
the independently.

This commit adds the start of a pixel buffer class, which just copies
and pastes most of pixel-twiddling frame buffer code.  There are some
changes to deal with pixel buffers not always having a final alpha of
1.0, and some changes to provide a more flexible interface for masking
fill operations.

At some point it will probably gain copy-and-pastes of the resize an
rotate code from the image class as well, and provide a mechansim for
have subpixbufs where rowstride != width.

15 years ago[libply] Add new region class
Ray Strode [Thu, 20 Aug 2009 03:55:43 +0000 (23:55 -0400)] 
[libply] Add new region class

Sometimes it's necessary to deal with a disjoint
set of rectangles together.

One big example is when keeping track of which parts of
the screen have changed.

Another example would be for non-rectangular clip masks.

This commit adds a new region class to simplify the handling
of these types of cases.

15 years ago[libply] Add new rectangle type
Ray Strode [Thu, 20 Aug 2009 03:55:43 +0000 (23:55 -0400)] 
[libply] Add new rectangle type

Previously we were using ply_frame_buffer_area_t even
when not dealing with a frame buffer area.

This commit adds a new general purpose rectangle type
to replace ply_frame_buffer_area_t.  It has some
convenience functions for operating on rectangles as well.

15 years ago[event-loop] Add ply_event_loop_get_default ()
Ray Strode [Thu, 27 Aug 2009 05:26:55 +0000 (01:26 -0400)] 
[event-loop] Add ply_event_loop_get_default ()

The event loop is used all through out the code
for many different things.  In order to use it
in all those various bits of code, it's getting
passed around a lot.  This adds a lot of complexity
to the code.

The event loop should probably be a standard
resource that all parts of the code have free access
to in the same vein as the logging apis.

This commit adds a new function
ply_event_loop_get_default () and makes main use it
and pass it along.

Subsequent commits may clean up all the places that
take an event loop to just use this instead.

15 years ago[libply] Drop terminal class
Ray Strode [Thu, 27 Aug 2009 03:09:46 +0000 (23:09 -0400)] 
[libply] Drop terminal class

It was a really lame small wrapper around creating pseudoterminals.
The wrapper didn't buy anything and the name ply-terminal would be
better used for managing tty settings, etc.

15 years ago[configure] Bump to 0.7.2 0.7.2
Ray Strode [Mon, 28 Sep 2009 15:01:28 +0000 (11:01 -0400)] 
[configure] Bump to 0.7.2

15 years ago[libplybootsplash] Order header list one-per line
Ray Strode [Wed, 16 Sep 2009 22:13:32 +0000 (18:13 -0400)] 
[libplybootsplash] Order header list one-per line

It's a lot easier to add and remove entries from the Makefile
this way.

15 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

15 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)

15 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.

15 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

15 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.

15 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).

15 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

15 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

15 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

15 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

15 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.

15 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.

15 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;

15 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

15 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

15 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.