mirror of
https://github.com/systemd/systemd.git
synced 2025-01-21 22:04:01 +03:00
8c018edb0a
The mkosi github action doesn't set up the host machine for building full images anymore. Instead, only sufficient packages are installed to be able to build tools trees so we configure a fedora tools tree to build the actual images.
15 lines
480 B
Plaintext
15 lines
480 B
Plaintext
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
[Match]
|
|
Distribution=ubuntu
|
|
|
|
[Content]
|
|
Packages=
|
|
# We would like to use linux-image-kvm but it does not have support for SMBIOS credentials.
|
|
linux-image-generic
|
|
linux-tools-common
|
|
linux-tools-generic
|
|
# "orphan_file" is enabled by default in recent versions of mkfs.ext4 but not supported by the Jammy kernel
|
|
# so we explicitly disable it.
|
|
Environment=SYSTEMD_REPART_MKFS_OPTIONS_EXT4="-O ^orphan_file"
|