summaryrefslogtreecommitdiffstats
path: root/man/systemd-environment-d-generator.xml (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-12-06meson: remove openssl dependency from repartLuca Boccassi1-4/+2
No longer needed since ade99252e2cdd9eeff78566789008996d27e4dc0
2021-12-06tree-wide: check for NULLs in more placesFrantisek Sumsal7-0/+22
Fixes issues pointed out by the `cpp/inconsistent-null-check` LGTM query.
2021-12-05NEWS: add more entries for v250Luca Boccassi1-5/+61
2021-12-04sd-netlink: fix implicit cast to booleanYu Watanabe1-2/+2
2021-12-04network: set MTU after IPoIB configs are appliedYu Watanabe1-2/+12
MTU is updated when IB mode is changed.
2021-12-04network: add support to configure IPoIB interfacesYu Watanabe10-1/+98
2021-12-04network/netdev: add support to create IPoIB subinterfaceYu Watanabe13-14/+248
2021-12-04sd-netlink: add support for IPoIBYu Watanabe1-3/+7
2021-12-04network/netdev: generate persistent MAC address when creating netdev interfaceYu Watanabe3-22/+36
Preparation for later commits.
2021-12-03ci: consider `cryptolib` in the group identifierFrantisek Sumsal1-1/+1
otherwise we end up with more than one job with the same identifier in one run, causing some of them to get cancelled unexpectedly. A quick follow-up to 85bd394df57fe45c2873605e2c1d1d79e83e853d.
2021-12-03ci: install libbpfFrantisek Sumsal1-1/+2
2021-12-03analyze: fix build with -Db_ndebug=trueFrantisek Sumsal1-1/+1
2021-12-03meson: support versioned llvm binaries in BPF detectionFrantisek Sumsal1-2/+11
2021-12-03Bump the max number of inodes for /dev to 128kFranck Bui1-2/+2
Follow-up for 7d85383edbab73274dc81cc888d884bb01070bc2. Apparently the previous limit set on the max number of inodes for /dev was too small as a system with 4096 LUNs attached can consume up to 95k inodes for symlinks: # /bin/df -i Filesystem Inodes IUsed IFree IUse% Mounted on devtmpfs 49274377 95075 49179302 1% /dev Hence this patch bumps the limit from 64k to 128k although the new limit is still pretty arbitrary (that said, not sure if it really makes sense to put such absolute limit number).
2021-12-03cryptenroll: fix wrong error messagesGibeom Gwon1-2/+2
PKCS#11 -> FIDO2 in cryptenroll-fido2.c
2021-12-02meson: correctly display enabled featuresFrantisek Sumsal1-2/+2
In 9cf75222f20 the conf.get() statements for `bpf-framework` and `valgrind` were dropped, which causes the respective features to always show as disabled (since they don't follow the "standard" naming scheme with HAVE_/ENABLE_ prefixes).
2021-12-02lgtm: enable more (and potentially useful) queriesFrantisek Sumsal1-0/+21
Not all available queries on LGTM are enabled by default, but some of the excluded ones might come in handy, hence let's enable them explicitly.
2021-12-02lgtm: don't treat the custom note as a list of tagsFrantisek Sumsal1-4/+6
Just a cosmetic change.