1
0
mirror of https://github.com/systemd/systemd synced 2025-09-29 08:44:45 +02:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Luca Boccassi
e52a1acb81 test: exit from test child processes
Otherwise the child processes will continue, return to the test
main function, and try to run other test cases themselves:

<...>
/* test_namespace_get_leader */
PID hierarchy: 553438 ← 553459 ← 553460
/* test_detach_mount_namespace_harder */
/* test_detach_mount_namespace_harder */
/* test_detach_mount_namespace_harder */

Follow-up for 0b8b13324e652cfc3b9f25dec0cf834705bbb8d0
2025-09-10 00:27:14 +01:00
Martin Homuth-Rosemann
3efabf88cd Add Hantek DSO-6022 oscilloscopes and compatible devices
Signed-off-by: Martin Homuth-Rosemann <Ho-Ro@users.noreply.github.com>
2025-09-09 23:19:32 +01:00
Raura
d18a6c861d
Remove mention of inactive Tanglu distro from systemd-nspawn man page (#38873)
Distribution seems inactive for a long time, and the mentioned website has disappeared.
https://distrowatch.com/table.php?distribution=tanglu
2025-09-09 22:19:46 +01:00
3 changed files with 60 additions and 2 deletions

View File

@ -16,6 +16,61 @@
usb:v1209p4D69*
ID_SIGNAL_ANALYZER=1
###########################################################
# Hantek DSO-6022 oscilloscopes and compatible devices
###########################################################
# Hantek DSO-6022BE w/o FW
usb:v04B4p6022*
ID_SIGNAL_ANALYZER=1
# Hantek DSO-6022BE with FW
usb:v04B5p6022*
ID_SIGNAL_ANALYZER=1
# Hantek DSO-6022BL w/o FW
usb:v04B4p602A*
ID_SIGNAL_ANALYZER=1
# Hantek DSO-6022BL with FW
usb:v04B5p602A*
ID_SIGNAL_ANALYZER=1
# Hantek DSO-6021 w/o FW
usb:v04B4p6021*
ID_SIGNAL_ANALYZER=1
# Hantek DSO-6021 with FW
usb:v04B5p6021*
ID_SIGNAL_ANALYZER=1
# Voltcraft DSO-2020, w/o FW, becomes DSO-6022BE with FW
usb:v04B4p2020*
ID_SIGNAL_ANALYZER=1
# YiXingDianZiKeJi MDSO w/o FW
usb:vD4A2p5660*
ID_SIGNAL_ANALYZER=1
# YiXingDianZiKeJi MDSO with FW
usb:v1D50p608E*
ID_SIGNAL_ANALYZER=1
# BUUDAI DDS120 w/o FW
usb:v8102p8102*
ID_SIGNAL_ANALYZER=1
# BUUDAI DDS120 with FW
usb:v04B5p0120*
ID_SIGNAL_ANALYZER=1
# Instrustar isds-205b w/o FW
usb:vD4A2p5661*
ID_SIGNAL_ANALYZER=1
# Instrustar isds-205b with FW
usb:v1D50p1D50*
ID_SIGNAL_ANALYZER=1
###########################################################
# Total Phase
###########################################################

View File

@ -1947,8 +1947,7 @@ After=sys-subsystem-net-devices-ens1.device</programlisting>
<para><command>debootstrap</command> supports
<ulink url="https://www.debian.org">Debian</ulink>,
<ulink url="https://www.ubuntu.com">Ubuntu</ulink>,
and <ulink url="https://www.tanglu.org">Tanglu</ulink>
and <ulink url="https://www.ubuntu.com">Ubuntu</ulink>
out of the box, so the same command can be used to install any of those. For other
distributions from the Debian family, a mirror has to be specified, see
<citerefentry project='die-net'><refentrytitle>debootstrap</refentrytitle><manvolnum>8</manvolnum></citerefentry>.

View File

@ -416,7 +416,11 @@ TEST(namespace_get_leader) {
ASSERT_TRUE(!pidref_equal(&pid2, &leader));
ASSERT_TRUE(!pidref_equal(&original, &leader));
ASSERT_TRUE(!pidref_equal(&grandparent, &leader));
_exit(EXIT_SUCCESS);
}
_exit(EXIT_SUCCESS);
}
}