| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
Combine all the common path validation in a function to avoid code
duplication.
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: ebd12b10d17db0b4176b0188407d7e9b8420eab1)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Allow specifying an optional destination to include-path and make the
option aware of permissions and owners.
It is very useful for making a partition that contains the rootfs for a
host and a target Eg:
/ -> Roofs for the host
/export/ -> Rootfs for the target (which will netboot)
Although today we support making a partition for "/export" this might
not be compatible with some upgrade systems, or we might be limited by
the number of partitions.
With this patch we can use something like:
part / --source rootfs --fstype=ext4 --include-path core-image-minimal-mtdutils export/ --include-path hello
on the .wks file.
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: e8c21c6ebaebde88151697381bdb2452f1171090)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
Executables like tar won't be available on the native sysroot, as they
are part of the ASSUME_PROVIDED variable.
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: 2f574d535f8665b26dab65c14668cf8fc7b751c0)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Make sure that the permissions and username are respected when using all
the rootfs modifiers.
Add tests for change-directory command
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: 4aad9531df44d1b0637bd559161702ad86861b46)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If the source of the rootfs is not a bitbake cooked image, or it is not
pointing to the root of one, we call pseudo again, which will produce
a new pseudo folder at rootfs/../pseudo
Eg:
part /etc --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/home --fstype=ext4
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: 799a24ae78655f7a3eda7456b1a0ffaf3e43ec16)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If an excuded path does not exist, continue without an error.
This allows to seamleasly reuse .wks among different projects.
Eg:
part / --source rootfs --fstype=ext4 --exclude-path=opt/private_keys
Where /opt/private_keys in only populated by some of the image.bb files.
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: 2dbd692b8e563cf991fb4ae1ef6129fda0d7e3c4)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This option allows to specify which part of a rootfs is going to be
included, the same way the -C argument on tar.
Thanks to this option we can make sure the permissions and usernames
on the target partition are respected, and also simplify the creation of
splitted partitons, not neeting to invoke external vars or using .wks.in
files. Eg:
part / --source rootfs --ondisk sda --fstype=ext4 --exclude-path=etc/
part /etc --source rootfs --fstype=ext4 --change-directory=etc
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: 2265d089a58e1f78f26d623ee667c420cb1c3bd4)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In order to support .wks files with multiple images inside bitbake we
need to explicitly set the pseudo database in use.
Eg: If we try this .mks:
part / --source rootfs --ondisk sda --fstype=ext4
part /export --source rootfs --rootfs=core-image-minimal-mtdutils --fstype=ext4
The username for all the files under /export will be set to the runner
of bitbake (usually UID 1000).
Before we run wic, we need to make sure that the pseudo database will be
flushed, and contains all the data needed.
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: dde90a5dd2b22a539095d1bac82acc15c6380ac8)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When parameters include_path or exclude_path are passed to the rootfs
plugin, it will copy the partition content into a folder and make all
the modifications there.
This is done using copyhardlinktree(), which does not take into
consideration the content of the pseudo folder, which contains the
information about the right permissions and ownership of the folders.
This results in a rootfs owned by the user that is running the wic
command (usually UID 1000), which makes some rootfs unbootable.
This bug can be easily triggerd with the following .wks
part / --source rootfs --fstype=ext4 --exclude-path=home
And this sequence:
$ wic create test-permissions -e core-image-minimal -o test/
$ sudo mount test/test-permissions-202004080823-sda.direct.p1 /mnt
$ ls -la /mnt/etc/shadow
To fix this we copy the content of the pseudo folders to the new folder
and modify the pseudo database using the "pseudo -B" command.
If the rootfs is not a rootfs generated by bitbake a warning is shown
making the user aware that the permissions on the target might not match
what he expects.
WARNING: /tmp/test/../pseudo folder does not exist. Usernames and permissions will be invalid
Cc: Paul Barker <pbarker@konsulko.com>
(From OE-Core rev: fd739c15cdba221d9d497d3402b7d929c0be2ca4)
Signed-off-by: Ricardo Ribalda Delgado <ricardo@ribalda.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If there are different providers of a file and they are swiched when the
recipe isn't machine specific, we can get tracebacks due to the overlapping
files. The issue is that the previous provider isn't uninstalled since
the system can't tell whether some later task needs them.
By tracking which tasks we depend upon, the code can now choose to
uninstall more things since a later task can reinstall if/as needed.
The code here was to protect against code with two different tasks
running in parallel which is still protected agaisnt.
[YOCTO #13702]
(From OE-Core rev: 9d8e6daa866d2f19b2a6324072b984a866715426)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
sysroot-test depends on virtual/sysroot-test which we build for one machine,
switch machine, switch provider of virtual/sysroot-test and check that the
sysroot is correctly cleaned up. The files in the two providers overlap
so can cause errors if the sysroot code doesn't function correctly.
Yes, sysroot-test should be machine specific really to avoid this, however
the sysroot cleanup should also work.
This adds a test for bug:
[YOCTO #13702]
(From OE-Core rev: 24ca62b3c1fd404b67d549b29aeeacf913e6dc86)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
provides original name
Packages with a runtime dependency on a target package whose name is
changed by the PKG_* mechanism must rebuild when that mapping changes,
but we have no way of tracking this today, so
eg. packagegroup-machine-base ends up with a relationship on a
versioned kernel-image, and does not get rebuilt when that version
changes, leading to unsatisfiable dependency and reproducibility
issue.
OTOH there is no reason for the dependency to get rewritten if the
renamed package already has a RPROVIDES on the non-rewritten package
name, and if the dependency relationship is an unversionned one. This
is what this patch prevents.
Note that this may not cover all cases of rewritten package names.
Notably I had to let the rewrite be done in the case of versionned
dependencies, as package managers usually can follow "Provides" in
such case; this includes many dependencies against shared-lib packages
renamed to their soname, and those at least are OK, since the
dependent recipe should explicitly depend on the target recipe.
(From OE-Core rev: 920beaaeef62b558e046f32c8ef0332250969ef1)
Signed-off-by: Yann Dirson <yann@blade-group.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
This ensures that we have go compiler installed into image along with
runtime
(From OE-Core rev: 14db3e42faf28b8157a04435ea74e86b5e7d440a)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
go compiler is including go/src/cmd modules in -dev package which is in
conflict with go-runtime-dev which provides exact same copy of this
module along with other runtime modules, as a result when both go-dev and
go-runtime-dev are included in image then it results in rootfs failures,
here lets make go depend on go-runtime and dont install the cmd module
here explicitly.
(From OE-Core rev: 307ad88822950e8523b313d70a1fbab87048fa8d)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
By default, use the extended buildtools installer from the
Yocto Project 3.1 "dunfell" release.
(From OE-Core rev: abd9bf4428e024f4fbcabd75235965769c03f2db)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Yocto Bug: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13806
Add test_preserve_ownership to selftest/package.
This test creates a file, a directory and a symbolic link and changes ownership,
then compares with them installed in rootfs to ensure ownership is preserved.
[Test without a commit 'bitbake: lib/bb/utils.py: Preserve ownership of symlink']
| 2020-03-14 10:01:14,519 - oe-selftest - INFO - test_preserve_ownership (package.PackageTests)
| 2020-03-14 10:56:44,612 - oe-selftest - INFO - Check ownership of /etc/selftest-chown/file
| 2020-03-14 10:56:44,770 - oe-selftest - INFO - Check ownership of /etc/selftest-chown/dir
| 2020-03-14 10:56:44,822 - oe-selftest - INFO - Check ownership of /etc/selftest-chown/symlink
| 2020-03-14 10:56:44,879 - oe-selftest - ERROR - Incrrect ownership /etc/selftest-chown/symlink [root:root]
| 2020-03-14 10:56:45,884 - oe-selftest - INFO - ... FAIL
[Test with a commit 'bitbake: lib/bb/utils.py: Preserve ownership of symlink']
| 2020-03-14 10:58:49,599 - oe-selftest - INFO - test_preserve_ownership (package.PackageTests)
| 2020-03-14 11:51:39,947 - oe-selftest - INFO - Check ownership of /etc/selftest-chown/file
| 2020-03-14 11:51:40,013 - oe-selftest - INFO - Check ownership of /etc/selftest-chown/dir
| 2020-03-14 11:51:40,063 - oe-selftest - INFO - Check ownership of /etc/selftest-chown/symlink
| 2020-03-14 11:51:41,118 - oe-selftest - INFO - ... ok
(From OE-Core rev: 88c1824468109d0f78d5fee7b71baa1f3944db7f)
Signed-off-by: Daisuke Yamane <daisuke.yamane@cybertrust.co.jp>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
"Mini debuginfo" is a special section in ELF executables containing
minimal compressed debuginfo for non-exported symbols:
https://sourceware.org/gdb/onlinedocs/gdb/MiniDebugInfo.html
It lets debugging tools produce better stack traces, including local
function names, without incurring the space overhead of full debuginfo.
The feature was originally developed for Fedora:
https://fedoraproject.org/wiki/Features/MiniDebugInfo
but nowadays it is widely supported in the ecosystem, including in gdb
and elfutils (and therefore also in tools which use elfutils, such as
systemd-coredump).
This patch adds an optional extra step in package.bbclass to inject
minidebuginfo while stripping and splitting out debuginfo. It can be
enabled by setting PACKAGE_MINIDEBUGINFO=1. In my testing, this
increases the size of resulting binaries by roughly 5%.
The code for producing and re-injecting the minidebuginfo is my own
Python implementation but corresponds directly to the shell
implementation that RPM uses for doing the same:
https://github.com/rpm-software-management/rpm/blob/rpm-4.15.1-release/scripts/find-debuginfo.sh#L261
(From OE-Core rev: 4df992ce50c2d12e356b6d9fe7b23a6320c8b4df)
Signed-off-by: Dan Callaghan <dan.callaghan@opengear.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Refresh patches for v245.5, enable userdb by default. Update musl
patches for additional missing stdlib headers. Add musl patch to avoid
gshadow.
Commits:
c5e346905952 network: fix static assertion on IPPROTO_MAX range
a71980e03037 resolved: tone down comment in /run/systemd/{stub-,}resolve.conf
7a2b5237d111 logind: skip polkit query with --no-wall
e7ee90637194 verify: ignore nonexistent executables if required
037b5e2281fe hwdb: optimize isatty()-per-line away
2099a9e58d64 fileio: extend comment a bit
abbfa8fdfa5a fileio: optionally allow telling read_line_full() whether we are processing a tty or not
10731dde4240 fileio: fileno() can realistically return -1
40b2a5975cbe coredumpctl: support --file=PATH
059211c7c612 Fix pam_systemd_home's debug parameter to match man page description
c4883fe438af core: make sure ProtectHostname= is handled gracefully in containers lacking seccomp
3ad42f3837b1 test: wait a bit after stopping the test service
76e0d8b38016 catalog: add entry for SD_MESSAGE_UNSAFE_USER_NAME
ed86450ff452 docs: hook up the new USER_NAMES document everywhere
64fdacd5f13e user-util: rework how we validate user names
110d89cb652d userdbctl: drop redundant user name validity check
f0300901bac4 man: explicitly note that ExecSt*Post does count for After/Before ordering
78b3f7348d7e sleep: improve log msg slightly
680d485902fc man: correct the default slice for systemd-run units
e04ee3c70889 hwdb: Update database of Bluetooth company identifiers
d830b0574ee3 detect-virt: also detect "microsoft" as WSL
dea7e0dd97d3 dbus-execute: show also ProtectClock
8a2b89b5d6f5 man: add note that --no-hostname has limited effect
8b0368f5111f journal-remote: fix description of option
da2125b6a23b capability: don't skip ambient caps setup if we actually have something to set
e3b6d65c5386 shared/dissect-image: log messages from cryptsetup
9c61b53c748f resolve: reload /etc/hosts on inode change
d540b947f41d string-util: make sure we eat even half complete words in split()
3fa7fdce595c udev: Fix SIGSEGV in AlternativeNamesPolicy handling
2c4229221c77 man: mention that stdout logging works the same as stderr logging
1e4711af5b98 userwork: fix signal worker sends to manager requesting more workers
c7f9da1e4a32 units: do not pull in home.mount from systemd-homed.service
3469a951fad8 home: fix several typos
2c5ae0f58a0c homectl: fix a typo
5eedafd01a0e import: Only keep RO copy if ETag header is set
5b434d720959 nss-systemd: add missing jump to unlock mutex
1a2f596bcb14 basic: Fix capability_ambient_set_apply for kernels < 4.3
e4b7c40dca12 sd-journal: remove the dead code and actually fix #14695
a0b77ea24b31 user-util: switch order of checks in valid_user_group_name_or_id_full()
d71c24910d01 user-util: Allow names starting with a digit
9ac30702856d Remove stale doc about PrivateNetwork and type
d822e2a5247c Add `shell` to machinectl ZSH completion
60521ea90446 Silence Wstring-plus-int warning when using clangd with GCC.
e6fcb95f4ae0 path-lookup: Use default value for XDG_CONFIG_DIRS if environment is not set
0f5047b7d393 network: DHCP lease load SIP copy paste error
98a349465291 davfs is a network file system
9b52ce58de50 units: Don't mount tracefs in LXC
cd6ff773bd1f swap: check p->what for NULL
9ac1ab165803 login: allow non-console sessions to change vt
8f0feac20f7d logind: log a more accurate error when we failed at session creation
a0b4460e49d0 core: add support for setting CPUAffinity= to special "numa" value
e3b12a749d71 shared: split out NUMA code from cpu-set-util.c to numa-util.c
d1d3f2aa1561 docs: Add syntax for templated units to systemd.preset man page
3c69813c69af man: add a tiny bit of markup
bf595e788c56 home: fix segfault when parsing arguments in PAM module
e110f4dacb6d test: wait a bit after starting the test service
e8df08cfdb20 fix journalctl regression (#15099)
eb3a38cc23b2 NEWS: add late note about job trimming issue
405f0fcfddb2 systemctl: hide the 'glyph' column when --no-legend is requested
1c7de81f89ef format-table: allow hiding a specific column
b7f2308bda49 core: transition to FINAL_SIGTERM state after ExecStopPost=
2867dfbf70a5 journalctl: show duplicate entries if they are from the same file (#14898)
af339a3122be namespace: ignore prefix chars when comparing paths
d58988be7fab udev: fix SECLABEL{selinux} issue (#15064)
98f8a718c161 dissect-image: avoid scanning partitions
35c4d42040ec test: ignore IAB capabilities in `test-execute`
40737329d960 test: add a test case for migrating DynamicUser=yes to no
705938529062 execute: Fix migration from DynamicUser=yes to no
ec458d20b268 homed: replace "home directory" with "home area" in a few places
20a7592edf5f shared/ask-password-api: do not show hint on echo
084df9c616fd analyze: fix table time output
9251cac7b296 Support compiling with clang and gnu11 standard
ffccc15f725f Typo fix
1777c7f70d4d Update Croatian translation (#15042)
73678d230704 boot: Ensure ARM UEFI binary does not contain FP/SIMD instructions
b7cf4b4ef5d0 core: Fix resolution of nested DM devices for cgroups
57680ddd4035 Fix typo on initrd-root-device.target
03985d069b52 NEWS: final contributor update for v245
0d5aef3eb513 hwdb: update for v245
9cbf1e58f962 units: skip modprobe@.service if the unit appears to be already loaded
ff12a7954c19 treewide: more portable bash shebangs
eda0cbf07186 Use Finished instead of Started for Type=oneshot services (#14851)
d48eea583fd8 units: make systemd-network-generator.service stay around
94c3a838da69 systemctl: make list-dependencies take multiple arguments
82c8bdff122d man: mention networkctl in the networkd man page
4a29c185b7fe man: add systemd-network-generator.service(8)
9fd32ff7d363 units: restore RemainAfterExit=yes in systemd-vconsole-setup.service
44e5d00603a8 pid1: remove unnecessary terminator
5403e153372e man: update list of supported controllers
a3558e795203 units: do not ignore return value from systemd --user
df883de98a88 pid1, nspawn: voidify loopback_setup()
fd74a13e85ac timesync, meson: allow statically linked build
dbf2801f5ac4 systemctl: do not print items twice in list-dependencies
dd0395b5654c make namespace_flags_to_string() not return empty string
e31b6bd02050 lgtm: drop the TMPDIR/meson workaround
d4de2b2afff6 man: document that .link/.network/.netdev files have the usual ini syntax
870d38dca90b docs: add .link/.network/.netdev files to interface stability chart
c7fe06fb0a00 man: document the default value for IPv6AcceptRA=
cd517eb7310d man: specify that Domains= is a space-separated list
1699f5378896 hwdb: add corrections for Olimex Teres-I to keyboard hwdb
105a1a36cd6e tree-wide: fix spelling of lookup and setup verbs
33eb1f24978c tree-wide: drop printk.devkmsg=on setting in various places
a345d5c1c9b2 man,mkosi: use glibc-minimal-langpack for Fedora
95d311faea78 man: bump fedora versions
1c5b427f5d36 hwdb: 60-sensor.hwdb: Add proximity sensor udev property (#14845)
fdb0405edd90 selinux: check return value of string_to_security_class()
81d4a026a61c drop unused translations
d015652944b5 update Russian translation
1fb5a5edc7c1 sysusers: do not require /proc to be mounted
a100fe3c279b NEWS: Use correct tense in v245 entry
6cb356ca9fe0 basic/fs-util: add a version of chmod_and_chown that doesn not use /proc
08c7c3216bd5 sysusers: many different errnos to express one condition
d54bb638750c NEWS: two minor entries
9c4d3d796825 NEWS: update contributors list
8193040362e8 hwdb: update for v245-rc2
a75b21175078 network: Move config_parse_ip_service_type to networkd-dhcp4.c and rename
2b43402c8477 ask-password-api: drop unneeded parentheses
86fca584c38f core/execute: use return value from sockaddr_un_set_path(), remove duplicate check
425d925f24a6 homed,userdb: don't use sockaddr_un_set_path() on fixed addresses
f36a9d590901 tree-wide: use the return value from sockaddr_un_set_path()
0f1886872362 test-sizeof: print size socklen_t
64177e9e4e8b journald: fix forwarding to syslog
3b355677b8cc RequireMountsFor in systemd-nspawn should wait for machine mount
27f31daf3e22 shared/logs-show: Remove unused OUTPUT_FOLLOW
ef62949a23a2 network: make Type=ether match based on iftype
834ea1a4665f test-network: remove unnecessary dummy interface
2cd651066133 man: fix typo
f4665664c4ff units: disable ProtectKernelLogs for machined
123aeae20672 random-seed: add missing header for GRND_NONBLOCK (#14988)
8632e8768903 po: update Polish translation
4347f0abe261 l10n: update Czech Translation
4c2e1833ec1a test-network: add a test case for [DHCPv4] UseRoutes=no
ad098b14c5ec network: Allow to configure GW even UseRoutes=false
161bc525bbd7 rules.d: import the keyboard builtin instead of running it
df70539f9fe0 resolve: error handling improvements
6f22d5723527 userdb: fix lookup of groups defined by homed
3e93027b5b94 Fix two typos
972e81629d40 Italian: removed spurious lines of old labels
f7ae155b14dc italian: language updates
0d066dd1a4cd pid1: add new mode systemd.show-status=error and use it when 'quiet' is passed
5bcf34ebf303 pid1: when showing error status, do not switch to status=temporary
1b4154a8919c pid1: make cylon timeout significantly bigger when not showing any messages
ef15d3e1ab67 pid1: touch the /run/systemd/show-status just once
7365a2967031 pid1: when printing status message status, give reason
5ca02bfc3968 core: fix message about show status state
b3ce4e2d407a hwdb: Add Medion Akoya E1239T MD60568 to 60-sensor.hwdb
196dedd50300 journalctl: implement --facility=foo
c4ad7f83ec60 homed: fix typo
aeac9dd6475d Revert "namespace: fix MAC labels of /dev when PrivateDevices=yes"
ee00d1e95e84 pid1: do not fail if we get EPERM while setting up network name
ecf63c91025b execute: Make '+' exec prefix ignore PrivateTmp=yes
5926ea0a6860 presets: enable systemd-pstore.service by default
aa07dc709328 man: add .service suffix to systemd-pstore(8)
e3b192626e24 man: tweak markup in systemd-pstore.service(8)
ebb7a2fcb979 man: add missing refnames for two binary names
b0cda2414802 docs: interlink the docs to make it easier to navigate
04c31af4c5cb docs: say XBOOTLDR instead of just giving the GPT identifier
6ffeca8c8f2e meson: explain GIT_VERSION and PROJECT_VERSION
62641751d529 man: fix links to ssh(1) and sshd(8)
3ea2b1137b6a man: add explanation where environment.d are inherited
8956caf333ff network: fix typo in comment
e6e81ec0a568 namespace: fix MAC labels of /dev when PrivateDevices=yes
07336a067216 network: assume Scope=host when Address= is loopback address
aa73f181e92c basic/string-table: avoid crash when table is sparse
1a8f0ce64fd2 systemctl: be more specific when emitting warning about rotated journal
68c1ac156891 conf-parser: fix line number in error message
79ac19ae616a hwdb: add cube i7
df5a4889fe85 udevadm: show more error message during exporting database
287f506c32f3 pstore: Don't start systemd-pstore.service in containers
81eb5bc5cc7e network: remove redundant %m in error message
3d7ac1c655ec udev-builtin-input_id: any i2c mouse is a pointing stick
443876d8dcf3 userdb: make groupdb_all() always set iterator when it returns >= 0
0ffbe10b8159 userdb: drop unnecessary goto
e9b0b64f77fd fix ACCEL_MOUNT_MATRIX for Thinkpad Yoga 11e 3rd gen
19bb96759a91 userdb: allow dots in username
2a5180945a10 hwdb: Fix rotation for Nuvision Encite Split 11
9c1f969d40f8 swap: finish the secondary swap units' jobs if deactivation of the primary swap unit fails
06654d122515 ata_id: Add support for host managed zone block devices (#14933)
aaaf42cb44d4 units: add mount for tracefs
6dea2361dc2f typo: stringy -> string
6ed8c09a40ed po: update Japanese translation of "home area"
e60228bf6842 kernel-install: strip BOOT_IMAGE= from kernel options
7c7c44855e2e userdb: fix memleak
662d74daf7c9 userdb: make userdb_all() always set iterator when it returns >= 0
4617d37a375c po: fix confusion about what "it" is in Polish translation
09460a234bed tree-wide: replace "asked to inhibit it" with "is inhibiting this"
15f73764c4fb tree-wide: replace present participle forms
40afe4916a58 test-network: add one more test case for VRF=
a856a83f181a po: update Polish translation of "home area"
18143cd76795 tree-wide: s/home/home area/g
c0d48bc50ff4 network: use VRF's route table if VRF= is set
1ad448673ed3 man/systemd.unit: Add missing article to `Wants=` description
4a6ab3f79fb3 hwdb.d: actually install the 60-input-id.hwdb
31c33315b3e9 portablectl: block when stopping a unit on detach (--now)
d4ffda38716d man: tmpfiles.d: z/Z ignore the argument
c667e09ba067 ci: pass max_total_time to libFuzzer
6cec69fc3edd Change all fuzzing links to point to OSS-Fuzz site
129c55c06f49 docs: fix HACKING.md broken links
c14faa944015 fixed typo in systemd.netdev Documentation for L2TP
ad5555b42e9f systemd: Fix busctl crash on aarch64 when setting output table format
bec31cf5f003 systemd: Fix busctl crash on aarch64 when setting output table format
c315b79fb43a makefs: strdup arguments to mkfs
7ad1f0439843 lgtm: use the system version of meson
65be7042a876 lgtm: set TMPDIR to /var/tmp
99fdffaa194c Revert "Support Plugable UD-PRO8 dock"
d900701eeab4 fix typo in object field
c24c83dc67a6 network: Allow multiple IPv6Token 'static' items to generate addresses
38d1255a52f7 test-network: add tests for qdisc Handle=
d8b2396d3458 network: add support for qdisc handle
bfcdc872604a network: fix indentation
8a98f11ed0cd network: Make address_hash_ops available outside of networkd-address.c
0ddad04eda2a network: Document the lack of actual DAD usage in prefixstable algorithm
8dcce054e396 network: Rewrite IPv6Token documentation for new modes
53f8cced4570 network: Correct typo and naming in error message
87f9d6ea8efa network: Improve variable name for address generation
f7ada4b8ec12 test-network: tentatively stops .socket units for udevd
b241fa00e92e network: Add test for explicit 'static' IPv6Token
b751c3e747a9 network fix parser for IPv6Token=
5f04f4e47037 test: give systemd chance to actually start the unit
e2c1ddcc492f portablectl: add --now and --enable to attach/detach
68697cdd1274 hwdb: Fix touchpad toggle on WeiHeng P325J
74deaff1188a journal: fix log message
03b76a197731 repart: do not quit earlier when --empty=force
676047438a12 l10n: update Ukrainian translation
3d55b5a9def5 test-network: add test for teql
9b749c11e20b network: tc: support teql
ab9dc1db477e test-network: add more tests for traffic control
f0c1ad308d0d network: fix ABRT
59bae425704f network: update log message
ab119e633878 network: append period if error message provided by kernel does not contain it
4c2724013ffa network: drop redundant %m
2ed5f6d5de38 network: introduce new [QDisc] section to support Parent=ingress
72545ae05745 core: sync SeccompParseFlags between dbus-execute and load-fragment
e2c4070edfb0 network: rename eui64 to static
6e55b9b75839 chromiumos: sync auto suspend rules with chromeos commit e348a229bacc3
cff789b746c6 core/selinux-access: use _cleanup_ and improve logging
0ae5ffe0630a repart: quit earlier if no .conf file exists
d7887449e7c9 basic/selinux-util: expose _cleanup_freecon_
22cd7aabecd8 core/selinux-access: do not use NULL for %s
949fb07e6e3e network: also change fair_queue_traffic_policing→fair_queueing
2b6a90d17f4c selinux: update log message to suppress warning by coverity
db99904bc848 sysctl: fix segfault
8aaf18e08a2e shared/ask-password-api: show "(press TAB for no echo)"
72c08a471c9c shared/ask-password-api: return "error" when dialogue is cancelled
1acf344dfa28 core: do not prepare a SELinux context for dummy files for devicenode bind-mounting
39e96f844a46 firstboot: add missing check
d5d5b3f4a729 man: fix typo in systemd.unit man page
6b2fd86fd1fd network: remove unnecessary link->ifname from debug log statements
28ca867abdb2 sd-journal: close journal files that were deleted by journald before we've setup inotify watch
c7220ca8025e units: drop OnFailure= from .target units
e0e2112f6184 cgroup: systemctl: Don't display NULL if protection was set to max
8b51950f4cd2 docs: Correct resource weight range
129466138124 polkit: remove unused variable
c450335bf74a github: remove direct paypal link
384db814eea1 meson: bump version numbers for v245
901d1ce8efcd NEWS: add contributors for v245
573e58f62f27 NEWS: mention the operational state changes
f05c0615f4c0 NEWS: mention SuppressPrefixLength=
9569e385036c test: adapt to the new capsh format
87bbebeab6e2 test-network: add tests for IPv6Token=
5f506a55606f network: Allow to specify multiple IPv6Token for SLAAC
69f173477bb1 NEWS: mention the TrafficControlQueueingDiscipline rename
823b03527106 NEWS: mention empty .link and .network files
2ad988896c47 NEWS: reword and shorten a bunch of stuff
641aa41200f7 test-network: use udevd in build directory
ea9bc14cd0a3 hwdb: update for v245-rc1
427928caa4c0 network: change "Gateway=dhcp" to "Gateway=_dhcp" (#14774)
c0f765cac8b0 core: move bus-util include out of selinux-access header
bc130b685832 Fix typo in function name
5c1163273569 man: document the new sd_bus_enqueue_for_read() API call
637486261528 polkit: when authorizing via PK let's re-resolve callback/userdata instead of caching it
1068447e6954 sd-bus: introduce API for re-enqueuing incoming messages
f4425c72c739 polkit: use structured initialization
7f5698228927 polkit: on async pk requests, re-validate action/details
95f82ae9d774 polkit: reuse some common bus message appending code
773b1a7916bf bus-polkit: rename return error parameter to ret_error
f156e60c66fa core: unit_label_path(): take const unit
6bdd90fbcd94 man: add "quick-help" to sysusers.d synopsis
1648233dce34 selinux-access: log warning on context acquisition failure
074b597dd904 selinux-util: increase log severity
ca58d00c68bc network: FairQueueTrafficPolicing→FairQueueing
60ed2dcfc7ea network: TokenBufferFilter→TokenBucketFilter
8e92d92fb898 man: tweak description of blockdev@.target
eb1322744dea NEWS: correct indenting for two entries
ce4121c6ff92 meson: update efi path detection to gnu-efi-3.0.11
18de0969c576 network: split TrafficControlQueueingDiscipline section into small pieces
dade73491747 network,udev: refuse .link and .network settings with no matches
e519e20ae16e test-network: do not fail if lo has a .network file
90198bcbea92 Fix generator name in hibernate-resume-generator's drop-in
61c3e2c8bfc2 presets: "disable" all passive targets by default
41fd8fe71652 test-network: add a test case for IPv6PrefixDelegation.DNS=linklocal
fd3ef936ed5b network,radv: make DNS= in [IPv6PrefixDelegation] section take special value 'linklocal'
5d4fc0e665a3 sysctl: set ipv4 settings in a race-free way
e0f424790d3d sysctl: add glob syntax to sysctl.d files
5e9c08f377a6 l10n: update Czech Translation
50152bb1c5c3 core: call dynamic_user_acquire() only when 'group' is non-null
4c1dea42b593 journal: drop unreachable path
e362d6eebadc po: update French translation
bf2334c054da udev: add {Receive,Transmit}ChecksumOffload= settings
53e1ba280f07 network: add SuppressPrefixLength option to RoutingPolicyRule (#14736)
e06d7d0fb0f1 po: update Japanese translation
10f58ad01534 po: update Polish translation
9a4940bf92c9 update NEWS
60d0a5098b2b util: uid_t, gid_t, and pid_t must be 32bit
c757517d98ad meson: fix feature list
649916d3561a sysusers: support creating users with a specific primary group
6be8e78e32ec test-network: add test for UID based routing policy
ea471a469572 network: support UID based routing policy
03de302a3132 util: add parse_uid_range() helper function
af06ddf51a8a meson, man: do not install pam_systemd_home(8) when pam or homed is disabled
2273ecfeda0b test: don't install /etc/securetty
020313b213f0 test: also check the result of merge_gid_lists()
4af8ab2cab69 user-util: fix use after free() on error path
b44b735a78be userdbd: fix memleak
ad2378524635 update TODO
2b6b8bd3f727 man: document --namespace= switch of journalctl
241c8f67f65a man: document the new sd_journal_open_namespace() API
5b0a76d107eb man: document LogNamespace= unit setting
7d8155b3df13 man: document new _NAMESPACE= journal field
6bc4361997b1 man: document journald@NAMESPACE.conf
efcbcd0d043f man: document journald namespaces
23d8c56046f1 journalctl: underline sections in --help
9610210d3235 nspawn: voidify umount_verbose()
02cec1562962 user-record-util: add missing error check
00c7b071acce homework: fix errno in log_error_errno()
852640f8a223 home: add missing variable initialization
340cb115b388 units: define RuntimeDirectory= in systemd-journald.service
5591cd4e2041 units: sort settings in systemd-journald.service again
fb38a7beb815 tmpfiles: apply ACLs to top-level journal directory in /run, too
0f5a4f9cd969 tmpfiles: merge lines for the same inodes
db23d83bd49b test: add simple test for log namespaces
dc5437c78bbf journald: add ability to activate by varlink socket
65c398c031a3 journald: add exit on idle
6d4d6002606e varlink: add ability to register callback for disconnections
c4f601f20535 varlink: add API for determining number of current connections
d98580e4380e journald: use structured initialization
243526917131 journald: add logging for one error we lacked logging for
d93dda3afef4 systemctl: show logs for correct namespace of service
21fa231ece5e journalctl: drop misplaced empty line
6b25db87a180 journalctl: add new --namespace= switch for showing logs for namespace
31e99dd2cc37 journal: make constant argument actually 'const'
456aa8790625 journal: allow opening journal files specific to some namespace
2f5435a14757 journal: use structured initialization
33ff74643e2a journalctl: use an anonymous array when an array is needed
68312977db5e journal: properly mark two definitions that are deprecated with GCC attributes for that
e7238caf0cf5 journalctl: use automatic memory cleanup
0491150b5cb4 journalctl: use log_error_errno() wherever we can
a6214d9643c1 journalctl: move pcre function code down
91dd5f7cbe6f core: add new LogNamespace= execution setting
839d1b201474 string-util: add brief explanatory comment
1ee51fbd7075 units: add unit files for instantiated journal daemons
b1852c48c127 journald: allow running multiple instances of journald
d6f46470f562 journald: when create journal directories use calculated paths
4f6031037363 journald: minor coding style updates
4e00337b1621 journald: let's simplify rotating of offline user journals
46e2348a586b journald: simplify find_journal() a bit
b42b9479a8e2 journald: hide current storage determination in helper call
74dd8f575932 journald: use structured initialization
8548f4f09ba6 journald: line break overly long function header
7e7ef3bfb283 journald: let's use TAKE_PTR() and TAKE_FD() where appropriate
a30e35f85aa9 journald: let's use unlink_and_free() where we can
2066f4fe30f5 journald: specifying _pure_ on static functions is unnecessary, compiler can figure that out on its own
a2735a4549e8 journald: don't bother with seqnum file if we don't read form /dev/kmsg anyway
dbac26257881 journald: fix indentation
99d0d05a10e4 journald: use free_and_replace() where appropriate
659a77bec6d5 journald: add missing logging for some errors
d83f7e4c9218 journald: why bitwise XOR when boolean != is easier to read?
9a1862bfa6cd tests: unset LD_PRELOAD in testsuite.service when it's run under ASan
efda8aebcb0e sd-boot: fix -Wpointer-sign warning
a614aa1985d6 sd-boot: fix warning about comparison is always true
2d37ea5ca901 man: do not install man pages for systemd-repart if it is disabled
3ae01632f2d0 dhcp6: coding style fixes
9de8a4259eae dhcp6: do not use T1 and T2 longer than one provided by the lease
faec9de87f1a docs: Fix example code in ROOT_STORAGE_DAEMONS
58345a2332f3 docs: formatting fix (#14707)
258adeca3c32 po: add src/home/org.freedesktop.home1.policy to POTFILES.in
56b3eddb7043 fix links to GROUP_RECORD and USER_GROUP_API
e5e529c30ad5 fix link to JSON User Records
f770b7e084d6 man: document man/sd_bus_message_dump.xml
2a4be3c52b98 Various typo fixes and grammar corrections
402058dc3a2c polkit: tweak grammar
ec74f47e5617 meson: fix type of homed option
02d89f9a623a man: add syntax quickhelp to sysctl.d(5)
def94437934b Revert "sysctl: always write net.ipv4.conf.all.xyz= in addition to net.ipv4.conf.default.xyz="
fa2111bd3ed2 man: document logging downgrade in systemctl
f3b136a4847a shared/sysctl-util: normalize repeated slashes or dots to a single value
ce306dd872af po: update Polish translation
70e9d9a56c7a update TODO
ed2d9661521c update TODO
8d251485fa53 core: fsck images specified as RootImage= too before using them
4fcb96ce253f nspawn: fsck all images when mounting things
e475f72977ba dissect: add --fsck= option to systemd-dissect tool
cf32c4865761 dissect: optionally, run fsck before mounting dissected images
0f7c9a3d81be dissect: complain if partition flags are set that we don't know
a44956c94a93 network: fix implicit type conversion warning by GCC-10
97cd52c1b54b update TODO
d200253ba5f6 update TODO
e21d90606afc pam_systemd: resolve the tty of display via /sys instead of /dev
72d43d09ccb5 id128: change table header from "uuid" to just "id"
68410195679e NEWS: more v245 preparation
552cafaa86ad po: update French translation
723822f00ae3 NEWS: start preparing v245
bcb1eadc0cf8 test: fix rename_noreplace() test
3c7b4ebf94d1 test: make sure chase_symlink() returns normalized paths
47d7ab727cf5 fs-util: make sure we output normalized paths in chase_symlinks()
6efb1257d10c test: add test for the non-resolving of chase_symlink() root prefix
c2595d3b0284 fs-util: when calling chase_symlinks() with root path, leave root part unresolved
c809ed783e6c update TODO
0edd431e1549 ci: add new dependencies to CI
a9dabd6866d8 docs: document the home directory format
f62dd2375e51 docs: document homed UID range
28e208a7d8bb man: document pam_systemd_home
38e7b808eb0f man: add systemd-homed man page
ea7a19e95db9 man: add homectl(1) man page
ba0fb5acd46e sleep: automatically lock all home directories when suspending
6ead39170aea test: add test case for homed
26cf9fb7f833 home: add pam_systemd_home.so PAM hookup
4aa0a8ac3e54 home: add homectl client tool
70a5db5822c8 home: add new systemd-homed service that can manage LUKS homes
e53db1405c5d mkosi: add fdisk-devel, openssl-devel, libpwquality-devel, p11kit-devel and efsck to build
1ffadeaae32d udev: assume that the recv buffer size of the netlink socket is already configured when the socket is passed in
a05a6e8bba7e test-network: fix test_qdisc2()
8bc943b47256 fix erroneous "`" in boot loader spec
e0db55a643f2 man: document that sd_bus_message_read_array() only supports trivial types
10c238b2cc4a man: clarify that we decode D-Bus bools as "int", not as C99 "bool"
e5667705faa8 man: describe types slightly more accurately
979bdc47c9cd man: enclose C type names in <type></type>
1b3cccfdacc7 unit: add AF_ALG to systemd-networkd.service
11a182aa1e64 test: drop sector-size line from output of sfdisk
37b9966e2525 test: Synchronize journal before reading from it
006c44c1e86f TODO: add various items as result from devconf.cz 2020 discussions
58abbbcc6bce sd-bus: fix introspection bug in signal parameter names
022d334561ab man: doc: Document ProtectClock=
732e3a61043b network: accept NUL character in SendOption=
a6a36dea2d40 test: add tests for UNESCAPE_ACCEPT_NUL
0e72e469f88c escape: introduce UNESCAPE_ACCEPT_NUL flag
46dc83440fc6 escape: make cunescape() and cunescape_length() inline
8bdda551dab5 efi: fix build.
9f37272a192e analyze: Add ProtectClock= to analyze-security
fc64760dda4d core: shared: Add ProtectClock= to systemd.exec
0de6103dffed man: tmpfiles.d: list missing q
576e50efb694 Update copyright notice
fe5a698f7646 bootspec: parse random-seed-mode line in loader.conf
a14c18ba7b4e sd-boot: fix typo
a3e42c468fc1 test: unpin meson from v0.52.1
da2076a159ba man: remove duplicate in list of variables ignored by Anonymize
2b4a65b66813 sd-bus: export sd_bus_message_dump
27cf4c18c76d sd-bus: make dump flags public
dc972b074071 systemd-id128: add new verb to print GPT partitions UUIDs
e1d32d6ee86a update TODO
19ce38ce620f shared/gpt: export gpt_partition_type_uuid_{to,from}_string functions
6252bd0e8442 update TODO
4acf0cfd2f92 logind: check PolicyKit before allowing VT switch
269e4d2d6b75 shared: split out polkit stuff from bus-util.c → bus-polkit.c
2c0d7ed39393 network: do nothing if link is in pending or linger state on reconfiguring
0ce0e3470eb5 network: synchronously save state file when link is being reconfigured
8ae7b8a1e1d6 network: set dirty flag when link is being reconfigured
dc084399fad2 loginctl: use /org/freedesktop/login1/session/auto when "lock-session" is called without argument
68bda079fd08 man: document blockdev@.target
44b0d1fd597d core: add implicit ordering dep on blockdev@.target from all mount units
e3e6f996894f core: downgrade swap → device dep to Requires=
61f9cf4e4c48 swap: generate automatic dependencies also for /proc/swaps devices
5de0acf40d32 core: let's be defensive, /dev/nfs is also a special mount source, filter it out
219f3cd94106 core: drop _pure_ from static functions
a7e885587949 units: introduce blockdev@.target for properly ordering mounts/swaps against cryptsetup
6bbd539e5e72 cryptsetup-generator: order after cryptsetup-pre.target unconditionally
49685fb31480 cryptsetup-generator: break overly long line
33a4c9834282 fstab-generator: line break a bit more systematically
56a061f508ec update TODO
a15e1a5df0c9 man: fix typo in systemd.netdev Xfrm example
502991215726 network,udev: use uint64_t for bit rate
ce96c9cb1a8f timesyncd: log louder when we refuse a server due to root distance
d3e5639ebb60 Fixed some typos in the documentation
f1f20764f9e5 resolved: drop DNSSEC root key that is not valid anymore
be02c1cf426d Implemented x-systemd.{required,wanted}-by= options
e0567bc8adfe journal: don't use startswith() on something that is not a NUL-terminated string
f847b7eca30f hwbd: add Asus TP500LA
df062bef2925 hwdb: merge identical entries
c9872da4d17c hwdb: fix whitespace issue
680120bb20f0 virt: do not define vm_from_string() for non-x86 architecture
b90cf10245bc core: make a number of functions not used externally static
96462ae9984c core: show the UID we cannot parse
898820edb5c9 json: lower maximum allowed recursion to 2K
18e6e8635f06 generator: order growfs for the root fs after systemd-remount-fs
d6bd2bb4441e hwdb: fix error numbers passed to log_syntax()
2aecc668878f hwdb: use strv_extend() where we can
2e5180d38b33 strv: get rid of strv_clear()
81248e7f3e83 Documentation update for x-systemd.{before,after}
f85df8181727 import: let's disable UNIX signal generation from curl
d076f9fd56c9 import: put a time-out on downloads
137c6c6b3659 import: don't complain if FS_NOCOW_FL is not available
492f91d8c6c3 update TODO
e65f29b4c6e8 ci: add dependencies for repart + cryptsetup's pkcs#11 support
917cc8082bbd man: document systemd-repart
2f62a8c68809 test: add repart test
29ee6541a414 units: add unit file for systemd-repart to automatically run at boot
64db6f3644c3 mkosi: modernize
e594a3b154bd repart: add new systemd-repart tool
b57ebc6004bb conf-parser: add parser for 32bit signed integers
7e70f2cb0e43 locale-util: add special glyph Σ
1d2a1a0cb808 locale-util: add block drawing special glyphs
137688dff466 format-table: add support for formatting uuids/id128 values
1293a168f16d id128: move make_v4_uuid into id128-util.h to make it generally useful
449d530700ae makefs: simplify SPDX header
e56a8790a0bf test: add test for https://github.com/systemd/systemd/issues/14560
3b7f79dc9fc5 core: make sure StandardInput=file: doesn't get dup'ed to stdout/stderr by default
cdc6804b6046 units: drop full paths for utilities in $PATH
5608deb847b7 Italian: language update
5cbaf95ee311 wait-online: Support waiting for interfaces to disappear
75cd4a5d9294 wait-online: Add maximum operational state option
fc57f105d9e2 pkgconf: add full generator paths
7e284b054ec5 tree-wide: we forgot to destroy some bus errors
287cf2d80226 typo: "May modify to" -> "May modify"
0879fbd6fedc mount: make checks on perpetual mount units more lax
88414eed6f45 core: never allow perpetual units to be masked
f535af6bcd51 man: document that WakeSystem= affects clock choice
1e1f4f443dc3 docs: uppercase are headers
3b9796c01c31 docs: let's reduce our spurious whitespace a bit
8eabc083dc83 docs: in PORTABILITY_AND_STABILITY only use one h1
54ed193f8d48 man: clarify that user rlimits cannot go beyond limits set for service mgr
59d83463d18c man: extend on halt documentation
0b306655f1ec man: document that rootflags= does not override /etc/fstab
d524094b6b3f man: underline that AccuracySec= is about coalescing timer events, nothing else
eec68a1a0807 man: mention that Before= doesn't work for device units
49dd0c161a1e man: suggest SYSTEMD_WANTS usage instead of RUN for long running processes
f27a21d48bac man: document the limits of the block device discovery for IO cgroup options
1e8a7eff2207 man: document how error propagation to path units works
ba96a8a2778c man: document that program invocation will fail if the User= does not exist
8384ed93b958 docs: clarify that we don't want to own $BOOT exclusively
4ca739e20a09 core: reduce indentation a bit
b0a94df9631d logind: use loop instead of repeated code
ddee3ada467d shared/user-record-nss: use macro to avoid repeats
192aee3cae72 shared/user-record-nss: shorten code a bit
c7d26acce6dc Disable reading SystemdOptions EFI Var when in SecureBoot mode
c97ae2b29036 Clarify journald.conf MaxLevelStore documentation
c16460cf781c shared/sysctl-util: add missing header
32458cc9687c sysctl: downgrade message when we have no permission
b2ae4d9eb85f sysctl: move hashmap allocation out of main function
e76c60bf2a2b man: rework section about configuration file precedence
4bb68f2fee91 core: on each iteration processing /proc/self/mountinfo merge all discovery flags for each path
46d7c6afbf92 execute: allow pam_setcred() to fail, ignore errors
5b8d1f6b7757 execute: add const to array parameters, where possible
c903ee897681 docs: add documentation for the varlink user/group APIs
32eb3c42299d docs: add documentation for JSON group records, too
812862db7116 docs: add documentation for JSON user records
0ba56d3657b3 man: document the new nss-systemd behaviour
7d9ad0e5e51c man: document systemd-userdbd.service
3b2db6f110f3 man: document userdbctl(1)
fc89f88e56cd man: document new pam_systemd features in man page
f9c1f4e19308 pam-systemd: apply user record properties to session
7bfbf6cc92bd pam-systemd: normalize return values of append_session_xyz()
9ab0d3ebe5a5 pam-systemd: port over to use a UserRecord structure
355c9966c207 pam-systemd: share bus connection with pam_systemd_home if we can
d750dde2a634 pam-systemd: port to pam_bus_log_{create|parse}_error() and pam_log_oom()
cef9f2a64766 shared: add pam utility helpers
d510589fd0a4 logind: honour per-user stopDelayUSec property
156a363750b3 logind: honour killProcesses field of user record
e8e4b7a0b6ef logind: enforce user record resource settings when user logs in
22c902faccb3 logind: port to UserRecord object
1684c56f40f0 nss: hook up nss-systemd with userdb varlink bits
19d22d433d3a core: add user/group resolution varlink interface to PID 1
4bad7eedae3d core: make return parameter of dynamic_user_lookup_name() optional
1604937f83d3 userdbd: add userdbctl tool as client for userdbd
d093b62c941e userdbd: add new service that can merge userdb queries from multiple clients
295c1a6e4569 shared: add helpers for displaying new-style user/group records to users
ec8e4a0ef12f shared: add internal API for querying JSON user records via varlink
9b2d907877ab shared: add helpers for converting NSS passwd/group structures to new JSON objects
71d0b9d42263 shared: add generic user/group record structures and JSON parsers
64aa2622a3ba libcrypt-util: add superficial validator for UNIX hashed password strings
42f3b2f97510 shared: split out crypt() specific helpers into its own .c/.h in src/shared/
2ee4b118fa72 nss-util: add macros for generating getpwent()/getgrent() prototypes
65e2766f6458 docs: fix width of console example
5425f8a57c22 Revert "docs: rename HACKING → Hacking"
8c5cd27dd155 docs: rename HACKING → Hacking
b6bcde2623bf docs: shift console log on index page to the left
6af0a0442808 docs: add the systemd output example
4e96d758f883 docs: update old para with links to the blog stories
48f60ea9ad2e docs: remove markup from title
d00386fc0b1c man: add commas and reword a sentence
bbaba5748d65 test-format-table: add tests for TABLE_STRV
29e15e98c760 resolvectl: use format-table.[ch]
536cdd07b3f7 networkctl: use TABLE_STRV
4618660d1012 format-table: introduce TABLE_STRV
8b75798d12cc strv: introduce strv_compare()
3fec55246854 docs: rework HTML into GitHub Markdown table
c238a2f8899b cgroup: minor comment improvement
be2bb14f0044 logind: refuse overriding idle hint on tty sessions
de9a8fe18e01 systemctl: use format-table.[ch] for tables
191a3f163451 basic/strv: drop flags argument from strv_fnmatch()
0ef84b80c59b networkctl: return error or warning when interfaces are not matched
1d086a6e5972 mount: mark an existing "mounting" unit from /proc/self/mountinfo as "just_mounted"
48fd01e5f3bf cgroup: drop redundant if check
e1e98911a818 cgroup: update only siblings that got realized once
95ae4d142072 cgroup: drop unnecessary {}
a0d6590c4e8f cgroup: no need to cast dev_t to dev_t
57f1030b1373 cgroup: use log_warning_errno() where possible
b35ec8ded2da docs: uppercase all markdown document titles
a0fadf66daba docs: drop "The" in categorization titles of Markdown documentation
744c49e1fef0 docs: update link and more dots
0a5a8f13b421 docs: say that journalctl --flush/--sync also require journald
180f7c26aa18 docs: import initrd interface documentation from fdo wiki
f8349d2fa5ce docs: various small fixes to PORTABILITY_AND_STABILITY markdown
0bdd282a4e81 killall: update reference to root storage daemon interface docs
6e47cac0aa86 docs: convert root storage daemon doc to markdown
61c0ac0924d5 hwdb: Entry for Lenovo Ideapad 310S-14ISK Alps Touchpad
23b392166388 journalctl: Correctly handle combination of --reverse and --lines (fixes #1596)
3ac9cac7f7a3 journalctl: Correctly handle --show-cursor in combination with --until or --since and --reverse
03f9228e7cf2 man: suffix parameter with = in our documentation, if it expects an argument
fc6eb08e74d6 machinectl: modernize address table handling
d91614e717ed format-table: natively support multiline cells
f6857fa60118 string-util: add helper for extracting n'th line of a string
8dd6491ef9f6 string-util: let's add helper for truncating string after a specified number of lines
f9951b0cf0e5 man: we support bind mounting regular files too
151a7133cd06 man: document that we mkdir() on What= in .mount units too
c6cecb744b53 test: Add tests for gid list ops
afb11bf1b843 execute: Detect groups added by PAM and merge them with supplementary groups
3bb39ea936a5 execute: Restore call to pam_setcred
0c5d667932f8 user-util: Add helper functions for gid lists operations
d89cde099474 docs: say that various cli progs are independent of pid1
ef0bea8cf4f1 docs: say that dbus api is stable (but list various caveats)
b2eea3dc325e docs: say that all documented programs in $PATH are stable
e4893c6306f4 docs: import "interface stability promise"
117caf376557 networkctl: break long line
8571210a21d7 machinectl: reduce scope of iterator variables
957d9df38822 resolvectl: minor optimizations to allocate less
d308bb99d20b Resolve alternative ifnames wherever we would resolve an interface name
fc2ea97ad03b util-lib: add function to resolve "alternative" names
6b8fe4c30cbb man: XxxRate= are in bps
b8b7309778ca docs/stability: relax the stance on accepting patches a bit
02c789f9f966 docs: import stability chart from wiki
5c3fa98db68f util-lib: move things that parse ifnames to shared/
955bb7fac3bc basic/socket-util: indent for clarity
bad7cecc0aa8 sd-netlink: do not require rtnl pointer to be passed
231d9de1e3e9 networkctl: define a helper for interface name resolution
9030b50a7bfe timedatectl: drop ifindex output parameter too
597da51bae9e tree-wide: make parse_ifindex simply return the index
bcc0fe635df5 nspawn: Correct "container" to "host" MAC setting message
2e93770fd865 man: document alias rules and aliases dropin loading
1bf15585521c core,install: allow one more case of "instance propagation"
972f3176fa36 shared/install: drop an unused variable in config_parse_also()
66a19d85a533 shared/install: try harder to find enablement symlinks when disabling a unit
3f57bc2267e0 shared/install: rework alias check and add test
29a743f99346 core: explicit mention of unit ID is redundant with log_unit_*()
9a4f9e69e108 shared/unit-file: expose function to check .wants/.requires symlink validity
2595eb8cd9ba hwdb: make comment more precise
12845a91b5c6 machinectl: do not truncate addresses when --full is specified
bd17fa8cd870 tree-wide: use table_log_add_error()
964a7745de89 portablectl: optimize table creation
679c7c7a6741 machinectl: optimize table creation
9c46b437fcb1 analyze: optimize table creation by using table_add_many()
d8aedafb57df format-table: add table_log_add_error()
0e05be840513 initctl: (void)ify epoll_ctl() CID 996298
a602a0b44b9e man: Document systemctl --with-dependencies switch
e9c387c8293c systemctl: Add --with-dependencies flag
e2268fa43742 bash-completion: do not ellipsize machine name
a65e34ccb083 machinectl: do not ellipsize table when --full is specified
2a6c483b8cb7 bash-completion: busctrl: support --full command line option
b683b82fe770 busctl: introduce --full command line option
6c64cf8859ea bash-completion: networkctl: do not show ellipsized link name
a42d94908003 networkctl: set table width 0 when --full is specified
a362c069a9d7 systemd-mount: add --full command line option
bcf00b6c0a6f format-table: allow forcing arbitrary width tables
0c020321c83e test-network: simplify wait_online() by calling wait_operstate()
a4632dc7d131 test-network: convert wait_operstate() to recheck condition for timeout seconds
19cf3143cf9f test-network: rename check_operstate() to wait_operstate()
4c6496525763 network: drop foreign config after addr_gen_mode has been set
0917a2717810 network: if ipv6ll is disabled, enumerate tentative ipv6 addrs before dropping foreign addrs
9524014ee638 network: add link->setting_genmode flag
3a390124b794 network: rename linux_configure_after_setting_mtu() to linux_configure_continue()
b63c88b62718 man: describe "symlink" and "systemctl link" explicitly in UNIT FILE LOAD PATH
65f6b6bdcb50 core: fix re-realization of cgroup siblings
6fca66a7f125 core: set error value correctly
af4454cb17da core: use unit-based logging instead of generic logging where appropriate
eb34a981d671 core: initialize priority_set when parsing swap unit files
6afc31615e63 core: no need to initialize swap structure fields if all zeroes anyway
6d9e0ca40013 core: expose swap priority value via dbus only if it is set
246be82bd419 man: link to specific sections of cgroups-v2 document
bb6d563a5049 doc: link to html versions of cgroup docs
0ca1926ec314 bash-completion: networkctl: support --full and --lines
404308486aa2 core: be more restrictive on the dependency types we allow to be created transiently
cf57766d792f timedatectl: use format-table.[ch]
7cce68e1e042 core: make sure we use the correct mount flag when re-mounting bind mounts
8403219fc13a mount-util: line break overly long function prototypes
08b1f5c7d119 mount-util: clean up get_mount_flags()
4eaf0d9401ab mount-util: don't mask away MS_RDONLY twice
f3dab34d22e6 mount-util: rename cleaned → simplified, because that's what we actually did here
a5279634c025 systemd-mount: add --no-legend command line option
6ae6ea55d81d systemd-mount: use format-table.[ch]
f93d876c80a6 format-table: introduce TABLE_PATH
4c2ef3276735 core: propagate service state to socket in more load states
19212f278166 udev: don't import parent ID_FS_ data on partitions
b0a94268f876 core: when we cannot open an image file for write, try read-only
c8c535d589cc namespace: tweak checks whether we can mount image read-only
9a2ec8f7a6d5 install: use path_strv_contains() where appropriate
3593fa60f2a1 path-util: express PATH_IN_SET() through path_strv_contains()
3841fee82218 path-util: introduce path_strv_contains() helper
ab015b13df5e man: small casing fix
f2e5e70410ab man: document that scope units can fail, but not due to process exit statusses
c80a9a33d04f core: clearly refuse OnFailure= deps on units that can't fail
b44d87e200b9 sd-event: use _cleanup_ in one more place
1eac79486ef3 sd-event: use RAII for struct epoll_event
0475919b56c4 network: use automatic stack allocation and structured init
6666c4faeefa network: do not require ethtool_get_permanent_macaddr() to get an fd
6a6078a585f3 test: minor typo fix
514793658c49 test: pin meson to 0.52.1 for fuzzit/fuzzbuzz
64be35ab02c6 network: rename *fd to *ethtool_fd
d9b204544b69 man: use xi:include to avoid duplication
95522092925a man: fix option name
d2e825b4ab51 doc: tweak grammar in CONTAINER_INTERFACE description
caa8538a22b6 networkctl: show permanent mac address if it is not used now
4bb7cc828706 network, udev: introduce PermanentMACAddress= setting in [Match] section
95f2b4dd237f Support Plugable UD-PRO8 dock
79b4428a7d01 ethtool: introduce ethtool_get_permanent_macaddr()
4f0840669e17 gpt-auto: don't assume XBOOTLDR is vfat
5ac8b50d5894 network, meson: allow statically linked build
356873ddec61 zsh: Complete systemctl subcommands in separate tags
8f817cb888cc shared/sleep-config: do not ignore resume_offset when resume not set
8efc2c1608af shared/sleep-config: make swap detection stricter again
411975ce63b2 shared/bus-util: Don't replace exsting strv
4353974d7594 boot: fix osrel parser
3a827125e70a man: stop recommending modprobe -abq in ExecStartPre=
d5016c21d7bb units: tweaks to modprobe@.service
867af7282b2e unit: make sure to pull in modprobe@loop.service when RootImage= is used with DeviceAllow=
07141aa00592 bpf-devices: line-break some overly long function signatures
625077264ba0 units: Split modprobing out into a separate service unit
3ce252d0e0cc udev: use dot_or_dot_dot() where appropriate
a1686563ded4 man: fix documentation of IBM VIO device naming
e232c307c052 man: slightly extend documentation on difference between ID_NET_NAME_ONBOARD and ID_NET_LABEL_ONBOARD
e9f0c5d08c65 shared/sleep: use stat() instead of open()+fstat() in one place
7a182f103437 udev: do not use exact match of file permission
6b50cb5ca919 nspawn: set original ifname as alternative if it is truncated
98b0299479a6 network: append INTERFACE= attributes for logs corresponds to a netif
fc79e6ff5e1f test-network: suppress logs in status command
10c71c3605d7 networkctl: status command also shows logs of networkd
b6cea5496a20 man: drop unnecessary white space
67861acdf3f0 locale-util: extend comments on unicode glyph use, and drop mdash (that actually was an ndash)
214c5bae09fb test-network: add test for Gateway=DHCP
1985c54ff352 network: static routes via DHCP gateway
25454a0c341e virt: drop trailing white spaces
735ea55f5cd8 virt: use string table to detect VM or container
0e97a910a63d pkcs11-util: don't mask return value of the first asprintf()
d6246fd498ab network: lower the log-level of harmless message
11b8568f26e5 meson: drop unnecessary linking of libudev_core
a26c307320fb sd-netlink: fix copy and paste mistake
53dc5fbc41af man: change links to container interface doc to https://systemd.io/
635dea2783a6 docs: move container interface docs from wiki to markdown
fc67a943d989 core: drop initial ListNames() bus call from PID 1
a5b07847950c core: create/remove unit bus name slots always together
5085ef0d711f core: no need to eat up error
17bda1f19d53 core: shorten code a bit
a54654ba700b core: don't check potentially NULL error, it's not gonna work anyway
42837b813484 core: don't check error parameter of get_name_owner_handler()
3425c45e1e95 testsuite: drop "systemctl is-system-running --wait" invocation
13811aa5f6bc test: don't rely on "nobody" user for TEST-43
519b2e521214 test: hardcode shell to use
14b6e6b6f31a sd-netlink: use uint8_t* for non-character data
f9aefc91f170 testsuite: drop "systemctl is-system-running --wait" invocation
e9786a5c0164 test: don't rely on "nobody" user for TEST-43
6e0ed2865e34 test: hardcode shell to use
52133271a7b3 systemd-sleep: always attempt hibernation if configured
ec04aef44225 dbus-execute: avoid extra strdup()
ff963ea6ba8e test: use symlinks for Makefiles
097537f07a2f job: Don't mark as redundant if deps are relevant
2436ea761b28 nspawn: Make a custom mount on root imply --read-only.
bbd407ea2bc5 nspawn: Don't mount read-only if we have a custom mount on root.
72a86dd5ec25 man: tmpfiles.d: only list "v" once
f6bc26ee7fba man: tmpfiles.d: "b", "c" options require major and minor numbers
2ceefe45873d hwdb: Lenovo T490 Synaptics Touchpad hwdb entry
75997c3fa5e7 test: add test case for setpriority_closest()
390902012c51 core: in execute, Never fail setting Nice priority
bc5ea049f29c nspawn: Generate unique short veth names
b355d0c9affc udev: move naming-scheme.[ch] into src/shared/
b01c1f305c04 systemctl: show 'VENDOR PRESET' column in 'list-unit-files'
a25457f5b768 systemctl: skip non-existent units in the 'cat' verb
412a6c646ced systemd.exec: document the file system for EnvironmentFile paths
5b4855ab73c1 nspawn: Move --network-interface interfaces back to the host.
85f04a216147 hwdb: 60-sensor.hwdb Chuwi Hi10 CWI515 accelerometer orientation.
736eadf0284b Update Galician translations
be78e0f07b23 systemd-analyze: fixed typo in documentation
e514aa1eead3 tree-wide: yet another batch of coccinelle recommendations
48d0248e6df3 network: bump netlink receive buffer size to 128M
14157349db98 travis: wait for the container to fully boot up
a3d35654517e test-network: add a test case for CoDel
b078e52855d0 network: add more settings for CoDel
c695dcf929bc network: Add support to configure DHCPv4 route MTU
a9a5d632da72 network: tc introduce codel
e6627f2392cd unit drop-in: Fix ordering of special type.d drop-ins
f5dd6e50a781 Add failing test to show service.d global drop-in does not get overridden by more specific dropins
98cd752a285c test-condition: fix group check condition
6e3c443b56f1 Fix typo
11fcfc539854 Fix several typos in documentation
40681e5cdc74 network: add one more log message
b390f1789262 nspawn-network: Split off udev checking from parse_interface.
fa7ea8651084 zsh: Prepare for classifying systemctl commands (#14422)
1d8385b41599 zsh: Complete more systemctl commands
51a3b7263409 zsh: Group systemctl subcommands as in the manual. No functional change.
27cc3c9d764f update TODO
31ca5166b6c7 man: document /var/tmp/ and /var/ handling in systemd-gpt-auto-generator man page
19ac32cdd6c3 docs: import discoverable partitions spec
d4dffb8533a0 dissect: introduce new recognizable partition types for /var and /var/tmp
4171837be6b8 bash-completion: move shell-completion for log-level or friends to systemctl
b59817b199f3 shared/install: drop creation of alias for DefaultInstance
4ca8072fd619 umount: when we fail to detach a loopback device, set the auto-clear flag
b877c3b06f15 umount: check LO_FLAGS_AUTOCLEAR after LOOP_CLR_FD claimed success
63135a2d8db0 umount: detect root loopback device the same way as we detect root DM devices
88287615e631 umount: show correct error message
610f9a42c4a8 umount: remove unneeded variable
49f80dcec83b umount: line break comments again
b895fa08e680 Revert "Drop dbus activation stub service"
0fd8b7180959 test-network: add a test case for DHCPv4.SendDecline=
c1d3fa29ca9d network: link should not become configured state during ACD probing
0f3ff4eae2f3 network: DHCP4 introduce send decline
7c6d95ea5add network: fix typo
2f8c48b6059b core,journal: export user units' InvocationID and use as _SYSTEMD_INVOCATION_ID
f9ef25a483ed basic/unit-name: make sure UnitNameFlags is signed
509b06ffddb0 network: update log message in message_rtnl_process_xyz()
aa0f357fd833 shared/install: split out alias verification function
277519db5129 man: add section about user manager units
f71502c49fd9 man: add remote-*.targets to the bootup sequence
9e7c8f64cfda time-util: also use 32bit hack on EOVERFLOW
12c7d4d65e4f hwdb: ignore keys added in kernel 5.5
419a8a2dabb4 hwdb: Add LCD menu key mappings for the Logitech MX5000 and MX5500 keyboards
4186441bbd91 Revert "cryptsetup: umount encrypted devices before detaching it during shutdown"
a1533ad73f09 [man] note which UID ranges will get user journals
d59fc29bb742 [man] fix URL
b6657e2c53ee test: add test case for PrivateDevices=y and Group=daemon
e5f10cafe0bb core: create inaccessible nodes for users when making runtime dirs
a49ad4c482b8 core: add test case for PrivateUsers=true in user manager
5749f855a76b core: PrivateUsers=true for (unprivileged) user managers
d909b40fda52 analyze: badness if neither of RootImage and RootDirectory exists
de697db05b08 network: introduce AddPrefixRoute= and deprecate PrefixRoute=
a0ce990e711f test-network: add test case for multipath routing
6ff5cc6b7a0f network: introduce multipath route
6497a8aa9b48 sd-netlink: introduce rtattr_append_attribute()
b012a1f455cb Make openssl dependency optional again
27b4b3cc927e update TODO
3d0205f28b06 Be more strict about what can be an Alias for template and instances
5cddd924aa1f sd-event: don't allocate event queue array on stack
ac6431dad950 man: add man page for sd_bus_message_sensitive()
4023637a8ab0 Restore silent handling of BUS_ERROR_SPEED_METER_INACTIVE
1b49e3e3c4f5 shared/loop-util: rename function
7a670b1dd981 shared/dropin: fix assert for invalid drop-in
f27bb6abd3b8 initrd: make udev cleanup service confict trigger and settle too
9652d740929f varlink: add varlink_close_unref() helper
e10720818ec3 chown-recursive: add fd based API
417a6eece8a1 chown-recursive: move src/core/chown-recursive.[ch] → src/shared/
845a7c1fc183 basic: add quota-util.[ch] with some helpers for the Linux quotactl() API
6789dd57f0a0 cryptsetup-pkcs11: just return zero on success, no need to return anything else
3ded1d616a50 cryptsetup-pkcs11: line break some overly long lines
12f69587e973 cryptsetup-pkcs11: refuse keys above 16MiB size
2ccf0ff6e8cd man: tweaks to the crypttab(5) man page
3d864658ea01 hwdb: assume all Medion Akoya E-models have the same matrix
35a05d8d5edc man: whitespace fix
76b73ce21c0a man: we support growing xfs too these days
601f91bec564 time-util: deal with systems where userspace has 64bit time_t but kernel does not
e7bdadb5c655 network: support alternative name to get bus path for the link
f7581ed6e06b networkctl: support alternative name to specify interface
4d016e965b13 udev: sort alternative names
b04c5e51da7a sd-netlink: introduce rtnl_resolve_link_alternative_names()
1209ef94bd09 [import] fix stdin/stdout pipe behavior in import/export tar/raw
05de16766b6b hwdb: Add Bluetooth-attached Logitech MX Master
4afb4a9cc574 systemctl: show what verbs support --dry-run in the help page
6d185cffb196 sd-netlink: add a whitespce between cast operator and variable
f501c2515125 sd-netlink: make netlink_container_parse() takes size_t for rt_len
49f5cbe92484 network: set AlternativeNamesPolicy= in 99-default.link
ef1d2c07f956 udev: introduce AlternativeNamesPolicy= setting
bb181dd4a664 udev: do not fail if kernel does not support alternative names
a0f11d1d11a5 random-util: call initialize_srand() after fork()
78f8849f84ca udev: extend the length of ID_NET_NAME_XXX= to ALTIFNAMSIZ
861f1789051d efivars: properly NUL terminate EFI variables when reading
e40b4caa1f91 basic/tmpfile: avoid maybe-uninitialized warning in mkostemp_safe()
b742942edf60 TODO: drop entry
e51712963b81 shared/install: log syntax error for invalid DefaultInstance=
cb180b09fab0 Added Trekstor Primetab S11B
da7667518b57 docs: CSS files should not be executable
90d81ee96665 github: use systemd.io links in issue template
479ddcdf5ac5 util: constify arguments of strv_xxx()
7a2f6fb6f1bf test-network: pass environment variables to networkctl
6934ace05d04 test-network: add a test case for netdev altname
511070ee9501 networkctl: show alternative names
572b21d96cab network: make Name= in [Match] support alternative names of interfaces
a5053a158b43 udev: support AlternativeName= setting in .link file
4252696aec9e util: introduce ifname_valid_full()
d08d92d5ee50 test: add a test for sd_netlink_message_{append,read}_strv()
6d725977c4f9 sd-netlink: introduce sd_netlink_message_append_strv()
8f3c18596692 sd-netlink: introduce sd_netlink_message_read_strv()
01813148619c shared/loop-util: spin on open() returning ENOENT too
35b9eb0a72b6 basic/efivars: do not return EIO if an efivar read is shorten than fstat size
a97abb30e7eb shared/efi-loader: add some debugging statements
f2d9213fee0f shared/loop-util: spin on LOOP_CTL_REMOVE
e8af3bfd635c shared/loop-util: fix error handling in loop_device_make_full()
ffeb16f5d832 sd-netlink: support IFLA_PROP_LIST and IFLA_ALT_IFNAME attributes
d3678e3a0b4b linux: update headers
d9ceeb9fe7bb Add Acer Spin 1 SP111-33 to sensor hwdb
c8bf87b3399a hwdb: Add accel orientation quirk for Thundersoft TST168 tablet
4ef289250f1c test-network: add a test case for new FQ settings
d7ceaf72618a shared/install: provide a nicer error message for invalid WantedBy=/Required= values
d9c1c43e678f shared/install: remove duplicated check
e83562e51e97 network: tc: add more settings for FQ
d0556c55e7b6 nspawn: fix overlay with automatic temporary tree
ff2c2d0850c4 docs: make sure there's only one # markdown header in each file
db8728a60c73 blockdev-util: rework get_block_device()
bd6609eb11ec nspawn-mount: Use FLAGS_SET to check flags.
5530dc87f21c nspawn: Only bind-mount directory when necessary.
e091a5dfd162 nspawn-mount: Remove unused parameters
5f0a6347acf0 nspawn: Enable specifying root as the mount target directory.
eae1ef076d6b test: increase qemu timeout for TEST-08 and TEST-09
679ecd361634 nspawn: allow combination of private-network and network-namespace-path
9401e488555a test-network: add a test case for the new settings of FQ-CoDel
ac810b75c103 network: tc: support more attributes for FQ-CoDel
dd1e09971b7d test: add a test case for network-generator
21a925a4ac79 network-generator: allow empty hostname
0baddbd5eef0 test-network: add a test case for FQ
7234b915963c network tc: inroduce FQ - Fair Queue traffic policing
eb34f4b3d2a9 sd-netlink: add attributes for FQ
ef8863902831 man: document INVOCATION_ID and USER_INVOCATION_ID journal fields
5e13bcdd0391 locale-util: drop weird invisible unicode codepoints accidentally inserted in comment
c498df3a7e51 hwdb: trivial indentation fix
8fb82e35dc0d minor: avoid double title
b41a3f66c97e docs: make it pretty
e8c17dc078ee network: tc: introduce QDiscVTable for future extendability
1f9dd3bfdf0a network: tc: drop unused element
042fc950eafe network: tc: drop unused functions
335498ca57a5 docs: direct to systemd.io version of naming scheme docs
7c4a7c6d13db docs: fix markdown links
471d407eaaea docs: use `` quotes for marking identifiers of some form
955ed5d540fe man: fix typo in net-naming-scheme man page
5d3f5e408196 docs: beef up entrypoint documentation page
4cdca0af1149 docs: place all our markdown docs in rough categories
f32d15b0e4f5 man: fix typos (#14304)
92c7593f5e68 network: tc: use typesafe functions to append netlink attributes
42b5f7dd322d sd-netlink: make TCA_OPTIONS take NETLINK_TYPE_UNION
e92b60b20f21 ipv4ll: do not reset conflict counter on restart
40821c2ac3a7 test-network: add a test case for fq-codel
4e5ef1491901 network tc: Add support to conkfigure CoDel - Controlled-Delay Active Queue Management algorithm
d80810200832 network tc: qdisc parent add support to set ingress
5905d7cf5bc8 tree-wide: use SD_ID128_STRING_MAX where appropriate
b5ea030d65e9 id128: introduce ID128_UUID_STRING_MAX for sizing UUID buffers
c2d54475c431 man: document pkcs#11 hookup in /etc/crypttab
086697094ec7 cryptsetup: add native pkcs#11 support to cryptsetup
f573629c0bba udev: mark all ccid/security devices with a special tag
839fddbe500f shared: add pkcs11-util.[ch]
3f6370198305 shared: add openssl helpers
6047637645ac strv: when growing strv arrays piecemeal actually allocate memory in exponential steps
47ac31f792a8 test-util: add more tests for ALIGN_POWER2
e49e4c33dc96 macro: introduce new GREEDY_ALLOC_ROUND_UP() helper
85c267afa7ce macro: avoid subtraction overflow in ALIGN_POWER2()
886e07a9cf5d test-network: add tests for new TBF settings
dcfc23ae7713 network: tc: add more options for TBF
0810e6d787bd test-network: add a test case for SendOption=
83b56c70e6bc network: fix segfault in parsing SendOption=
fb4b0465abbd seccomp: real syscall numbers are >= 0
0cab1f197647 Add Cube iWork 11 Stylus
8ee08dc564cc test: do not fail if new device is plugged during enumeration
bc942f69aa49 test-network: make test_bind_carrier more stable
6d62ec61b941 network: fix copy and paste mistake
07317d6e343c resolved, networkd: don't resolve the user if not root
b076d5d76ddc test-network: add test case for IFB
3295a461b373 network: introduce ifb (Intermediate Functional Block)
cec1552ad4e0 sd-netlink: add support for ifb device
dc7d3c5fd4cf test-network: add test case for IPv4 DAD
051e77cac119 network: introduce DAD for static address
b069c2a3f2b0 shared/seccomp: avoid possibly writing bogus errno code in debug log
2c7b826ddf52 network: do not drop foreign config if interface is in initialized state
6b2a8b80b4bf shared/loop-util: drop inline function with one use
ba5450f4119c shared/loop-util: fix leak of fd in error path
1163a2e98a89 shared/loop-util: operate on the right fd
7db054470589 test-network: add tests to verify IPv6MTUBytes
3e8215254359 test-network: disable restart limiting for networkd
fd372b1a68a6 test-network: in wait_online() allow a few seconds to reach setup_state
befd4b8b60dd test-network: read link attribute at any depth
9dfc1a9339ee test-network: allow specifying only individual drop-in files
d236718c167a network: set ipv6 mtu after link-up or device mtu change
ab4fae0c8c3f Fix typo (duplicate "or")
14bb274d3fdd networkd: check return value
362c378291e8 cryptsetup: umount encrypted devices before detaching it during shutdown
1dc85eff1d0d crypsetup: introduce x-initrd.attach option
5ebbb45bdee9 TODO: remove obsolete entries
bddeb54cbb09 Fix use of unitialized variable in error path
d6f1e6607692 growfs: port over to resize_fs()
2b82a99fe0d3 growfs: define main function through macro
49219b5c2a65 seccomp: mmap test results depend on kernel/libseccomp/glibc
5ef3ed97e3c7 seccomp: use per arch shmat_syscall
903659e7b242 seccomp: ensure rules are loaded in seccomp_memory_deny_write_execute
bed4668d1dae seccomp: fix multiplexed system calls
bf331d87171b network: if /sys is rw, then udev should be around
26208d5b9674 nspawn: do not fail if udev is not running
2e22a54f4e08 Implement SNI when using DNS-over-TLS
6f0245b34276 sd-bus: don't include properties maked as "emit-invalidation" in InterfacesAdded signals
7a77d2a41cb6 sd-bus: add new call sd_bus_message_sensitive() and SD_BUS_VTABLE_SENSITIVE
0ab927913271 test-network: add a test case for SFQ
b2340fbb5ab3 network: SFQ cannot be configured with netem or TBF
9942b71089aa network: tc introduce sfq - Stochastic Fairness Queueing
1b628c4f64e9 test-network: add test case for TBF
f1dba5556564 network: drop unnecessary headers
6483f04381db network: make network_emulator_fill_message() take NetworkEmulator
edc54f2f753b network: rename QDiscs to QDisc
8efb93f02dd6 network: ignore sections which have both NetworkEmulator and TokenBufferFilter settings
ba5841b5206d networkd tc: introduce tbf
28937bcc6ca1 shared: add new wrapper for online fs resizing ioctls
24a0b2c0abc0 missing: add XFS magic
6b636c2d2790 main-func: send main exit code to parent via sd_notify() on exit
8987afc4d12c process-util: add new safe_fork() flag for connecting stdout to stderr
7a509acc297a tmpfile-util: modernize mkostemp_safe() a bit
e5ea9ed03078 tmpfile-util: if no path is passed to fopen_temporary() make one up
a3292ec8d704 user-util: add uid_is_container() for checking whether UID is in container range
6093b2bb05f3 user-util: export is_nologin_shell() so that we can use it elsewhere
c0dd3269535b man: document journal rate limit burst multiplier
53caaffdf4a6 string-util: readd string_erase()
282bde106652 memory-util: introduce erase_and_free() helper
9933a4780843 errno-util: add new ERRNO_IS_DISK_SPACE() helper
b64cea60275b ordered-set: add ordered_set_first() helper
22810041c220 parse-util: sometimes it is useful to check if a string is a valid integer, but not actually parse it
26601a2a1771 sd-boot: Add a 0.1 second delay before key-probing for showing menu
e544601536ac sd-event: refuse running default event loops in any other thread than the one they are default for
8089643328b2 man: document the new sd-event pidfd magic
b3508072002c man: mention that SIGCHLD has to be blocked before using sd_event_add_child()
68765d94fec8 man: don't claim we'd unblock the specified signal in sd_event_add_signal()
3ecb3bdc9384 test: add test for pidfd support in sd-event
ee880b37c152 sd-event: refuse sd_event_add_child() if SIGCHLD is not blocked
d1b75241baa3 sd-event: make use of new signal_is_blocked() helper
90b15e18eef4 signal-util: add new helper signal_is_blocked()
f8f3f9263e51 sd-event: add pidfd support
298f466f159e process-util: add helper pidfd_get_pid()
5ead4e85f6b5 missing: add rt_sigqueueinfo() syscall definition
5f152f43d04e missing: define new pidfd syscalls
5a795bff3840 sd-event: (void)ify some epoll_ctl() syscall invocations
d1cf20237492 sd-event: drop unnecessary local variable
9f537ae3100f udev: Ensure udev_event_spawn reads stdout
a9dfac21ec85 core: reload SELinux label cache on daemon-reload
68d58f38693e pid1: add new kernel cmdline arg systemd.cpu_affinity=
6355715e5b5d Fix DPI for MX Master 2s bluetooth mouse
a652f050a786 Create parent directories when creating systemd-private subdirs
e813de549b17 network: do not return error but return UINT64_MAX if speed meter is disabled
cfd54b6a2e8b Alienware M17xR3 ejectcd button fix
7477451b691d core: swap priority can be negative
09e4b620e7a9 hwdb: Set trackball property for Logitech MX Ergo (#14231)
33ebda2e81aa networkctl: fix to show BSSID
ff757c9d2941 hibernate-resume-generator: wait "infinitely" for the resume device
7cecc563163f cryptsetup-generator: unconfuse writing of the device timeout
2fec5854baa6 systemctl: enhance message about kexec missing kernel
6a2dc6a040f7 TODO: remove obsolete entries
23e5e79a51f9 initrd: fix systemd.debug-shell & friends
1e904320aacb Fixup typo in NEWS
10c1b18888b4 valgrind: temporarily handle that valgrind still doesn't know LOOP_GET_STATUS64
50d046993be9 loop-util: if we fail to fully set up a loop device, detach it again
b26c39ad2c65 loop-util: fill in the loopback number, even a posteriori
f1443709e0c2 loop-util: optionally also resize partitions
441ec80468d1 loop-util: add api for locking the block device with flock()
c37878fcedd9 loop-util: allow refreshing offset
ed9eeb7b0b50 loop-util: allow creating loopback block devices with offset/length
9dabc4fda574 loop-util: add API to refresh loopback device size and opening existing loopback block devices
e08f94acf589 loop-util: accept loopback flags when creating loopback device
2d8143048bc6 json: add new output flag JSON_PRETTY_AUTO
19a209cc710a json: add const string dispatcher
e4defdc4b02f json: teach json_build() to build arrays from C arrays of JsonVariant
a42ef715a2c6 json: add more dispatch helpers
a832b08e6e1b json: add json_variant_set_field_integer() and json_variant_set_field_boolean() helpers
faca141c5fb3 json: add json_variant_unbase64() helper
0b1f2e8a0617 json: add new flag for forcing a flush after dumping json data to file
0ac0787e30f0 json: add explicit log call for ENOMEM
3dd1b600b8b7 json: permit 'null' as a way to reset tri-states to default
aafa52ab8370 json: add ability to generate empty arrays/objects in json builder
886b0c93a8bc json: allow putting together base64 fields with json_build()
21e215110771 json: add new helper json_variant_append_array()
cc164891da29 json: add new helper json_variant_new_base64()
b7fc90a2e63f json: add concept of normalization
ca409a59c8ee json: add json_variant_merge() helper
15f1fb3e3e3f json: add json_variant_set_field_string() and json_variant_set_field_unsigned()
a7f8c9ce60f9 nspawn-oci: use new json_variant_strv() helper
22f14d6b0287 json: add json_variant_strv() helper that converts a json variant to an strv
ba23dbf1ebd9 json: optionally, make string checks stricter when dispatching strings
d642f640bf39 json: add flags parameter to json_parse_file(), for parsing "sensitive" data
f325aaf34175 json: add json_parse_file_at() helper
83bc6cb79233 json: add a new "sensitive" flags for JsonVariant objects
78a41236e40f json: add new json_variant_set_field() helper
f2ff34ff2aaa json: add new API json_variant_filter() for dropping fields from objects
e787b211a5aa json: add new json_variant_is_blank_{object,array}() helpers
07737617a18d json: beef up strv parser to also accept a single string instead of an array of strings
95244ceb9c82 fileio: add WRITE_STRING_FILE_MODE_0600 flag for writing files
8241f785f414 fileio: add 'dir_fd' parameter to read_full_file_full()
0a38e6b9a37b fileio: add an openat() flavour for fopen()
d0d7f11ca27b hwdb: Add accel orientation quirk for Teclast X89 tablet
3b681ace37e2 hwdb: Sort 60-sensor.hwdb Teclast entries alphabetically
6d8f06368bc0 semaphore: switch branch to debian/master
3d92aa4596a7 gpt-auto-generator: rename function for clarity
46c41478c933 tree-wise: standarize on "auto-detection" spelling
607ebf2bd28f bootlctl: show LoaderDevicePartUUID information in status
b50a3a156502 gpt-auto-generator: make it easier to notice if boot loader support is missing
1fac34b94121 gpt-auto-generator: use write_drop_in_format() helper and downgrade failure
074cdb953bd2 gpt-auto-generator: improve debug messages a bit
5ecb131d9479 network: include NLMSGERR_ATTR_MSG attribute in error message
e4a1e68d7ab3 sd-netlink: support NLMSGERR_ATTR_MSG
0e7e8544712f update TODO
2b1daf24dc82 man: document initrd.target
8755dbad5b2a pid1: use initrd.target in the initramfs by default
9fe6f5cc1668 gpt-auto-generator: move functions around
80e7c8408142 tmpfiles: create with correct MAC label on option C
aeec5efab58a copy: add flag COPY_MAC_CREATE to create with correct label
6e86b24db3c5 tree-wide: normalize includes of public headers
fe7a6da8c5a9 core: use SPECIAL_DEFAULT_TARGET more
943800f4e772 execute: Call capability_ambient_set_apply even if ambient set is 0
155a6234ea2c test-capability: Modify ambient capability tests to test clearing caps
82d832b435a0 basic: Drop ambient inherited capabilities by default
f4331d0db28c shared/install: warn about unkown sections in unit files
130b812f9d68 network: warn about unknown sections when parsing .netdev files
ddeb3f5d4b7c shared/conf-parser: allow sections to be silently ignored with new -Section syntax
94a404cb0357 shared/conf-parser: document what the flags do
f9761a89a84f shared/conf-parser: turn CONFIG_PARSE_REFUSE_BOM flag into a local variable
15b82eecb646 boot: Deduplicate old-style loader entries.
ae474efc3f65 boot: Update bootspec.c to match previous changes.
10d0024a07c8 boot: Improve EFISTUB name and version detection.
6cd12ebcfe45 boot: Retain ".conf" suffix for loader config IDs.
65901c0fd164 boot: Ignore EFISTUB binaries starting with "auto-".
7fa23ab646a0 boot: Make EFISTUB IDs use binaries' filenames.
(From OE-Core rev: 7b3cdc74773fce29ef4fec4f60b719f46c3e7f30)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
When sysvinit is disabled we have no init script support, so
systemd-compat-units serves no purpose.
(From OE-Core rev: bed3c48a0a8bc3d32f84f580f2949e86a8d135b7)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
run-postinsts is only expected to run once, but during startup, but if
any dependency is pulled into a transaction, even once it has been
marked disabled, then it can be restarted.
This leads to occasional failures during QA if an ssh session starts
whilst the existing transaction is still running:
Finished Run pending postinsts.
run-postinsts.service: Succeeded.
Condition check resulted in Commit a transient machine-id on disk being skipped.
Condition check resulted in Bind mount volatile /srv being skipped.
Condition check resulted in Bind mount volatile /var/spool being skipped.
Condition check resulted in Bind mount volatile /var/lib being skipped.
Condition check resulted in Bind mount volatile /var/cache being skipped.
Condition check resulted in Platform Persistent Storage Archival being skipped.
Condition check resulted in Rebuild Hardware Database being skipped.
Starting Run pending postinsts...
Condition check resulted in Kernel Configuration File System being skipped.
Condition check resulted in FUSE Control File System being skipped.
Condition check resulted in Load Kernel Modules being skipped.
Condition check resulted in File System Check on Root Device being skipped.
Condition check resulted in Huge Pages File System being skipped.
Condition check resulted in Journal Audit Socket being skipped.
dropbear@125-192.168.7.2:22-192.168.7.1:44226.service: Succeeded.
Condition check resulted in Platform Persistent Storage Archival being skipped.
Started SSH Per-Connection Server (192.168.7.1:44226).
dropbear@124-192.168.7.2:22-192.168.7.1:44224.service: Succeeded.
Started SSH Per-Connection Server (192.168.7.1:44224).
Condition check resulted in Commit a transient machine-id on disk being skipped.
Condition check resulted in Bind mount volatile /srv being skipped.
Condition check resulted in Bind mount volatile /var/spool being skipped.
Condition check resulted in Bind mount volatile /var/lib being skipped.
Condition check resulted in Bind mount volatile /var/cache being skipped.
Condition check resulted in Platform Persistent Storage Archival being skipped.
Condition check resulted in Rebuild Hardware Database being skipped.
Failed to start Run pending postinsts.
run-postinsts.service: Failed with result 'start-limit-hit'.
run-postinsts.service: Start request repeated too quickly.
Setting RemainAfterExit ensures that the unit remains active and is not
gratuitously restarted, unless done so explicitly using systemctl
restart.
(From OE-Core rev: 9f5830375064af920c807b57b5b36691ad346199)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Whilst rngd has to run as root, we can significantly constrain its
permissions (network is only required if nistbeacon is enabled).
(From OE-Core rev: 3ed70b755d0b60e61e0871f8b0cca2e2ab5e13f9)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
rngd.service has a constraint of Before=sysinit.target, installing as
part of multi-user.target is an odd choice as unless it's pulled in by a
different dependency, an other target would not start it.
(From OE-Core rev: eeb1e236dab087b7565dbbf6979e2b4c03e56e91)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
sshd.socket launches the templated sshd@.service, so by moving the
sshdgenkeys.service to sshd.socket, key generation can start in advance
of a connection.
(From OE-Core rev: af38a39b4bed9e43c5075008be47ca72191a489e)
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
part.get("uuid") return the Partition UUID from the partition
table instead of Filesystem UUID. This lead to swap partition
UUID not match/change when wic write expand swap partition.
change it to read the filesystem UUID using blkid. The output
from blkid should looks like this:
wic-partvzhiwq3s: LABEL="swap1" UUID="04e55c19-3f3f-4491-9e32-44eea8daa827" VERSION="1" TYPE="swap" USAGE="other"
[YOCTO #13313]
(From OE-Core rev: 683297eefebe83f848daad9927871242ab28ef91)
Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
| |
This is useful when tests misbehave and get stuck, or when
a significant increase in testing time is undesirable and
needs to be caught automatically.
(From OE-Core rev: d77546e910ad9048f0057f4465716d417b810065)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Python's unittest will not propagate exceptions upside
of itself, but rather will just catch and print them.
The working way to make it stop is to send a SIGINT
(e.g. simulate a ctrl-c press), which will make it exit
with a KeyboardInterrupt exception.
This also makes pressing ctrl-c twice from bitbake work
again (previously hanging instances of bitbake and qemu were
left around, and bitbake would no longer start until they
were killed manually).
(From OE-Core rev: 06568a06ca22ee279d1829d26d4c38738233c06a)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: f97a6d241d1ad1a2cb03ced05202f615223d3a32)
Signed-off-by: Drew Moseley <drew.moseley@northern.tech>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
legacy.patch
removed since it is included in 2020.1
(From OE-Core rev: 5402e91bdca4d4068d93d9374974006d034fbdbf)
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: db90fff8918f449d433ab6e17423dec089ffe627)
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Existing weston test available make sure that a process
for weston-desktop-shell exist when image boot up.
Enhance weston tests by:
- execute weston-info to make sure weston interface(s)
are initialized
- execute weston and make sure it can initialize a
new wayland compositor (retry checking for
wayland processes up to 5 times)
- enable weston logging for debugging when fail
to initialize wayland compositor
[YOCTO# 10690]
(From OE-Core rev: d06552c588bde8fc15c23d8fc2eb00a4243cbc3b)
Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
https://www.boost.org/users/history/version_1_72_0.html documents a
"Known Issue" and has a revert patch for an issue that causes code to
fail to compile that includes the coroutine function. Without this
patch, code which includes the asymmetric_coroutine.hpp will fail to
compile.
(From OE-Core rev: e25e3f151c324272990ad6370c5bc71fd5d05c8c)
Signed-off-by: Andrew Geissler <geissonator@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
| |
(From yocto-docs rev: ac352ad7f95db7eeacb53c2778caa31800bd7c26)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
| |
(From yocto-docs rev: 049832ea4c13b01c31911ad0a6f3e170781db6cd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From yocto-docs rev: 43f042582675f89fcdf81c0cd2ac2602d4282cb3)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If there is a datastore within a datastore (e.g. BB_ORIGENV) then
get-hash() doesn;t correclty handle the contents using the memory
address instead of the contents.
This is a patch from dominik.jaeger@nokia.com which addresses
this problem. Its been low priority since we don't include
BB_ORIGENV anywhere this would cause an issue as standard.
[YOCTO #12473]
(Bitbake rev: 1a8bcfc1eb89ccff834ba68fb514330b510976a2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Some companies are using large numbers of patch files in SRC_URI.
Rightly or wrongly that exposes a performance problem where the code
does not handle the large string manipulations in a way which works
efficienty in python.
This is a modified version of a patch from z00539568
<zhangyifan46@huawei.com153340508@qq.com which addresses the performance
problem. I modified it to use a more advanced regex, retain the "*" check
and cache the regex.
[YOCTO #13824]
(Bitbake rev: c07f374998903359ed55f263c86466d05aa39b68)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When a website is behind a CDN like Cloudflare there may be a "Browser
Integrity Check" or other test applied to requests before they are
allowed through to the server. Downloading via wget passes these tests
as headers are set appropriately, however the Python urllib module may
fail these tests unless additional headers are set. This causes
Wget.checkstatus() to fail where Wget.download() would actually succeed.
For Cloudflare in particular a valid User-Agent is needed, it's easy to
add this to the headers in Wget.checkstatus(). The user agent string is
copied from Wget._fetch_index().
(Bitbake rev: 4679d3cdb9cdf23f3962aa61c599ad7474591f9f)
Signed-off-by: Paul Barker <pbarker@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
multiple recipes
Since commit [tinfoil: Simplify remote datastore connections][1] and
[tinfoil: Add back ability to parse on top of a datastore][2] applied,
bitbake run command parseRecipeFile with param config_data.dsindex rather
than config_data.
While calling tinfoil.parse_recipe_file() with one config_data (with the same
config_data.dsindex) to parse multiple recipes, it will mess up insane check.
It broke update_layer.py on layerindex, here are the simplified steps:
[snip]
t= bb.tinfoil.Tinfoil()
t.prepare()
data = bb.data.createCopy(t.config_data)
fn = "path_to/oe-core/meta/recipes-graphics/images/core-image-clutter.bb"
t.parse_recipe_file(fn, appends=False, config_data=data)
fn = "path_to/oe-core/meta/recipes-graphics/packagegroups/packagegroup-core-x11-base.bb"
t.parse_recipe_file(fn, appends=False, config_data=data)
| File "path_to/oe-core/meta/classes/insane.bbclass", line 1303,
in __anon_1304__path_to_oe_core_meta_classes_insane_bbclass
| bb.fatal("Fatal QA errors found, failing task.")
[snip]
In above failure, RDEPENDS is assigned `${PACKAGE_INSTALL} ${LINGUAS_INSTALL}
${IMAGE_INSTALL_DEBUGFS}' in core-image-clutter.bb, but it broke insane check
on packagegroup-core-x11-base.bb
>From commit [remotedata: enable transporting datastore from the client to
the server][3], it create a new DataSmart to save receive_datastore's remote_data
Similarly, make a copy of config_data(with different config_data.dsindex) could
fix the issue.
[1] http://git.openembedded.org/bitbake/commit/?id=85e03a64dd0a4ebe71009ec4bdf4192c04a9786e
[2] http://git.openembedded.org/bitbake/commit/?id=4618da2094189e4d814b7d65672cb65c86c0626a
[3] http://git.openembedded.org/bitbake/commit/?id=784d2f1a024efe632fc9049ce5b78692d419d938
(Bitbake rev: a3074807974536e370289c25fddcb9ad93cbc137)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: 820b3aee5d7104182e33edd3068ab11cad457fdd)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
0001-xdr_float-do-not-include-bits-endian.h.patch
removed since it is included in 1.2.6
(From OE-Core rev: c940792e1492923036cae97010f9945e7ad43a32)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Add more i915 pciids to make graphic work well on some new boards
like TigerLake.
(From OE-Core rev: 64e93cbb6660f1cb60fa2599f2fd87e44e6c7565)
Signed-off-by: Liwei Song <liwei.song@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
buildall-qemu simplifies the process of build testing an upgraded or
patched recipe by cycling through the build steps for each available qemu
target, with desired LIBC specified by the user as an option (defaulting
to both glibc and musl if no option is provided). While building, a log
file with the name "<recipe>-buildall.log" is written, containing a PASS
or FAIL line upon completion of the build for each architecture. For now,
qemu targets are not selectable (i.e. the recipe is built for all qemu
targets found in meta/conf/machine), but this functionality can be added
in the future along with other useful options.
The log file created by buildall-qemu also includes some basic system
info (e.g. build start time, hostname, host OS, host kernel). Since it is
not guaranteed that tools such as lsb_release will be available on the
host (it isn't by default on my Fedora machine), this information is
collected manually. Additionally, the previous run's log is retained for
comparison by renaming it in the format <recipe>-buildall.log.old once a
new set of builds is triggered for the same recipe.
We've seen multiple variations of this concept in use as one-liners and
as bash functions in dotfiles, so it seemed appropriate to submit it in
script form to oe-core for everyone to use.
Sample log output:
BUILDALL-QEMU LOG FOR aspell
START TIME: 2020-02-11_19:50:02
HOSTNAME: yow-tgamblin-fedora2
HOST OS: Fedora 31 (Server Edition)
HOST KERNEL: 5.4.10-200.fc31.x86_64
===============
BUILD RESULTS:
[glibc]
PASS: qemuarmv5
PASS: qemux86
PASS: qemuppc
PASS: qemumips64
PASS: qemux86-64
PASS: qemumips
PASS: qemuarm
PASS: qemuarm64
PASS: qemuriscv64
[musl]
PASS: qemuarmv5
PASS: qemux86
PASS: qemuppc
PASS: qemumips64
PASS: qemux86-64
FAIL: qemumips
FAIL: qemuarm
FAIL: qemuarm64
FAIL: qemuriscv64
===============
PASSED: 14
FAILED: 4
(From OE-Core rev: ee64b7db6651df4ed419e3d2649b4fb2f2faf830)
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Add support for running wic images with EFI as testimage.
Introduces a variable called QEMU_USE_OVMF for configuration.
(From OE-Core rev: 3af8aaff68ed332d812ea7dc184d392700ad7882)
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
| |
-License-Update: Copyright year updated to 2020.
(From OE-Core rev: 76e142a370c66dd7929c9df4401aae8346f2dd68)
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
| |
(From OE-Core rev: 0acf102023856e11df949d4889aa821df81abb8a)
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
Add volatiles files to create /var/log/cups directory rather than create
it directly when do_install.
(From OE-Core rev: 315689f58536dec4042ef9880c227a69e71e749d)
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When cross-compiling, do not change scripts to use host
versions of perl and gawk.
Also, use INSANE_SKIP to suppress QA complaints if perl
or gawk are not on the target.
(From OE-Core rev: 8972fe5581b9fe8ef14d539001758bb13bca6737)
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Shebang lines longer than 128 characters can give an error
depending on the operating system.
This implements a test that signals an error when locating a
faulty shebang.
YOCTO: #11053
(From OE-Core rev: e694b09cacf8eb0b7e189f449816d3d6a337cb37)
Signed-off-by: Domarys Correa <domarys.correa@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Content of the optional parameter will be appended to the rootfs-device
in the qemu configuration, in case QB_ROOTFS_OPT is not specified.
By default this is empty.
Example use cases are:
Defining 'readonly' when using squashfs, so multiple instances of qemu
can share the same base image, something that cannot be done by just
specifying 'snapshot'.
Defining 'bootindex=0' which helps to get past the EFI shell in
ovmf-binary. This also enables the use case of running WIC images with
EFI bootloader through the testimage.bbclass.
(From OE-Core rev: e9b8c194636cb5505774a2a71bf54450580dd5b8)
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
|
|
|
|
|
|
| |
RISCV64 now supports golang (starting dunfell), therefore limit
disabling to rv32 only.
(From OE-Core rev: beb17254f019a7f72c9ab41298da7bcee6ad8ce8)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|