1
0
mirror of https://github.com/systemd/systemd synced 2026-03-18 19:14:46 +01:00

Compare commits

..

No commits in common. "9573ad4e76d28b459123cfb4b5cffab474738ab3" and "a6ef85885076d3827a1bf00275309285834ddcc0" have entirely different histories.

5 changed files with 4 additions and 20 deletions

View File

@ -320,8 +320,6 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnAYANEO:pnKUN:pvr*
# multi-scancode sequence. The specific preceding codes # multi-scancode sequence. The specific preceding codes
# depend on the model, but the final scancode is always the # depend on the model, but the final scancode is always the
# same. # same.
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnAYA NEO:*
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnAYADEVICE:*
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnAYANEO:* evdev:name:AT Translated Set 2 keyboard:dmi:*:svnAYANEO:*
KEYBOARD_KEY_66=f15 # LC (All models) KEYBOARD_KEY_66=f15 # LC (All models)
KEYBOARD_KEY_67=f16 # RC (All models) KEYBOARD_KEY_67=f16 # RC (All models)
@ -1177,19 +1175,6 @@ evdev:atkbd:dmi:bvn*:bvr*:bd*:svnLENOVO:pn21LG:pvr*
KEYBOARD_KEY_0a=!9 KEYBOARD_KEY_0a=!9
KEYBOARD_KEY_0b=!0 KEYBOARD_KEY_0b=!0
# Lenovo Legion Go & Go S
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnLENOVO:pn83E1:*
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnLENOVO:pn83L3:*
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnLENOVO:pn83N6:*
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnLENOVO:pn83Q2:*
evdev:name:AT Translated Set 2 keyboard:dmi:*:svnLENOVO:pn83Q3:*
KEYBOARD_KEY_67=f16 # Power button long press
# Lenovo Legion Go 2
evdev:name:AT Raw Set 2 keyboard:dmi:*:svnLENOVO:pn83N0:*
evdev:name:AT Raw Set 2 keyboard:dmi:*:svnLENOVO:pn83N1:*
KEYBOARD_KEY_20=f16 # Power button long press
########################################################### ###########################################################
# LG # LG
########################################################### ###########################################################

View File

@ -616,7 +616,6 @@
<term><filename>/proc/cmdline</filename></term> <term><filename>/proc/cmdline</filename></term>
<listitem> <listitem>
<para>Specifies the kernel command line to use. The first of the files that is found will be used. <para>Specifies the kernel command line to use. The first of the files that is found will be used.
When running in a container, <filename>/proc/cmdline</filename> is ignored.
<varname>$KERNEL_INSTALL_CONF_ROOT</varname> may be used to override the search path; see below for <varname>$KERNEL_INSTALL_CONF_ROOT</varname> may be used to override the search path; see below for
details.</para> details.</para>

View File

@ -722,7 +722,7 @@
<listitem><para>Show a list of candidate block devices this command may operate on. Specifically, <listitem><para>Show a list of candidate block devices this command may operate on. Specifically,
this enumerates block devices currently present that contain a LUKS superblock, and shows their this enumerates block devices currently present that contain a LUKS superblock, and shows their
device node paths along with any of their symlinks. The devices must implement the device node paths along with any of their symlinks. The devices must implement the
<option>hmac-secret</option> extension to be usable.</para> <option>hmac-secret</option> extension to be useable.</para>
<xi:include href="version-info.xml" xpointer="v257"/></listitem> <xi:include href="version-info.xml" xpointer="v257"/></listitem>
</varlistentry> </varlistentry>

View File

@ -156,7 +156,7 @@ void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result) {
if (strcaseeq(scheme, "FILE") && result == CURLE_FILE_COULDNT_READ_FILE && j->on_not_found) { if (strcaseeq(scheme, "FILE") && result == CURLE_FILE_COULDNT_READ_FILE && j->on_not_found) {
_cleanup_free_ char *new_url = NULL; _cleanup_free_ char *new_url = NULL;
/* This resource wasn't found, but the implementer wants to maybe let us know a new URL, query for it. */ /* This resource wasn't found, but the implementor wants to maybe let us know a new URL, query for it. */
r = j->on_not_found(j, &new_url); r = j->on_not_found(j, &new_url);
if (r < 0) if (r < 0)
goto finish; goto finish;
@ -197,7 +197,7 @@ void pull_job_curl_on_finished(CurlGlue *g, CURL *curl, CURLcode result) {
if (status == 404 && j->on_not_found) { if (status == 404 && j->on_not_found) {
_cleanup_free_ char *new_url = NULL; _cleanup_free_ char *new_url = NULL;
/* This resource wasn't found, but the implementer wants to maybe let us know a new URL, query for it. */ /* This resource wasn't found, but the implementor wants to maybe let us know a new URL, query for it. */
r = j->on_not_found(j, &new_url); r = j->on_not_found(j, &new_url);
if (r < 0) if (r < 0)
goto finish; goto finish;

View File

@ -194,7 +194,7 @@ static int process_dmesg_files(PStoreList *list) {
* The dmesg- filename contains the backend-type and the Common Platform Error Record, CPER, * The dmesg- filename contains the backend-type and the Common Platform Error Record, CPER,
* record id, a 64-bit number. * record id, a 64-bit number.
* *
* Files are processed in reverse lexicographical order so as to properly reconstruct original dmesg. */ * Files are processed in reverse lexigraphical order so as to properly reconstruct original dmesg. */
for (size_t n = list->n_entries; n > 0; n--) { for (size_t n = list->n_entries; n > 0; n--) {
PStoreEntry *pe; PStoreEntry *pe;