]> git.ipfire.org Git - thirdparty/systemd.git/blame - mkosi.build
core: use id unit when retrieving unit file state (#8038)
[thirdparty/systemd.git] / mkosi.build
CommitLineData
7629744a 1#!/bin/sh
2set -ex
1b0ff615
LP
3
4# This file is part of systemd.
5#
6# Copyright 2016 Lennart Poettering
7#
8# systemd is free software; you can redistribute it and/or modify it
9# under the terms of the GNU Lesser General Public License as published by
10# the Free Software Foundation; either version 2.1 of the License, or
11# (at your option) any later version.
12#
13# systemd is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# Lesser General Public License for more details.
17#
18# You should have received a copy of the GNU Lesser General Public License
19# along with systemd; If not, see <http://www.gnu.org/licenses/>.
20
21# This is a build script for OS image generation using mkosi (https://github.com/systemd/mkosi).
22# Simply invoke "mkosi" in the project directory to build an OS image.
23
70e760e3
LP
24# If mkosi.builddir/ exists mkosi will set $BUILDDIR to it, let's then use it
25# as out-of-tree build dir. Otherwise, let's make up our own builddir.
26[ -z "$BUILDDIR" ] && BUILDDIR=build
27
474cca49 28export LC_CTYPE=en_US.UTF-8
9400405b 29
8da0592c
LP
30sysvinit_path=`realpath /etc/init.d`
31
c82ce4f2
LP
32nobody_user=`id -u -n 65534 2> /dev/null`
33if [ "$nobody_user" != "" ] ; then
34 # Validate that we can translate forth and back
35 if [ "`id -u $nobody_user`" != 65534 ] ; then
36 nobody_user=""
37 fi
38fi
39if [ "$nobody_user" = "" ] ; then
40 if id -u nobody 2> /dev/null ; then
41 # The "nobody" user is defined already for something else, pick the Fedora name
42 nobody_user=nfsnobody
43 else
44 # The "nobody" user name is free, use it
45 nobody_user=nobody
46 fi
47fi
48
49nobody_group=`id -g -n 65534 2> /dev/null`
50if [ "$nobody_group" != "" ] ; then
51 # Validate that we can translate forth and back
52 if [ "`id -g $nobody_group`" != 65534 ] ; then
53 nobody_group=""
54 fi
55fi
56if [ "$nobody_group" = "" ] ; then
57 if id -u nobody 2> /dev/null ; then
58 # The "nobody" group is defined already for something else, pick the Fedora name
59 nobody_group=nfsnobody
60 else
61 # The "nobody" group name is free, use it
62 nobody_group=nobody
63 fi
64fi
65
66[ -f "$BUILDDIR"/build.ninja ] || meson "$BUILDDIR" -D "sysvinit-path=$sysvinit_path" -D default-hierarchy=unified -D man=false -D "nobody-user=$nobody_user" -D "nobody-group=$nobody_group"
70e760e3 67ninja -C "$BUILDDIR" all
2ba6e738 68[ "$WITH_TESTS" = 0 ] || ninja -C "$BUILDDIR" test || ( RET="$?" ; cat "$BUILDDIR"/meson-logs/testlog.txt ; exit "$RET" )
70e760e3 69ninja -C "$BUILDDIR" install
6344a7eb 70
70e760e3 71mkdir -p "$DESTDIR"/etc
6344a7eb 72
70e760e3 73cat > "$DESTDIR"/etc/issue <<EOF
6344a7eb
LP
74\S (built from systemd tree)
75Kernel \r on an \m (\l)
76
77EOF