| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Try to open the frame buffer every time we set graphics mode | Ray Strode | 2008-06-11 | 1 | -1/+2 |
| | | | | | It may fail initially and work later | ||||
| * | Write to stdout instead of tty1 for text plugin | Ray Strode | 2008-06-11 | 1 | -21/+1 |
| | | |||||
| * | Make a very slight attempt at getting a reasonable video mode, and fail if ↵ | Peter Jones | 2008-06-11 | 1 | -31/+42 |
| | | | | | we don't have one. | ||||
| * | Install symlink pointing graphical.so to the default plugin | Ray Strode | 2008-06-11 | 1 | -0/+5 |
| | | |||||
| * | Change default splash plugin to generic "graphical" | Ray Strode | 2008-06-11 | 1 | -1/+1 |
| | | |||||
| * | Check for truecolor in a more direct way | Ray Strode | 2008-06-10 | 1 | -6/+14 |
| | | |||||
| * | Bail if framebuffer is in pseudocolor mode | Ray Strode | 2008-06-10 | 1 | -0/+13 |
| | | |||||
| * | s/BOOLEAN/FLAG/ for client option types | Ray Strode | 2008-06-10 | 1 | -5/+5 |
| | | |||||
| * | Add back client --ping option | Ray Strode | 2008-06-10 | 1 | -0/+2 |
| | | | | | | It got accidentally dropped in the transition to the command parser api | ||||
| * | Change to vt window is running on after creating window | Ray Strode | 2008-06-09 | 1 | -0/+2 |
| | | |||||
| * | Don't try to close session on_quit if it wasn't ever opened | Ray Strode | 2008-06-09 | 1 | -1/+2 |
| | | |||||
| * | redirect console io to tty7 | Ray Strode | 2008-06-09 | 1 | -3/+3 |
| | | |||||
| * | force text mode if debugging | Ray Strode | 2008-06-09 | 1 | -0/+3 |
| | | |||||
| * | Fix checking for newroot in the protocol handler for the daemon. | Peter Jones | 2008-06-09 | 1 | -1/+1 |
| | | |||||
| * | Fix whitespace error I introduced. | Peter Jones | 2008-06-09 | 1 | -1/+1 |
| | | |||||
| * | Add "plymouth --newroot=/sysroot" support, and make --sysinit open the log. | Peter Jones | 2008-06-09 | 7 | -9/+69 |
| | | |||||
| * | Expose preferred gradient color stops in configure0.2.0 | Ray Strode | 2008-06-09 | 1 | -1/+3 |
| | | |||||
| * | Don't show [subcommands ...] in usage line if there are no subcommands | Ray Strode | 2008-06-09 | 1 | -1/+2 |
| | | |||||
| * | Create new libplybootsplash | Ray Strode | 2008-06-09 | 17 | -60/+88 |
| | | | | | | | | | | | | The old approach of including the same source files into multiple places is less than pretty. But moving the code to libply didn't seem right either, since libply is fairly generic and could in theory get swapped out with a standard runtime at some point. Also, exposing libplybootsplash as an external library will facilitate creating out of tree splash plugins. | ||||
| * | Improve --help output spacing | Ray Strode | 2008-06-08 | 1 | -13/+41 |
| | | |||||
| * | Add new FLAG type to command parser api | Ray Strode | 2008-06-08 | 3 | -4/+8 |
| | | | | | | | It's just like boolean but doesn't advertise that it can take the form --flag=false. This makes the --help output for --help say --help instead of --help={true|false} | ||||
| * | Port client over to using new command line parsing code | Ray Strode | 2008-06-08 | 1 | -38/+45 |
| | | | | | | For now, we still use the "--command" format. Soon we'll switch to the "command --option" format | ||||
| * | Improve command parser help output | Ray Strode | 2008-06-08 | 1 | -2/+3 |
| | | |||||
| * | Add some functions to command parser header | Ray Strode | 2008-06-08 | 1 | -0/+7 |
| | | | | | | ply_command_parser_get_help_string and ply_command_parser_get_options never got added | ||||
| * | s/rhgb-client.c/plymouth.c/ in comment | Ray Strode | 2008-06-08 | 1 | -1/+1 |
| | | |||||
| * | Add the start of a command line parser | Ray Strode | 2008-06-08 | 5 | -0/+958 |
| | | | | | | | | | This will be useful for changing the client to use a plymouth subcommand --option1 --option2 format | ||||
| * | Adapt boot splash test program to take a vt to switch to | Ray Strode | 2008-06-04 | 1 | -1/+7 |
| | | |||||
| * | Fix boot splash test program | Ray Strode | 2008-06-04 | 1 | -1/+1 |
| | | | | | It hadn't been converted over to the new window api | ||||
| * | Support passing in a 0 to ply_window_new to mean "current vt" | Ray Strode | 2008-06-04 | 1 | -2/+7 |
| | | |||||
| * | move the "get active vt" guts out of switch_to_vt | Ray Strode | 2008-06-04 | 1 | -23/+23 |
| | | | | | | We'll be needing to get the active vt when not switching. | ||||
| * | Use vt7 by default | Ray Strode | 2008-06-04 | 1 | -1/+1 |
| | | |||||
| * | Add new window apis to change which vt is active | Ray Strode | 2008-06-04 | 2 | -0/+83 |
| | | | | | | This allows us to make sure the window is currently on/off screen. | ||||
| * | Change window to take a vt number instead of a tty device file | Ray Strode | 2008-06-04 | 3 | -13/+17 |
| | | | | | | | | We are going to want to change to the vt of the tty that we're using for the window. This means we need to know the vt number instead of the device file. From the number we can derive the device filename. | ||||
| * | Remove ply-copy-dir-test. | Peter Jones | 2008-06-04 | 3 | -96/+0 |
| | | |||||
| * | Get rid of ply-copy-test. | Peter Jones | 2008-06-04 | 3 | -70/+0 |
| | | |||||
| * | Get rid of everything about directory switching and PLY_WORKING_DIRECTORY. | Peter Jones | 2008-06-04 | 5 | -331/+7 |
| | | |||||
| * | Make ply-copy-dir-test.c work without the "detachable" functions. | Peter Jones | 2008-06-04 | 1 | -3/+13 |
| | | |||||
| * | Remove ply_create_detachable_directory() and ply_detach_directory(), add | Peter Jones | 2008-06-04 | 2 | -51/+12 |
| | | | | | ply_mount_tmpfs() to do the part of that we still need. | ||||
| * | Make plymouth_should_be_running() be less manual, and add " init=" handler. | Peter Jones | 2008-06-04 | 1 | -13/+14 |
| | | |||||
| * | Add ply_move_mount(). | Peter Jones | 2008-06-04 | 2 | -0/+16 |
| | | |||||
| * | Remove a bunch of chroot and fs mounting/unmounting code. | Peter Jones | 2008-06-04 | 1 | -100/+0 |
| | | |||||
| * | Make sure create_unix_address_from_path() doesn't get passed the abstract | Peter Jones | 2008-06-04 | 1 | -1/+1 |
| | | | | | socket name (i.e. it gets path+1 and is_abstract=1 instead) | ||||
| * | invert conditional | Ray Strode | 2008-06-03 | 1 | -1/+1 |
| | | | | | | | When adding the password object in commit f5a15611fb5fe1d36f8922e1c2a6f751ab0b8df7 I messed up and inverted a conditional. | ||||
| * | Don't require argc > 1 | Ray Strode | 2008-06-03 | 1 | -1/+1 |
| | | |||||
| * | s/sun_family/sun_path/ in assertion | Ray Strode | 2008-06-03 | 1 | -1/+1 |
| | | | | | | | When Peter fixed the bug that was making the socket patch always be 0, it exposed this other bug where the assertion was making the wrong check. | ||||
| * | Daemonize after starting boot server | Ray Strode | 2008-06-03 | 3 | -0/+85 |
| | | | | | | | | Previously we would daemonize when spawning the terminal session. We don't do that now, since we attach to an existing already running terminal session. | ||||
| * | rename --as-daemon to --attach-to-session | Ray Strode | 2008-06-03 | 1 | -7/+7 |
| | | | | | It's a little clearer. | ||||
| * | s/int/bool/ for boolean variable | Ray Strode | 2008-06-03 | 1 | -4/+2 |
| | | |||||
| * | Drop PLY_DAEMON_ONLY macro and just look at asdaemon | Ray Strode | 2008-06-03 | 1 | -33/+26 |
| | | | | | | | | Since we no longer support starting a session, only attaching to an existing one, we can just key off asdaemon to know whether to run the terminal session code. | ||||
| * | Drop support for starting a session from within plymouth | Ray Strode | 2008-06-03 | 1 | -44/+2 |
| | | | | | | | | | | | | We aren't going to be supporting the #!/bin/plymouth nash form anymore, instead we're going to require #!/bin/nash plymouth --asdaemon | ||||
