Skip to content

Update systemd from 238 to 239 #980

Merged
merged 4 commits into from
Dec 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion systemd.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION systemd-238-0
# BEE_VERSION systemd-239-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)
Expand All @@ -17,6 +17,8 @@ SRCURL[0]="https://github.com/systemd/systemd/archive/v${PKGVERSION}.tar.gz"

# PATCHURL+=()

BEE_BUILDTYPE=meson

###############################################################################
## Add filename patterns to the EXCLUDE array of files that should not
## be added to you package but may be present in the image directory.
Expand Down Expand Up @@ -58,6 +60,7 @@ mee_configure() {
-Dblkid=true \
-Dbuildtype=release \
-Ddefault-dnssec=yes \
-Ddns-over-tls=false \
-Ddns-servers='141.14.16.1' \
-Dntp-servers='zeit.fu-berlin.de ntps1-0.cs.tu-berlin.de time.fu-berlin.de' \
-Dfirstboot=false \
Expand Down Expand Up @@ -86,6 +89,9 @@ mee_install_post() {

# Do not use tmpfs for `/tmp`
ln -vs /dev/null ${D}/etc/systemd/system/tmp.mount

# Remove systemd’s sysctl configuration
rm -rv ${D}/${LIBDIR}/sysctl.d/*
}

###############################################################################
Expand Down