blob: 74b3fbdbd35e366f15e1bed536499833d63a8b58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#############################################################################
##
## Copyright (C) 2015 Digia Plc and/or its subsidiary(-ies).
##
## This file is part of the Qt Enterprise Embedded Scripts of the Qt
## framework.
##
## $QT_BEGIN_LICENSE$
## Commercial License Usage Only
## Licensees holding valid commercial Qt license agreements with Digia
## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
## may use this file in accordance with the terms contained in said license
## agreement.
##
## For further information use the contact form at
## http://www.qt.io/contact-us.
##
##
## $QT_END_LICENSE$
##
#############################################################################
SUMMARY = "Tool for managing bootable, immutable, versioned filesystem trees."
LICENSE = "LGPL-2.1"
LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
inherit autotools pkgconfig systemd
SRC_URI = " \
git://github.com/GNOME/ostree.git \
file://0001-Allow-updating-files-on-the-boot-partition.patch \
file://0002-u-boot-Merge-ostree-s-and-systems-uEnv.txt.patch \
file://0003-Allow-updating-files-in-root-of-boot.patch \
file://0004-Mount-boot-partition.patch \
"
SRCREV = "efdb4d8f443768e59529c299290bee8b1f8f93c3"
S = "${WORKDIR}/git"
DEPENDS = "glib-2.0 e2fsprogs gpgme attr libsoup-2.4 libgsystem libassuan xz"
RRECOMMENDS_${PN} += "gnupg"
PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}"
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_unitdir}/system/,,,"
SYSTEMD_SERVICE_${PN} = "ostree-prepare-root.service ostree-remount.service"
FILES_${PN} += "${systemd_unitdir}/system/ \
${libdir}/dracut/"
EXTRA_OECONF = "--with-dracut \
--without-selinux \
--without-libarchive \
--with-grub2=no \
--enable-gtk-doc-html=no \
--with-soup \
--enable-libsoup-client-certs"
do_configure_prepend() {
cd ${S}
# Update submodules and workaround bugs.
env NOCONFIGURE=1 ./autogen.sh
cd -
}
|