summaryrefslogtreecommitdiffstats
path: root/rules/host-systemd.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2013-05-14 21:16:53 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2013-05-14 23:27:31 +0200
commitcd49b6ce4fe0be733b1db92787aeafc713a969ad (patch)
treee0dd4d1b5302581a8a61813cc561d298f9f69e06 /rules/host-systemd.make
parent22b3ffa98453cbc8aee276900188034bbad4d66d (diff)
downloadptxdist-cd49b6ce4fe0be733b1db92787aeafc713a969ad.tar.gz
ptxdist-cd49b6ce4fe0be733b1db92787aeafc713a969ad.tar.xz
systemd: version bump 195 -> 204
This also includes a host-systemd. udevadm is needed here to generate the hardware database if enabled. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-systemd.make')
-rw-r--r--rules/host-systemd.make74
1 files changed, 74 insertions, 0 deletions
diff --git a/rules/host-systemd.make b/rules/host-systemd.make
new file mode 100644
index 000000000..188c99d6e
--- /dev/null
+++ b/rules/host-systemd.make
@@ -0,0 +1,74 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2013 by Michael Olbrich <m.olbrich@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_SYSTEMD) += host-systemd
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+HOST_SYSTEMD_CONF_TOOL := autoconf
+HOST_SYSTEMD_CONF_OPT := \
+ $(HOST_AUTOCONF) \
+ --disable-largefile \
+ --enable-silent-rules \
+ --disable-static \
+ --disable-nls \
+ --disable-gtk-doc \
+ --disable-gtk-doc-html \
+ --disable-gtk-doc-pdf \
+ --disable-introspection \
+ --disable-kmod \
+ --disable-blkid \
+ --disable-ima \
+ --disable-chkconfig \
+ --disable-selinux \
+ --disable-xz \
+ --disable-tcpwrap \
+ --disable-pam \
+ --disable-acl \
+ --disable-xattr \
+ --disable-gcrypt \
+ --disable-audit \
+ --disable-libcryptsetup \
+ --disable-qrencode \
+ --disable-microhttpd \
+ --disable-binfmt \
+ --disable-vconsole \
+ --disable-readahead \
+ --disable-bootchart \
+ --disable-quotacheck \
+ --disable-randomseed \
+ --disable-logind \
+ --disable-hostnamed \
+ --disable-timedated \
+ --disable-localed \
+ --disable-coredump \
+ --disable-polkit \
+ --disable-efi \
+ --disable-myhostname \
+ --disable-gudev \
+ --disable-keymap \
+ --disable-manpages \
+ --enable-split-usr \
+ --disable-tests \
+ --with-sysvinit-path="" \
+ --with-sysvrcnd-path="" \
+ --without-python \
+ --with-rootprefix= \
+ --with-rootlibdir=/lib
+
+# vim: syntax=make