1
0
mirror of https://github.com/systemd/systemd synced 2026-03-26 08:44:55 +01:00

Compare commits

..

No commits in common. "9b42cc3b12c17a4b02d713b2ad499a74acecea1f" and "d36ddefb51dd445a8fa362477ba452e62f8ee29d" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

@ -43,7 +43,6 @@ 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
########################################################### ###########################################################

View File

@ -617,13 +617,7 @@ 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:
# Tracing is not supported in centos/fedora qemu builds cmd += ['--qemu-args=-d cpu_reset,guest_errors -D /dev/stderr']
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)

View File

@ -8630,6 +8630,7 @@ 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')