mirror of
https://github.com/systemd/systemd
synced 2026-03-26 08:44:55 +01:00
Compare commits
3 Commits
d36ddefb51
...
9b42cc3b12
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b42cc3b12 | ||
|
|
6c9b778076 | ||
|
|
afcc0ca509 |
@ -43,6 +43,7 @@ touchpad:bluetooth:*
|
|||||||
# Magic Trackpad (1 and 2)
|
# Magic Trackpad (1 and 2)
|
||||||
touchpad:usb:v05acp030e:*
|
touchpad:usb:v05acp030e:*
|
||||||
touchpad:usb:v05acp0265:*
|
touchpad:usb:v05acp0265:*
|
||||||
|
touchpad:usb:v05acp0324:*
|
||||||
ID_INPUT_TOUCHPAD_INTEGRATION=external
|
ID_INPUT_TOUCHPAD_INTEGRATION=external
|
||||||
|
|
||||||
###########################################################
|
###########################################################
|
||||||
|
|||||||
@ -617,7 +617,13 @@ def main() -> None:
|
|||||||
|
|
||||||
# XXX: debug for https://github.com/systemd/systemd/issues/38240
|
# XXX: debug for https://github.com/systemd/systemd/issues/38240
|
||||||
if vm:
|
if vm:
|
||||||
cmd += ['--qemu-args=-d cpu_reset,guest_errors -D /dev/stderr']
|
# Tracing is not supported in centos/fedora qemu builds
|
||||||
|
if summary.distribution in ('centos', 'fedora'):
|
||||||
|
cmd += ['--qemu-args=-d cpu_reset,guest_errors -D /dev/stderr']
|
||||||
|
else:
|
||||||
|
cmd += [
|
||||||
|
'--qemu-args=-d cpu_reset,guest_errors,trace:kvm_run_exit_system_event,trace:qemu_system_\*_request -D /dev/stderr' # noqa: E501
|
||||||
|
]
|
||||||
|
|
||||||
try:
|
try:
|
||||||
result = subprocess.run(cmd)
|
result = subprocess.run(cmd)
|
||||||
|
|||||||
@ -8630,7 +8630,6 @@ class NetworkdDHCPClientTests(unittest.TestCase, Utilities):
|
|||||||
|
|
||||||
start_networkd()
|
start_networkd()
|
||||||
self.wait_online('veth-peer:carrier')
|
self.wait_online('veth-peer:carrier')
|
||||||
masq = lambda bs: ':'.join(f'{b:02x}' for b in bs)
|
|
||||||
start_dnsmasq('--dhcp-option=114,http://|invalid/url',
|
start_dnsmasq('--dhcp-option=114,http://|invalid/url',
|
||||||
'--dhcp-option=option6:103,http://|invalid/url')
|
'--dhcp-option=option6:103,http://|invalid/url')
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user