summaryrefslogtreecommitdiffstats
path: root/Makefile (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-08-11ci: simplify the Coverity script a bitFrantisek Sumsal3-263/+44
Also, address https://github.com/systemd/systemd/pull/24252#issuecomment-1208747320 by using a pre-defined e-mail address stored in the GH Action secrets.
2022-08-11resolvctl: only remove protocol after last dot when mangling ifname for ↵exploide1-1/+1
resolvconf ifname_resolvconf_mangle is supposed to remove protocol suffixes like .dhcp from interface names. But this removed also valid parts of the ifname like VLAN IDs, e.g. enp2s0u4.72.dhcp -> enp2s0u4 instead of enp2s0u4.72 After this change, everything behind the last dot is removed instead of the first.
2022-08-11oomd: notify via dbus what have been killedOleg Solovyov3-3/+57
2022-08-11core/scope: Add oom-kill status for scope units (#24269)gtwang012-0/+30
Closes #23557.
2022-08-10oom: drop invalid %m in the log messageYu Watanabe1-1/+1
Fixes https://github.com/systemd/systemd/issues/23785#issuecomment-1210030100.
2022-08-10tree-wide: fix typoYu Watanabe5-5/+5
2022-08-10meson: Test correct efi linker for supported argsJan Janssen1-5/+13
Fixes: #24241
2022-08-09po: Translated using Weblate (Hungarian)Balázs Meskó1-225/+139
Currently translated at 100.0% (189 of 189 strings) Co-authored-by: Balázs Meskó <meskobalazs@mailbox.org> Translate-URL: https://translate.fedoraproject.org/projects/systemd/master/hu/ Translation: systemd/main
2022-08-09meson: use 'not in'Yu Watanabe1-1/+1
Follow-ups for 60f97fee2d2f948c8e8963ea8ff767008cb93cae and 32963344736004e01ff4dd9dca079faabaf58cf2.
2022-08-09mkosi: Don't use InstallDirectory by defaultDaan De Meyer1-1/+0
While this provides some marginal speedup, the disadvantage is that files are never removed when doing cached builds, which can sometimes lead to hard to debug issues. So let's not do this by default.
2022-08-09mkosi: Use mkosi.output/ as output directory by defaultDaan De Meyer1-0/+1
Better than creating a mess of output files in the root directory.
2022-08-09sleep: support multiple battery instead of only BAT0Sonali Srivastava3-116/+363
2022-08-09hwdb: Add Greaseweazle "drives" to the list of analyzersBastien Nocera1-0/+7
They're floppy disk flux readers and writers used in digital preservation and can be broadly considered to be "analyzers" of magnetic fluxes. This will have the intended side-effect of giving access to the device to users at the console, obsoleting: https://github.com/keirf/greaseweazle/blob/master/scripts/49-greaseweazle.rules
2022-08-09hwdb: Allow users access to USB serial for analysersBastien Nocera1-0/+1
Allow users at the console access to the USB serial interface for USB analysers. See 9e2dbfef479060ed850ccdd9cd82d3f0cda2b5c0
2022-08-09hwdb: analyzers: Clarify the type of devices we want listedBastien Nocera1-2/+3
2022-08-09NEWS: add entries for v252Zbigniew Jędrzejewski-Szmek1-1/+148
2022-08-09test-network: split out qdisc and wait-online tests from NetworkdNetworkTestsYu Watanabe1-0/+16
2022-08-09test-network: split test_qdisc() and test_qdisc2()Yu Watanabe16-294/+391
And check module availability in each tests. This also sorts qdisc tests.
2022-08-09test-network: check qdisc feature by module existenceYu Watanabe1-50/+5
2022-08-09test-network: rename tun99 and tap99Yu Watanabe3-13/+7
The names seem to be used in AWS. This also merges test_tun() and test_tap().
2022-08-09test-network: show stdout and stderr on failure in check_output()Yu Watanabe1-2/+7
2022-08-09test-network: drop unused text= argumentsYu Watanabe1-8/+8
2022-08-09test-network: also run timesyncd under sanitizer or valgrindYu Watanabe1-89/+84
2022-08-09test-network: use timedatectl in build directoryYu Watanabe1-2/+2
2022-08-09network/teql: wait for corresponding teql interface to be availableYu Watanabe1-0/+16
2022-08-09network/qdisc: introduce is_ready() in qdisc vtableYu Watanabe2-3/+11
Preparation for next commit.
2022-08-09core/cgroup: use bus locator (#24251)josh-gordon-fb1-8/+7
2022-08-09tree-wide: use bus locator (#24252)gtwang014-24/+18
This modifies some sd_bus calls to equivalent bus calls.
2022-08-08sysusers: properly process user entries with an explicit GIDLuca BRUNO1-2/+4
This tweaks user creation logic to properly take into consideration an explicitly requested GID. It fixes a bug where the creation flow would mistakenly fall back to use the username instead, resulting in wrong lookups in case of users and groups using the same name.
2022-08-08sysusers: only check whether the requested GID is availableLuca BRUNO1-13/+15
This relaxes the availability check when creating a group, if an explicit GID has been requested. It avoids mixing up users and groups entries with valid and unique UIDs/GIDs, but each having the same ID number.
2022-08-08kmod-setup: load dmi-sysfs if it's a moduleLudwig Nussel1-0/+3
2022-08-08test: add tests for sd_device_enumerator_add_match_sysattr/property()Yu Watanabe1-0/+43
2022-08-08sd-device-enumerator: FOREACH_DEVICE_PROPERTY() does not provide NULL valueYu Watanabe4-21/+15
Hence, when sd_device_enumerator_add_match_property() called with NULL for value, then the filter always unmatches with the device.
2022-08-08sd-device-enumerator,monitor: fix sysattr matchYu Watanabe4-17/+68
Previously, if sd_device_enumerator_add_match_sysattr() is called for the same sysattr with different values, then no device passed the filter. Now, the accepted values (or patterns) are stored in strv, and if the sysattr value of a device matches with the strv, then the device passes the filter.
2022-08-08cryptsetup: support keyfile-timeout for using a device as the key fileChih-Hsuan Yen2-8/+21
Closes https://github.com/systemd/systemd/issues/21993
2022-08-08hash-funcs: introduce string_hash_ops_free_strv_freeYu Watanabe2-0/+5
2022-08-08stub: Use EfiLoaderCode for kernel memoryJan Janssen1-1/+1
Fixes: #24237
2022-08-08Fix issue with system time set back (#24131)João Loureiro2-23/+39
Fixes #6036
2022-08-08shared/generator: Ensure growfs unit runs after repartundef1-1/+1
When deploying an image using systemd-repart and systemd-growfs one should have the image expanded entirely and ready to use after the first boot. This ensures that growfs does not occur before repart, thus requiring a second boot.
2022-08-08update TODOLennart Poettering1-0/+5
2022-08-08dhcp: add assertions about client stateYu Watanabe1-5/+22
2022-08-08docs: mkosi-13 or newer requiredSonali Srivastava1-4/+5
2022-08-06boot: Build with at least -O1 as workaroundJan Janssen1-0/+6
Fixes: #24202
2022-08-06dhcp: fix potential buffer overflowYu Watanabe3-12/+12
Fixes a bug introduced by 324f818781a250b60f2fcfa74ff1c9101d2d1315. This also renames several macros for DHCP packet size.
2022-08-05dhcp: make dhcp_network_bind_raw_socket() take struct hw_addr_dataYu Watanabe5-69/+86
2022-08-05dhcp: make dhcp_identifier_set_duid() take struct hw_addr_dataYu Watanabe4-23/+32
2022-08-05dhcp: make dhcp_identifier_set_iaid() take struct hw_addr_dataYu Watanabe5-20/+27
2022-08-05sd-dhcp6-client: use hw_addr_set()Yu Watanabe1-2/+1
2022-08-05sd-dhcp-client: use struct hw_addr_data to store MAC and broadcast addressYu Watanabe2-36/+22
2022-08-05ether-addr-util: introduce hw_addr_set() helper functionYu Watanabe2-0/+11