Commit graph

2669 commits

Author SHA1 Message Date
Olga Smirnova
2a69e4d099 Translated using Weblate (Occidental)
Currently translated at 100.0% (7 of 7 strings)

Added translation using Weblate (Occidental)

Co-authored-by: Olga Smirnova <mistresssilvara@hotmail.com>
Translate-URL: https://translate.fedoraproject.org/projects/plymouth/master/ie/
Translation: plymouth/main
2023-02-21 23:20:28 +01:00
n3rdopolis
353276386f Merge branch 'removeunderscores' into 'main'
ply-device-manager: Change XKB_* variables from vconsole.conf to match systemd's

See merge request plymouth/plymouth!228
2023-01-24 21:11:46 +00:00
n3rdopolis
5ffd55e40b ply-device-manager: Change XKB_* variables from vconsole.conf to match systemd's 2023-01-24 12:53:29 -05:00
Ray Strode
c9dab67e61 Merge branch 'keep-it-on-the-dl' into 'main'
meson: Use dependency('dl') instead of cc.find_library('dl')

See merge request plymouth/plymouth!222
2023-01-02 17:35:08 +00:00
Ray Strode
6aefdea9d9 meson: Use dependency('dl') instead of cc.find_library('dl')
meson apparently has some built-in support for libdl, which
depending on libc implementations may or may not be in a separate
library from libc.

This commit changes meson.build to do things the "better" way.
2023-01-02 17:33:53 +00:00
Ray Strode
fcaa382d53 Merge branch 'plymouth-fixleds' into 'main'
ply-input-device: Don't skip setting LEDs on the device that a lock key was pressed on

See merge request plymouth/plymouth!227
2023-01-02 12:27:24 -05:00
n3rdopolis
42d414f9f7 ply-input-device: Ensure that the LED state is updated on the keyboard of which the lock key was pressed on
When a lock modifier is pressed, plymouth goes through some gymnastics
to ensure the LEDs on all attached keyboards are appropriately updated.

Unfortunately, an optimization in the code used to avoid redundant
updates of keyboards that already have the correct state is actually
preventing the initiating keyboard from getting its LEDs turned on.

This is because the initiating keyboard gets its state updated at
key press time before the LED handling code runs, thus making it
seem like that run is redundant.

This commit introduces a new state variable `leds_state_invalid`
on the input device to mark this situation and updates the optimization
check to also check the new variable.

Some contributions by Ray Strode.
2023-01-02 12:20:44 -05:00
Ray Strode
96d050ce96 Merge branch 'more-dynamic-exports-than-marco-polo' into 'main'
meson: Use export_dynmic: true instead of -rdynamic

See merge request plymouth/plymouth!223
2022-12-02 01:25:59 +00:00
Ray Strode
c5a234b5e3 meson: Use export_dynmic: true instead of -rdynamic
It seems like specifying -rdynamic in meson cflags doesn't work
on some systems, but meson has a built in way of doing the same
thing:

export_dynamic: true

This commit switches over to the probably more right way of
achieving a working dlopen(NULL).
2022-12-01 20:14:17 -05:00
Ray Strode
c81af06abd Merge branch 'built-ins-are-dynamic' into 'main'
meson: Build plymouthd with -rdynamic

See merge request plymouth/plymouth!219
2022-12-01 19:31:39 +00:00
Ray Strode
4a53499b95 meson: Build plymouthd with -rdynamic
plymouthd needs to be built with -rdynamic so that the builtin
"details" plugin is loadable.

This commit adds the flag.

Related to #200
2022-12-01 14:30:19 -05:00
Ray Strode
ee222f7fe8 Merge branch 'fix-input-crash' into 'main'
device-manager: Fix crash if XKB keymap could not be created

Closes #199

See merge request plymouth/plymouth!221
2022-12-01 19:26:02 +00:00
Ray Strode
31f6650d64 device-manager: Fix crash if XKB keymap could not be created
This commit fixes a crash introduced in the last commit when an
xkb keymap can't be created.

