summaryrefslogtreecommitdiffstats
path: root/mkosi.sanitizers (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mkosi: Add dnf and dnf5 to sanitizer workaround listDaan De Meyer5 days1-0/+2
|
* mkosi: Use bash to execute command -vDaan De Meyer5 days1-2/+2
| | | | | | command is only an executable on Fedora due to a downstream patch, on Arch for example it's only a builtin so we have to use bash to execute command -v to get proper results on Arch.
* mkosi: Don't create sanitizer wrappers for every mkfs binaryDaan De Meyer2024-09-031-5/+0
| | | | | | mksquashfs for some reason ends up in nss_systemd and mkfs.btrfs links against libudev. The others don't need a sanitizer wrapper script.
* mkosi: Introduce build imageDaan De Meyer2024-07-155-0/+166
We want the exitrd image to be built with the latest systemd as well. As the exitrd image is built as part of mkosi.images, and all subimages are built before the main image, this implies the packages must be built as a subimage in mkosi.images/ as well. So we introduce the build image and move all logic related to building distribution packages there. This also has the nice side effect of slimming down the main image as the build dependencies are not installed into the main image anymore. It also makes sure the packages are built in a "clean" chroot without any of the other packages which we install in the main image available.