| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Useful for testing zsh completion changes.
|
|
|
|
| |
Useful for testing bash completion changes.
|
|
|
|
| |
Required to test systemd-analyze verify.
|
|
|
|
| |
Dare to be different ¯\_(ツ)_/¯
|
|
|
|
|
| |
Since we can build --bootable=no images without dracut->systemd, we need
to add systemd runtime dependencies explicitely.
|
|
|
|
| |
We have 'nano' everywhere, and it's enough for a casual edit.
|
|
|
|
|
|
|
|
|
| |
... and /usr/bin/ path for a library package which provides an executable we
care about (libxslt).
This way the mkosi dependency list corresponds directly to the names which are
used in the dependency() and find_program() lines in meson.build. It also makes
the thing more resilient to package splits and renames.
|
|
|
|
|
|
| |
I think it was only used for building the python wrappers.
C.f. https://src.fedoraproject.org/rpms/systemd/c/ec9ca01d16bf6eda50b77f64dccf1caa06d29374?branch=rawhide.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
m4 was hugely popular in the past, because autotools, automake, flex, bison and
many other things used it. But nowadays it much less popular, and might not even
be installed in the buildroot. (m4 is small, so it doesn't make a big difference.)
(FWIW, Fedora dropped make from the buildroot now,
https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot. I think it's
reasonable to assume that m4 will be dropped at some point too.)
The main reason to drop m4 is that the syntax is not very nice, and we should
minimize the number of different syntaxes that we use. We still have two
(configure_file() with @FOO@ and jinja2 templates with {{foo}} and the
pythonesque conditional expressions), but at least we don't need m4 (with
m4_dnl and `quotes').
|
|
|
|
| |
In preparation for subsequent changes.
|
|
|
|
|
|
|
|
|
|
|
| |
libfido2 was pulled in recently [1], and the dependency on libzstd has been
present for a long time.
nano is now the default editor in Fedora [2], but we still want to pull it in
to have an editor in minimal images.
[1] https://bugzilla.redhat.com/show_bug.cgi?id=1949505
[2] https://fedoraproject.org/wiki/Changes/UseNanoByDefault
|
|
|
|
| |
It was added in e2c5e698c0, but nobody remembers why exactly.
|
|
|
|
|
|
| |
F34 was just released and should be fine for systemd builds.
Cloud-1.2 is the latest version.
|
|
|
|
|
|
| |
Program rsync found: NO
man/meson.build:187:0: ERROR: Program 'rsync' not found
|
| |
|
|
|
|
| |
Split out from #17919.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- HostonlyInitrd reduces the size of the initramfs which speeds up
QEMU boot times.
- Autologin and deleting the root password remove
the manual login step whenever starting the systemd-nspawn container
or QEMU vm.
- NetworkVeth passes --network-veth to the nspawn container when
using mkosi boot and emulates --network-veth with a tap device
and networkd's 80-vm-vt.network builtin network file when using
mkosi qemu. --network-veth makes it easier to test network and
resolved in mkosi's nspawn container or QEMU vm.
|
|
|
|
|
|
| |
It's often useful to have an editor available to edit some random
config file in the final image. Let's install some basic editors
that don't take up too much space.
|
|
|
|
| |
As suggested: https://github.com/systemd/systemd/pull/17741#issuecomment-743479834
|
|
|
|
| |
Useful for debugging purposes.
|
|
|
|
|
|
| |
Let's add a debugger to the mkosi images so we can debug coredumps
from inside mkosi qemu VMs (and hopefully in the future from
mkosi systemd-nspawn containers as well).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
--qemu-headless configures the generated image and mkosi's qemu
command to connect to the VM via the serial port. This allows
spawning a qemu VM within the user's terminal instead of spawning
a graphical GTK GUI. --qemu-headless sets TERM, COLUMNS and LINES
in serial-getty@ttyS0.service in the container which makes the
terminal in the VM behave almost equivalent to the one on the host.
This change makes testing changes to systemd using mkosi + QEMU a
lot easier compared to before as commands can be executed in the VM
from the comfort of one's terminal compared to the Linux console
available when running via the GTK GUI.
|
|
|
|
| |
find is needed by test_exec_dynamicuser.
|
| |
|
|
|
|
|
| |
Latest debian unstable doesn't have iptables-dev anymore. Instead,
let's use libiptc-dev.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
As long as the RPM version does not include a dep for it yet, we need to
add it manually, since we now link against it.
Follow-up for: 95f7ab2fe66cc3bb3a95eb8690114732eab30555
|
|
|
|
|
|
|
| |
We need to include ninja-build in the packages list because meson doesn't
depend on it (because it supports other backends too).
Also drop xz-devel, it's not crucial for the test.
|
|
|
|
| |
Not useful since 72cdb3e783.
|
|
|
|
|
| |
We want to build this image with as many deps turned on as we can make
happen, hence include libfido2 in the image.
|
|
|
|
|
|
|
| |
[zjs: Looking at https://packages.ubuntu.com/bionic/iptables-dev, iptables-dev
was a transitional package that was pulling in libxtables-dev, libip4tc-dev,
and libip6tc-dev (as listed by @GiedriusS). iptables-dev is gone in focal, so
replace it by the expanded list.]
|
| |
|
| |
|
|
|
|
|
|
| |
Many dependencies were pulled via dracut->systemd. Since we can build
stripped images without initrd and dracut, we need to add systemd
runtime dependencies explicitely.
|
|
|
|
|
| |
patterns-base-minimal_base is a moving target, so dependencies need to
be as explicit as possible.
|
|
|
|
|
|
|
|
|
|
|
|
| |
libzstd is a new dependency for systemd that's not in a stable release
yet, so it's not pulled in by the RPM package dependency. Manually
include it in the package section so the image mkosi produces works. It
can be removed when the RPM depends on it.
Additionally, a number of packages in the list appear to be pulled in
because they're dependencies in the systemd rpm, so remove them.
Finally, mkosi v5 adds the proper fs utilities for bootable images type
so drop that dependency as well.
|
|
|
|
|
|
|
|
| |
User accounts of given names are necessary for the build script and
tests to succeed.
(Fixup of #15527, too keen cleaning of dependencies and cached image
caused this.)
|
| |
|
|
|
|
|
|
|
| |
The setup is meant to run against openSUSE Tumbleweed and install
minimum packages necessary for successful build and passing tests.
To speed up incremental build an external build directory is used.
|
|
|
|
|
| |
Both hostname and uname utilities boil down to uname(2) syscall. Reduce
tests dependency footprint by using uname for checking hostname too.
|
|
|
|
| |
Since 6123dfaa72 this should not be necessary anymore.
|
|
|
|
|
| |
This saves ~24MB of space, see
https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot.
|
|
|
|
|
|
|
| |
efsck to build
This is preparation for subsequent additions which link against these
libraries.
|
|
|
|
|
|
|
|
|
|
| |
Fedora minimization had some effect, hence add some required
dependencies explicitly so that we work anyway.
Also, the libtool is not used anymore, drop it.
Finally, the mkosi output format is called gpt_ext4 now, not raw_ext4
anymore.
|
|
|
|
|
|
|
|
|
|
|
|
| |
exec-specifier.service: Executing: /usr/bin/sh -c 'test mkosi-7d5e81c7b81c42338d060a6b98edd44a = $(hostname)'
/usr/bin/sh: hostname: command not found
/usr/bin/sh: line 0: test: mkosi-7d5e81c7b81c42338d060a6b98edd44a: unary operator expected
Received SIGCHLD from PID 7389 (sh).
Child 7389 (sh) died (code=exited, status=2/INVALIDARGUMENT)
gettext provides the hostname binary, but puts it in
/usr/lib/gettext/hostname, which is not part of the default $PATH. Using
inetutils instead puts the binary in /usr/bin/hostname.
|
|\
| |
| | |
Fix mkosi on Arch Linux
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
/* test compression */
XZ compression finished (38280 -> 11756 bytes, 30.7%)
sh: diff: command not found
Assertion 'system(cmd) == 0' failed at src/journal/test-compress.c:198,
function test_compress_stream(). Aborting.
The journal compression test shells out to diff, so include diffutils as
a BuildPackage on Arch.
Remaining fixes in https://github.com/systemd/mkosi/pull/377
|
|/ |
|