Closes: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/199
2022-12-01 14:21:26 -05:00
Ray Strode
1c1c7e67f3 Merge branch 'uhh-actually-fix-tty-fallback' into 'main'
device-manager: Actually fall back to reading from tty if no xkb layout specified

Closes #199

See merge request plymouth/plymouth!220
2022-12-01 18:57:09 +00:00
Ray Strode
56a5e00b17 device-manager: Actually fall back to reading from tty if no xkb layout specified
Commit 7fcfcdf2d63025151a160f7948ee7406f0f16843 tried to fall back to
reading from a tty if no xkb layout was specified, but neglected to
actually check if no xkb layout was specified and force fall back to
reading from a tty in that case.

This commit changes device manager to actually disable reading from
/dev/input if the user doesn't specify a layout to use in vconsole.conf.

Closes https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/199
2022-12-01 13:40:30 -05:00
Ray Strode
e8b301a66d Merge branch 'dont-assume-qwerty-us-layout' into 'main'
device-manager: Fall back to reading from tty if no xkb layout specified

Closes #199

See merge request plymouth/plymouth!218
2022-12-01 15:35:52 +00:00
Ray Strode
f6852a7a82 device-manager: Fall back to reading from tty if no xkb layout specified
At the moment if a user doesn't specify a xkb layout in vconsole.conf we
just fall back to assuming a us qwerty layout.

This isn't really optimal, since it might not match the keyboard.
Furthermore, the tty does have a usable layout, so it makes more sense
to fall back to it.

This commit changes device manager to disable reading from /dev/input
if the user doesn't specify a layout to use in vconsole.conf.

Close https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/199
2022-11-30 09:53:54 -05:00
Ray Strode
a3f9824d9a Merge branch 'fix-check-format' into 'main'
ci: Fix check-format

See merge request plymouth/plymouth!217
2022-11-29 19:57:19 +00:00
Ray Strode
9bce1df280 ci: Fix check-format
In commit bb6580212d we tried to stop
running check-format on debian. We did this by moving the check-format
details to its own map and then adding a "<<" merge key to only pull
it in on Fedora.

The Fedora map already has a "<<" merge key however for doing the actual
build.

It's not allowed for their to be two, and gitlab's ci just ignores
the second one.

This commit combines the merge keys into one.
2022-11-29 14:52:39 -05:00
Ray Strode
970ba688f4 Merge branch 'reproducible-builds' into 'main'
meson: Generate version for reproducibility

Closes #188

See merge request plymouth/plymouth!216
2022-11-29 19:45:26 +00:00
Ray Strode
36cf20c6fa meson: Generate version for reproducibility
Right now we call date directly from meson.build leading to
non-reproducible builds.

This commit makes it only call date when building from git,
otherwise it extracts the version from the tarball name.

script borrowed from accountsservice.

Closes https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/188
2022-11-29 14:40:11 -05:00
Ray Strode
e285c91fc4 Merge branch 'im-not-stuttering-its-just-broken' into 'main'
Fix double input probably on optimus hardware

Closes #197

See merge request plymouth/plymouth!215
2022-11-29 18:35:30 +00:00
Ray Strode
b6c8bf3be7 input-device: Only allow one renderer to consume input at a time
Right now if there are two graphics cards, there ends up with two
renderers active at the same time. Both process keyboard inputs
and both end up sending those events to plymouthd, resulting in
duplicate input.

This commit changes the input handlers so the first one wins, and
the rest don't get input.

Closes https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/197
2022-11-29 13:34:05 -05:00
Ray Strode
5a9b24f18e trigger: Provide way for instance handlers to preempt run.
This commit adds a way for instance handlers to say "My handler
completed things, don't run any other handlers".

It does that by adding a boolean return value to the handler type
and making the callers return true for done.

Note, this commit doesn't update the callers to use the new api,
so it's sort of leaving things in a broken state.

The next commit will update the callers.
2022-11-29 13:33:44 -05:00
Ray Strode
a3a63e3e30 Merge branch 'hide-text-early' into 'main'
src: Hide console text when splash is requested

