]> git.ipfire.org Git - thirdparty/systemd.git/blob - mkosi.build
Merge pull request #5619 from fbuihuu/fully-restore-unit-cgroup-state
[thirdparty/systemd.git] / mkosi.build
1 #!/bin/sh -ex
2
3 # This file is part of systemd.
4 #
5 # Copyright 2016 Lennart Poettering
6 #
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
11 #
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20 # This is a build script for OS image generation using mkosi (https://github.com/systemd/mkosi).
21 # Simply invoke "mkosi" in the project directory to build an OS image.
22
23 export LC_CTYPE=C.UTF-8
24 meson build
25 ninja -C build all
26 ninja -C build test
27 ninja -C build install
28
29 mkdir -p $DESTDIR/etc
30
31 cat > $DESTDIR/etc/issue <<EOF
32 \S (built from systemd tree)
33 Kernel \r on an \m (\l)
34
35 EOF