mirror of
https://github.com/systemd/systemd
synced 2026-03-26 00:34:53 +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)
|
||||
touchpad:usb:v05acp030e:*
|
||||
touchpad:usb:v05acp0265:*
|
||||
touchpad:usb:v05acp0324:*
|
||||
ID_INPUT_TOUCHPAD_INTEGRATION=external
|
||||
|
||||
###########################################################
|
||||
|
||||
@ -617,7 +617,13 @@ def main() -> None:
|
||||
|
||||
# XXX: debug for https://github.com/systemd/systemd/issues/38240
|
||||
if vm:
|
||||
# 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:
|
||||
result = subprocess.run(cmd)
|
||||
|
||||
@ -8630,7 +8630,6 @@ class NetworkdDHCPClientTests(unittest.TestCase, Utilities):
|
||||
|
||||
start_networkd()
|
||||
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',
|
||||
'--dhcp-option=option6:103,http://|invalid/url')
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user