See merge request plymouth/plymouth!205
2022-11-29 15:15:30 +00:00
Ray Strode
48881ba2ef src: Hide console text when splash is requested
plymouthd may not be able to show the splash screen as soon as the
boot process wants it shown (if e.g. the driver isn't fully loaded
yet)

In that case, we sit tight and wait. Unfortunately, we aren't
logging boot messages while waiting.

This commit sets KD_GRAPHICS mode early to hide text from hitting
the console, but still tells systemd to print messages.  This way
we get boot logging but don't display the text while we wait on
the splash.
2022-11-29 09:47:17 -05:00
Ray Strode
6b28bb6229 Merge branch 'fix-novt-input' into 'main'
renderers: No longer assume that input is closed if the terminal device is NULL.

See merge request plymouth/plymouth!214
2022-11-29 14:26:18 +00:00
n3rdopolis
03d4e91bcd renderers: No longer assume that input is closed if the terminal device is NULL. 2022-11-29 14:25:02 +00:00
Diego Augusto
605b038acb ci: Update to add new keyboard handling dependencies
Now that plymouth uses libxkbcommon and xkeyboard-config for
keyboard handling, we need to make sure those dependencies get
pulled into the CI system.
2022-11-29 09:22:06 -05:00
Diego Augusto
6c78d01f52 populate-initrd: Ensure all xkb stuff gets moved to initramfs
Now that plymouth supports /dev/input directly, it's important
that the initramfs gains all the newly needed support files.

This commit adds the necessary changes to the script to ensure
those files get moved over.

Some contributions by n3rdopolis and Ray Strode.
2022-11-29 09:22:06 -05:00
n3rdopolis
72195dabb3 frame-buffer: Add support for new /dev/input feature 2022-11-29 09:22:06 -05:00
Diego Augusto
3dacf642dd drm: Add support for new /dev/input feature
Now that the core plymouth code supports /dev/input, the renderer
plugins need to support it as well.

As a first step, this commit adds such support to the drm renderer
plugin.

Some contributions by n3rdopolis and Ray Strode.
2022-11-29 09:22:06 -05:00
Diego Augusto
dbec44871d src: Add support for /dev/input devices
Plymouth currently gets keyboard input from the terminal. This isn't
ideal, since it means plymouth requires VTs to be enabled in the kernel.

Furthermore, most display servers use /dev/input and libxkbcommon for
keyboard handling these days.

This commit adds similar support to the plymouth core code. Subsequent
commits will add support to the render plugins.

Some contributions by n3rdopolis and Ray Strode.
2022-11-29 09:22:06 -05:00
Diego Augusto
a2f03d4b98 scripts: Update keymap-render script to handle xkb keymaps too
At the moment the keyboard-render script only generates short
names for console layouts.

We're going to add /dev/input support to plymouth using
libxkbcommon, so we're going to need a list of of those keymaps
too.

This commit adds that.

Some contributions by n3rdopolis and Ray Strode.
2022-11-29 09:22:06 -05:00
Ray Strode
c354f026e5 device-manager: Only wait for device timeout for framebuffer devices
At the moment we ignore any udev events that come in before the
device timeout that are not drm devices.

That is because we don't want to use framebuffer devices as anything
but a last resort fallback option.

In the near future we're going to be handling input events from udev
as well. Those will obviously need to be handled right away, just like
drm devices.

This commit makes the check only defer framebuffer devices and not
anything that isn't a drm device.
2022-11-29 09:22:06 -05:00
Ray Strode
111b968759 ply-device-manager: Add != 0 to strcmp calls
strcmp is kind of a confusing function in that it returns
non-zero when the strings are not equal. That is
especially counterintuitive when this non-zero value is
treated as a TRUE boolean.

This commit just adds some != 0's to a couple of strcmp
calls for clarity.
2022-11-29 09:22:06 -05:00
Ray Strode
ab0559893e buffer: Support length == 0 for ply_buffer_append_bytes
Right now callers of ply_buffer_append_bytes have to be
very careful to make sure the data they're appending is
non-zero in length. This is kind of inconvenient, since
it's not unusual for data to come in that's zero bytes
long.

