mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
bcb335ac68
- Use mkosi.images/ instead of mkosi.presets/ - Use the .chroot suffix to run scripts in the image - Use BuildSources= match for the kernel build - Move 10-systemd.conf to mkosi.conf and rely on mkosi.local.conf for local configuration
8 lines
284 B
Bash
Executable File
8 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
# OpenSUSE insists on blacklisting erofs by default because its supposedly a legacy filesystem.
|
|
# See https://github.com/openSUSE/suse-module-tools/pull/71
|
|
rm -f "$BUILDROOT/usr/lib/modprobe.d/60-blacklist_fs-erofs.conf"
|