Compare commits
No commits in common. "1a92b3f2ecfc143155e5fafee49fe5bf345f46ee" and "8c99d40d47292e8c1be8c159943a2d8781b9d3e9" have entirely different histories.
1a92b3f2ec
...
8c99d40d47
|
@ -353,10 +353,6 @@ sensor:modalias:acpi:BOSC0200*:dmi:bvnINSYDECorp.:bvrjumperx.T87.KFBNEE*
|
||||||
sensor:modalias:acpi:BOSC0200*:dmi:*:svnJumper:pnEZpad:*:rvr.A006:*
|
sensor:modalias:acpi:BOSC0200*:dmi:*:svnJumper:pnEZpad:*:rvr.A006:*
|
||||||
ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, -1, 0; 0, 0, 1
|
ACCEL_MOUNT_MATRIX=-1, 0, 0; 0, -1, 0; 0, 0, 1
|
||||||
|
|
||||||
# EZpad Go
|
|
||||||
sensor:modalias:acpi:KIOX000A*:dmi:bvnAmericanMegatrendsInc.:*:svnjumper:pnEZpad:*:ct31:*
|
|
||||||
ACCEL_MOUNT_MATRIX=1, 0, 0; 0, -1, 0; 0, 0, 1
|
|
||||||
|
|
||||||
#########################################
|
#########################################
|
||||||
# Kazam
|
# Kazam
|
||||||
#########################################
|
#########################################
|
||||||
|
|
|
@ -441,14 +441,10 @@ mouse:usb:v046dpc52b:name:Logitech Unifying Device. Wireless PID:1017:
|
||||||
mouse:usb:v046dp1017:name:Logitech Anywhere MX:
|
mouse:usb:v046dp1017:name:Logitech Anywhere MX:
|
||||||
MOUSE_WHEEL_CLICK_ANGLE=20
|
MOUSE_WHEEL_CLICK_ANGLE=20
|
||||||
|
|
||||||
# Logitech Anywhere MX 2S (via Logitech Unifying Receiver)
|
# Logitech Anywhere MX 2S
|
||||||
mouse:usb:v046dp406a:name:Logitech MX Anywhere 2S:
|
mouse:usb:v046dp406a:name:Logitech MX Anywhere 2S:
|
||||||
MOUSE_WHEEL_CLICK_ANGLE=20
|
MOUSE_WHEEL_CLICK_ANGLE=20
|
||||||
|
|
||||||
# Logitech Anywhere MX 2S (via Bluetooth)
|
|
||||||
mouse:bluetooth:v046dpb01a:name:MX Anywhere 2S Mouse:
|
|
||||||
MOUSE_WHEEL_CLICK_ANGLE=20
|
|
||||||
|
|
||||||
# Logitech MX Master
|
# Logitech MX Master
|
||||||
# Horiz wheel has 14 stops, angle is rounded up
|
# Horiz wheel has 14 stops, angle is rounded up
|
||||||
mouse:usb:v046dp4060:name:Logitech MX Master:
|
mouse:usb:v046dp4060:name:Logitech MX Master:
|
||||||
|
|
|
@ -1113,7 +1113,7 @@
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
<term><varname>ConditionVirtualization=</varname></term>
|
<term><varname>ConditionArchitecture=</varname></term>
|
||||||
|
|
||||||
<listitem><para>Check whether the system is executed in a virtualized environment and optionally
|
<listitem><para>Check whether the system is executed in a virtualized environment and optionally
|
||||||
test whether it is a specific implementation. Takes either boolean value to check if being executed
|
test whether it is a specific implementation. Takes either boolean value to check if being executed
|
||||||
|
|
|
@ -173,7 +173,6 @@ static void test_proc_cmdline_get_bool(void) {
|
||||||
assert_se(putenv((char*) "SYSTEMD_PROC_CMDLINE=") == 0);
|
assert_se(putenv((char*) "SYSTEMD_PROC_CMDLINE=") == 0);
|
||||||
assert_se(putenv((char*) "SYSTEMD_EFI_OPTIONS=foo_bar bar-waldo=1 x_y-z=0 quux=miep\nda=yes\nthe=1") == 0);
|
assert_se(putenv((char*) "SYSTEMD_EFI_OPTIONS=foo_bar bar-waldo=1 x_y-z=0 quux=miep\nda=yes\nthe=1") == 0);
|
||||||
|
|
||||||
#if ENABLE_EFI
|
|
||||||
assert_se(proc_cmdline_get_bool("", &value) == -EINVAL);
|
assert_se(proc_cmdline_get_bool("", &value) == -EINVAL);
|
||||||
assert_se(proc_cmdline_get_bool("abc", &value) == 0 && value == false);
|
assert_se(proc_cmdline_get_bool("abc", &value) == 0 && value == false);
|
||||||
assert_se(proc_cmdline_get_bool("foo_bar", &value) > 0 && value == true);
|
assert_se(proc_cmdline_get_bool("foo_bar", &value) > 0 && value == true);
|
||||||
|
@ -187,7 +186,6 @@ static void test_proc_cmdline_get_bool(void) {
|
||||||
assert_se(proc_cmdline_get_bool("quux", &value) == -EINVAL && value == false);
|
assert_se(proc_cmdline_get_bool("quux", &value) == -EINVAL && value == false);
|
||||||
assert_se(proc_cmdline_get_bool("da", &value) > 0 && value == true);
|
assert_se(proc_cmdline_get_bool("da", &value) > 0 && value == true);
|
||||||
assert_se(proc_cmdline_get_bool("the", &value) > 0 && value == true);
|
assert_se(proc_cmdline_get_bool("the", &value) > 0 && value == true);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void test_proc_cmdline_get_key_many(void) {
|
static void test_proc_cmdline_get_key_many(void) {
|
||||||
|
|
Loading…
Reference in New Issue