For simplicity, this commit just makes
ply_buffer_append_bytes support that use case.
2022-11-29 09:22:06 -05:00
Ray Strode
288d0aca02 terminal: Add API for flushing input buffer
In the future we're going to start reading keyboard input from
/dev/input instead of the tty. When that happens, input will
still be sent by the kernel to the tty.

This input would eventually back up and overflow.

To address that problem before it exists, this commit adds a new
API, ply_terminal_flush_input, that will drain the input buffer
on demand.

We can later use that API to keep the tty from backing up.
2022-11-29 09:22:06 -05:00
Ray Strode
dacf2dd9f3 trigger: Add the ability to trigger data with an associated instance
Right now triggers can only fire off handlers that have one piece
of data associated with them, but sometimes it's useful to have
an object associated with the data too.

This commit adds new api for adding "instance handlers" that have
an additional parameter and a new method `ply_trigger_set_instance`
that allows an object to be associated with the trigger and get
used for the additional parameter of the instance handlers.
2022-11-29 09:22:06 -05:00
Diego Augusto
123d07afd3 list: Add helper macro for iterating lists
At the moment, iterating over a ply_list_t requires an an
ugly looking for loop.

This commit adds a little sugar in the form of a
ply_list_foreach macro in the name of convenience.
2022-11-29 09:22:06 -05:00
Ray Strode
0902c25eb6 Revert "Add input device support"
Apparently the:

[x] Squash commits

box was checked when merge request plymouth/plymouth!177 was merged.
Oops.

We want good commit messages for such a big change, though, so people
doing code spelunking later have a fighting chance of following what's
going on.

This reverts commit dacfb36b57.

Subsequents commits will bring it back, peicemeal.
2022-11-29 09:14:37 -05:00
Ray Strode
8475409813 Merge branch 'fix-terminal-crash' into 'main'
Fix terminal crash

Closes #196

See merge request plymouth/plymouth!213
2022-11-29 05:40:54 +00:00
Ray Strode
e58891856c device-manager: Make sure local console terminal is open
We need to make sure the local console terminal is open so that
when we check later if it's a vt or not we get a valid answer.

This commit adds the open call.

Closes: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/196
2022-11-28 19:33:29 -05:00
Ray Strode
8cb20287b0 device-manager: Ensure local_console_terminal isn't NULL
We thought we could get away with a NULL local_console_terminal
when the terminal isn't a VT, but it turns out we need it for
various reasons anyway.

This commit just makes sure we keep it in place.
2022-11-28 19:19:13 -05:00
Ray Strode
ca15d30c2f Merge branch 'vt-less_graphical' into 'main'
Allow Plymouth to use graphical backends on kernels without VT

See merge request plymouth/plymouth!179
2022-11-27 02:13:05 +00:00
n3rdopolis
8b1669acb2 device-manager: Support kernels with CONFIG_VT=n
At the moment, plymouth requires VT support be enabled in the kernel
to show graphical splashes.

This is because:

1. it relies on the tty to show details
2. when VT support is disabled the kernel will use ttyS0 as the default
console which makes plymouth disable graphical splashes since it assumes
the machine is a server with a serial console.

This commit addresses the first problem by disabling the
escape-to-toggle-details feature and addresses the second problem by
introducing a new kernel parameter plymouth.graphical that is like
the "splash" option and "plymouth.ignore-serial-consoles" option
combined.
2022-11-26 21:04:19 -05:00
Ray Strode
2165fe4f3b Merge branch 'dev_input' into 'main'
Add input device support

See merge request plymouth/plymouth!177
2022-11-27 01:38:00 +00:00
Diego Augusto
dacfb36b57 Add input device support 2022-11-27 01:38:00 +00:00
Ray Strode
1812e55afe Merge branch 'main' into 'main'
Add Hindi (hi) translation

See merge request plymouth/plymouth!212
2022-11-21 00:33:27 +00:00
Hemish
e28976464b Add Hindi (hi) translation 2022-11-21 05:47:39 +05:30