diff --git a/systemd.be0 b/systemd.be0 index ecfcd60f4..5d53aedd6 100755 --- a/systemd.be0 +++ b/systemd.be0 @@ -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.) @@ -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. @@ -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 \ @@ -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/* } ###############################################################################