Changes to images/qemuarm/glibc/core-image-full-cmdline (files-in-image.txt): /usr/lib/libdbus-1.so.3 changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3.38.3 /usr/lib/libdbus-1.so.3.32.4 moved to /usr/lib/libdbus-1.so.3.38.3 /etc/systemd/user/basic.target.wants was added /etc/systemd/user/basic.target.wants/systemd-tmpfiles-setup.service was added /etc/systemd/user/timers.target.wants was added /etc/systemd/user/timers.target.wants/systemd-tmpfiles-clean.timer was added Changes to images/qemuarm/glibc/core-image-sato-sdk (files-in-image.txt): /usr/lib/libdbus-1.so.3 changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3.38.3 /usr/lib/libdbus-1.so changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3 /usr/lib/libdbus-1.so.3.32.4 moved to /usr/lib/libdbus-1.so.3.38.3 /etc/systemd/user/basic.target.wants was added /etc/systemd/user/basic.target.wants/systemd-tmpfiles-setup.service was added /etc/systemd/user/dbus-org.bluez.obex.service was added /etc/systemd/user/default.target.wants was added /etc/systemd/user/default.target.wants/mpris-proxy.service was added /etc/systemd/user/default.target.wants/pulseaudio.service was added /etc/systemd/user/sockets.target.wants was added /etc/systemd/user/sockets.target.wants/pulseaudio.socket was added /etc/systemd/user/timers.target.wants was added /etc/systemd/user/timers.target.wants/systemd-tmpfiles-clean.timer was added Changes to images/qemuarm/glibc/core-image-sato (files-in-image.txt): /usr/lib/libdbus-1.so.3 changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3.38.3 /usr/lib/libdbus-1.so.3.32.4 moved to /usr/lib/libdbus-1.so.3.38.3 /etc/systemd/user/basic.target.wants was added /etc/systemd/user/basic.target.wants/systemd-tmpfiles-setup.service was added /etc/systemd/user/dbus-org.bluez.obex.service was added /etc/systemd/user/default.target.wants was added /etc/systemd/user/default.target.wants/mpris-proxy.service was added /etc/systemd/user/default.target.wants/pulseaudio.service was added /etc/systemd/user/sockets.target.wants was added /etc/systemd/user/sockets.target.wants/pulseaudio.socket was added /etc/systemd/user/timers.target.wants was added /etc/systemd/user/timers.target.wants/systemd-tmpfiles-clean.timer was added packages/all-poky-linux/run-postinsts/run-postinsts: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in run-postinsts.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset run-postinsts.service if [ "enable" = "enable" ]; then systemctl --no-block restart run-postinsts.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in run-postinsts.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "run-postinsts.service" ] && \ systemctl preset run-postinsts.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "run-postinsts.service" ] && \ systemctl --no-block restart run-postinsts.service fi fi fi " packages/all-poky-linux/run-postinsts/run-postinsts: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop run-postinsts.service systemctl disable run-postinsts.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "run-postinsts.service" ]; then systemctl stop run-postinsts.service systemctl disable run-postinsts.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/all-poky-linux/volatile-binds/volatile-binds: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service if [ "enable" = "enable" ]; then systemctl --no-block restart var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service" ] && \ systemctl preset var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service" ] && \ systemctl --no-block restart var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service fi fi fi " packages/all-poky-linux/volatile-binds/volatile-binds: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service systemctl disable var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service" ]; then systemctl stop var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service systemctl disable var-volatile-lib.service var-volatile-cache.service var-volatile-spool.service var-volatile-srv.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/at/at: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in atd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset atd.service if [ "enable" = "enable" ]; then systemctl --no-block restart atd.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in atd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "atd.service" ] && \ systemctl preset atd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "atd.service" ] && \ systemctl --no-block restart atd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/at/at: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop atd.service systemctl disable atd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "atd.service" ]; then systemctl stop atd.service systemctl disable atd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/avahi/avahi-daemon: latest.pkg_postinst changed from "set -e if [ -z "$D" ]; then killall -q -HUP dbus-daemon || true fi if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in avahi-daemon.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset avahi-daemon.service if [ "enable" = "enable" ]; then systemctl --no-block restart avahi-daemon.service fi fi fi " to "set -e if [ -z "$D" ]; then killall -q -HUP dbus-daemon || true fi if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in avahi-daemon.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "avahi-daemon.service" ] && \ systemctl preset avahi-daemon.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "avahi-daemon.service" ] && \ systemctl --no-block restart avahi-daemon.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/avahi/avahi-daemon: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop avahi-daemon.service systemctl disable avahi-daemon.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "avahi-daemon.service" ]; then systemctl stop avahi-daemon.service systemctl disable avahi-daemon.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/avahi/avahi-dnsconfd: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in avahi-dnsconfd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset avahi-dnsconfd.service if [ "enable" = "enable" ]; then systemctl --no-block restart avahi-dnsconfd.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in avahi-dnsconfd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "avahi-dnsconfd.service" ] && \ systemctl preset avahi-dnsconfd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "avahi-dnsconfd.service" ] && \ systemctl --no-block restart avahi-dnsconfd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/avahi/avahi-dnsconfd: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop avahi-dnsconfd.service systemctl disable avahi-dnsconfd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "avahi-dnsconfd.service" ]; then systemctl stop avahi-dnsconfd.service systemctl disable avahi-dnsconfd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/bluez5/bluez5: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in bluetooth.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset bluetooth.service if [ "enable" = "enable" ]; then systemctl --no-block restart bluetooth.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in bluetooth.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "bluetooth.service" ] && \ systemctl preset bluetooth.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "bluetooth.service" ] && \ systemctl --no-block restart bluetooth.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/bluez5/bluez5: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop bluetooth.service systemctl disable bluetooth.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "bluetooth.service" ]; then systemctl stop bluetooth.service systemctl disable bluetooth.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/busybox/busybox-syslog: latest.pkg_postinst changed from "#!/bin/sh set -e update-alternatives --install /usr/sbin/klogd klogd /usr/bin/busybox.nosuid 50 update-alternatives --install /usr/sbin/syslogd syslogd /usr/bin/busybox.nosuid 50 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in busybox-syslog.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset busybox-syslog.service if [ "enable" = "enable" ]; then systemctl --no-block restart busybox-syslog.service fi fi fi " to "#!/bin/sh set -e update-alternatives --install /usr/sbin/klogd klogd /usr/bin/busybox.nosuid 50 update-alternatives --install /usr/sbin/syslogd syslogd /usr/bin/busybox.nosuid 50 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in busybox-syslog.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "busybox-syslog.service" ] && \ systemctl preset busybox-syslog.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "busybox-syslog.service" ] && \ systemctl --no-block restart busybox-syslog.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/busybox/busybox-syslog: latest.pkg_prerm changed from "set -e # remove syslog if test "x$D" = "x"; then if test "$1" = "upgrade" -o "$1" = "remove"; then /etc/init.d/syslog stop || : fi fi update-alternatives --remove klogd /usr/bin/busybox.nosuid update-alternatives --remove syslogd /usr/bin/busybox.nosuid if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop busybox-syslog.service systemctl disable busybox-syslog.service fi fi " to "set -e # remove syslog if test "x$D" = "x"; then if test "$1" = "upgrade" -o "$1" = "remove"; then /etc/init.d/syslog stop || : fi fi update-alternatives --remove klogd /usr/bin/busybox.nosuid update-alternatives --remove syslogd /usr/bin/busybox.nosuid if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "busybox-syslog.service" ]; then systemctl stop busybox-syslog.service systemctl disable busybox-syslog.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/connman/connman-wait-online: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in connman-wait-online.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset connman-wait-online.service if [ "enable" = "enable" ]; then systemctl --no-block restart connman-wait-online.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in connman-wait-online.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "connman-wait-online.service" ] && \ systemctl preset connman-wait-online.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "connman-wait-online.service" ] && \ systemctl --no-block restart connman-wait-online.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/connman/connman-wait-online: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop connman-wait-online.service systemctl disable connman-wait-online.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "connman-wait-online.service" ]; then systemctl stop connman-wait-online.service systemctl disable connman-wait-online.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/connman/connman: latest.pkg_postinst changed from "#!/bin/sh set -e update-alternatives --install /etc/resolv.conf resolv-conf /etc/resolv-conf.connman 100 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in connman.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset connman.service if [ "enable" = "enable" ]; then systemctl --no-block restart connman.service fi fi fi " to "#!/bin/sh set -e update-alternatives --install /etc/resolv.conf resolv-conf /etc/resolv-conf.connman 100 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in connman.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "connman.service" ] && \ systemctl preset connman.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "connman.service" ] && \ systemctl --no-block restart connman.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/connman/connman: latest.pkg_prerm changed from "#!/bin/sh set -e update-alternatives --remove resolv-conf /etc/resolv-conf.connman if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop connman.service systemctl disable connman.service fi fi " to "#!/bin/sh set -e update-alternatives --remove resolv-conf /etc/resolv-conf.connman if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "connman.service" ]; then systemctl stop connman.service systemctl disable connman.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/cronie/cronie: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in crond.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset crond.service if [ "enable" = "enable" ]; then systemctl --no-block restart crond.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in crond.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "crond.service" ] && \ systemctl preset crond.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "crond.service" ] && \ systemctl --no-block restart crond.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/cronie/cronie: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop crond.service systemctl disable crond.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "crond.service" ]; then systemctl stop crond.service systemctl disable crond.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/dbus/dbus-dbg: RRECOMMENDS: added "systemd-dbg" packages/cortexa15t2hf-neon-poky-linux-gnueabi/dbus/dbus-dev: RDEPENDS: added "systemd-dev" packages/cortexa15t2hf-neon-poky-linux-gnueabi/dbus/dbus-doc: FILELIST: added "/usr/share/doc/dbus/index.html" packages/cortexa15t2hf-neon-poky-linux-gnueabi/dbus/dbus-lib: FILELIST: removed "/usr/lib/libdbus-1.so.3.32.4", added "/usr/lib/libdbus-1.so.3.38.3" packages/cortexa15t2hf-neon-poky-linux-gnueabi/dbus/dbus-ptest: FILELIST: removed "/usr/share/installed-tests/dbus/test-containers.test /usr/libexec/installed-tests/dbus/test-containers /usr/share/installed-tests/dbus/test-containers_with_config.test", added "/usr/libexec/installed-tests/dbus/data/valid-config-files/listen-autolaunch-win.conf /usr/share/installed-tests/dbus/test-strings.test /usr/libexec/installed-tests/dbus/test-strings /usr/share/installed-tests/dbus/test-strings_with_config.test" Changes to packages/cortexa15t2hf-neon-poky-linux-gnueabi/dbus (sysroot): /usr/lib/libdbus-1.so.3 changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3.38.3 /usr/lib/libdbus-1.so changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3 /usr/lib/libdbus-1.so.3.32.4 moved to /usr/lib/libdbus-1.so.3.38.3 packages/cortexa15t2hf-neon-poky-linux-gnueabi/dropbear/dropbear: latest.pkg_postinst changed from "#!/bin/sh set -e update-alternatives --install /usr/bin/scp scp /usr/sbin/dropbearmulti 20 update-alternatives --install /usr/bin/ssh ssh /usr/sbin/dropbearmulti 20 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in dropbear.socket; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset dropbear.socket if [ "enable" = "enable" ]; then systemctl --no-block restart dropbear.socket fi fi fi " to "#!/bin/sh set -e update-alternatives --install /usr/bin/scp scp /usr/sbin/dropbearmulti 20 update-alternatives --install /usr/bin/ssh ssh /usr/sbin/dropbearmulti 20 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in dropbear.socket; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "dropbear.socket" ] && \ systemctl preset dropbear.socket [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "dropbear.socket" ] && \ systemctl --no-block restart dropbear.socket fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/dropbear/dropbear: latest.pkg_prerm changed from "#!/bin/sh set -e update-alternatives --remove scp /usr/sbin/dropbearmulti update-alternatives --remove ssh /usr/sbin/dropbearmulti if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop dropbear.socket systemctl disable dropbear.socket fi fi " to "#!/bin/sh set -e update-alternatives --remove scp /usr/sbin/dropbearmulti update-alternatives --remove ssh /usr/sbin/dropbearmulti if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "dropbear.socket" ]; then systemctl stop dropbear.socket systemctl disable dropbear.socket fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " Changes to packages/cortexa15t2hf-neon-poky-linux-gnueabi/gcc-runtime (sysroot): /sysroot-providers/virtual_compilerlibs was added /sysroot-providers/virtual_arm-poky-linux-gnueabi-compilerlibs was removed packages/cortexa15t2hf-neon-poky-linux-gnueabi/glibc/nscd: latest.pkg_postinst changed from "set -e if [ -z "$D" ]; then if command -v systemd-tmpfiles >/dev/null; then systemd-tmpfiles --create /usr/lib/tmpfiles.d/nscd.conf elif [ -e /etc/init.d/populate-volatile.sh ]; then /etc/init.d/populate-volatile.sh update fi fi if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in nscd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset nscd.service if [ "enable" = "enable" ]; then systemctl --no-block restart nscd.service fi fi fi " to "set -e if [ -z "$D" ]; then if command -v systemd-tmpfiles >/dev/null; then systemd-tmpfiles --create /usr/lib/tmpfiles.d/nscd.conf elif [ -e /etc/init.d/populate-volatile.sh ]; then /etc/init.d/populate-volatile.sh update fi fi if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in nscd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "nscd.service" ] && \ systemctl preset nscd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "nscd.service" ] && \ systemctl --no-block restart nscd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/glibc/nscd: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop nscd.service systemctl disable nscd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "nscd.service" ]; then systemctl stop nscd.service systemctl disable nscd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/iptables/iptables: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in iptables.service ip6tables.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset iptables.service ip6tables.service if [ "enable" = "enable" ]; then systemctl --no-block restart iptables.service ip6tables.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in iptables.service ip6tables.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "iptables.service ip6tables.service" ] && \ systemctl preset iptables.service ip6tables.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "iptables.service ip6tables.service" ] && \ systemctl --no-block restart iptables.service ip6tables.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/iptables/iptables: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop iptables.service ip6tables.service systemctl disable iptables.service ip6tables.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "iptables.service ip6tables.service" ]; then systemctl stop iptables.service ip6tables.service systemctl disable iptables.service ip6tables.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/kexec-tools/kdump: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in kdump.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset kdump.service if [ "enable" = "enable" ]; then systemctl --no-block restart kdump.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in kdump.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "kdump.service" ] && \ systemctl preset kdump.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "kdump.service" ] && \ systemctl --no-block restart kdump.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/kexec-tools/kdump: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop kdump.service systemctl disable kdump.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "kdump.service" ]; then systemctl stop kdump.service systemctl disable kdump.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/libxkbcommon/libxkbcommon-dev: RRECOMMENDS: removed "libx11-locale-dev" packages/cortexa15t2hf-neon-poky-linux-gnueabi/libxkbcommon/libxkbcommon: RDEPENDS: removed all items "libx11-locale" packages/cortexa15t2hf-neon-poky-linux-gnueabi/libxkbcommon/libxkbcommon: RRECOMMENDS: added "libx11-locale" packages/cortexa15t2hf-neon-poky-linux-gnueabi/logrotate/logrotate: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in logrotate.service logrotate.timer; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset logrotate.service logrotate.timer if [ "enable" = "enable" ]; then systemctl --no-block restart logrotate.service logrotate.timer fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in logrotate.service logrotate.timer; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "logrotate.service logrotate.timer" ] && \ systemctl preset logrotate.service logrotate.timer [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "logrotate.service logrotate.timer" ] && \ systemctl --no-block restart logrotate.service logrotate.timer fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/logrotate/logrotate: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop logrotate.service logrotate.timer systemctl disable logrotate.service logrotate.timer fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "logrotate.service logrotate.timer" ]; then systemctl stop logrotate.service logrotate.timer systemctl disable logrotate.service logrotate.timer fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/lttng-tools/lttng-tools: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "disable" = "enable" ]; then for service in lttng-sessiond.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset lttng-sessiond.service if [ "disable" = "enable" ]; then systemctl --no-block restart lttng-sessiond.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "disable" = "enable" ]; then for service in lttng-sessiond.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "lttng-sessiond.service" ] && \ systemctl preset lttng-sessiond.service [ -n "" ] && \ systemctl --global preset if [ "disable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "lttng-sessiond.service" ] && \ systemctl --no-block restart lttng-sessiond.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/lttng-tools/lttng-tools: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop lttng-sessiond.service systemctl disable lttng-sessiond.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "lttng-sessiond.service" ]; then systemctl stop lttng-sessiond.service systemctl disable lttng-sessiond.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/man-db/man-db: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "disable" = "enable" ]; then for service in man-db.timer man-db.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset man-db.timer man-db.service if [ "disable" = "enable" ]; then systemctl --no-block restart man-db.timer man-db.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "disable" = "enable" ]; then for service in man-db.timer man-db.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "man-db.timer man-db.service" ] && \ systemctl preset man-db.timer man-db.service [ -n "" ] && \ systemctl --global preset if [ "disable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "man-db.timer man-db.service" ] && \ systemctl --no-block restart man-db.timer man-db.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/man-db/man-db: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop man-db.timer man-db.service systemctl disable man-db.timer man-db.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "man-db.timer man-db.service" ]; then systemctl stop man-db.timer man-db.service systemctl disable man-db.timer man-db.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/neard/neard: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in neard.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset neard.service if [ "enable" = "enable" ]; then systemctl --no-block restart neard.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in neard.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "neard.service" ] && \ systemctl preset neard.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "neard.service" ] && \ systemctl --no-block restart neard.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/neard/neard: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop neard.service systemctl disable neard.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "neard.service" ]; then systemctl stop neard.service systemctl disable neard.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/nfs-utils/nfs-utils-client: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in nfs-statd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset nfs-statd.service if [ "enable" = "enable" ]; then systemctl --no-block restart nfs-statd.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in nfs-statd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "nfs-statd.service" ] && \ systemctl preset nfs-statd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "nfs-statd.service" ] && \ systemctl --no-block restart nfs-statd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/nfs-utils/nfs-utils-client: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop nfs-statd.service systemctl disable nfs-statd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "nfs-statd.service" ]; then systemctl stop nfs-statd.service systemctl disable nfs-statd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/nfs-utils/nfs-utils: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in nfs-server.service nfs-mountd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset nfs-server.service nfs-mountd.service if [ "enable" = "enable" ]; then systemctl --no-block restart nfs-server.service nfs-mountd.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in nfs-server.service nfs-mountd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "nfs-server.service nfs-mountd.service" ] && \ systemctl preset nfs-server.service nfs-mountd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "nfs-server.service nfs-mountd.service" ] && \ systemctl --no-block restart nfs-server.service nfs-mountd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/nfs-utils/nfs-utils: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop nfs-server.service nfs-mountd.service systemctl disable nfs-server.service nfs-mountd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "nfs-server.service nfs-mountd.service" ]; then systemctl stop nfs-server.service nfs-mountd.service systemctl disable nfs-server.service nfs-mountd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/ofono/ofono: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in ofono.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset ofono.service if [ "enable" = "enable" ]; then systemctl --no-block restart ofono.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in ofono.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "ofono.service" ] && \ systemctl preset ofono.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "ofono.service" ] && \ systemctl --no-block restart ofono.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/ofono/ofono: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop ofono.service systemctl disable ofono.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "ofono.service" ]; then systemctl stop ofono.service systemctl disable ofono.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/openssh/openssh-sshd: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in sshd.socket; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset sshd.socket if [ "enable" = "enable" ]; then systemctl --no-block restart sshd.socket fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in sshd.socket; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "sshd.socket" ] && \ systemctl preset sshd.socket [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "sshd.socket" ] && \ systemctl --no-block restart sshd.socket fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/openssh/openssh-sshd: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop sshd.socket systemctl disable sshd.socket fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "sshd.socket" ]; then systemctl stop sshd.socket systemctl disable sshd.socket fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/psplash/psplash: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in psplash-start.service psplash-systemd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset psplash-start.service psplash-systemd.service if [ "enable" = "enable" ]; then systemctl --no-block restart psplash-start.service psplash-systemd.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in psplash-start.service psplash-systemd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "psplash-start.service psplash-systemd.service" ] && \ systemctl preset psplash-start.service psplash-systemd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "psplash-start.service psplash-systemd.service" ] && \ systemctl --no-block restart psplash-start.service psplash-systemd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/psplash/psplash: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop psplash-start.service psplash-systemd.service systemctl disable psplash-start.service psplash-systemd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "psplash-start.service psplash-systemd.service" ]; then systemctl stop psplash-start.service psplash-systemd.service systemctl disable psplash-start.service psplash-systemd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/rpcbind/rpcbind: latest.pkg_postinst changed from "#!/bin/sh set -e update-alternatives --install /usr/bin/rpcinfo rpcinfo /usr/bin/rpcinfo.rpcbind 10 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in rpcbind.service rpcbind.socket; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset rpcbind.service rpcbind.socket if [ "enable" = "enable" ]; then systemctl --no-block restart rpcbind.service rpcbind.socket fi fi fi " to "#!/bin/sh set -e update-alternatives --install /usr/bin/rpcinfo rpcinfo /usr/bin/rpcinfo.rpcbind 10 if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in rpcbind.service rpcbind.socket; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "rpcbind.service rpcbind.socket" ] && \ systemctl preset rpcbind.service rpcbind.socket [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "rpcbind.service rpcbind.socket" ] && \ systemctl --no-block restart rpcbind.service rpcbind.socket fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/rpcbind/rpcbind: latest.pkg_prerm changed from "#!/bin/sh set -e update-alternatives --remove rpcinfo /usr/bin/rpcinfo.rpcbind if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop rpcbind.service rpcbind.socket systemctl disable rpcbind.service rpcbind.socket fi fi " to "#!/bin/sh set -e update-alternatives --remove rpcinfo /usr/bin/rpcinfo.rpcbind if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "rpcbind.service rpcbind.socket" ]; then systemctl stop rpcbind.service rpcbind.socket systemctl disable rpcbind.service rpcbind.socket fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/sysklogd/sysklogd: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in syslogd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset syslogd.service if [ "enable" = "enable" ]; then systemctl --no-block restart syslogd.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in syslogd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "syslogd.service" ] && \ systemctl preset syslogd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "syslogd.service" ] && \ systemctl --no-block restart syslogd.service fi fi fi if [ x"$D" = "x" ]; then if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/sysklogd/sysklogd: latest.pkg_prerm changed from "set -e if test "x$D" = "x"; then if test "$1" = "upgrade" -o "$1" = "remove"; then /etc/init.d/syslog stop || : fi fi if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop syslogd.service systemctl disable syslogd.service fi fi " to "set -e if test "x$D" = "x"; then if test "$1" = "upgrade" -o "$1" = "remove"; then /etc/init.d/syslog stop || : fi fi if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "syslogd.service" ]; then systemctl stop syslogd.service systemctl disable syslogd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/systemd/systemd-binfmt: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in systemd-binfmt.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset systemd-binfmt.service if [ "enable" = "enable" ]; then systemctl --no-block restart systemd-binfmt.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in systemd-binfmt.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "systemd-binfmt.service" ] && \ systemctl preset systemd-binfmt.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "systemd-binfmt.service" ] && \ systemctl --no-block restart systemd-binfmt.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/systemd/systemd-binfmt: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop systemd-binfmt.service systemctl disable systemd-binfmt.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "systemd-binfmt.service" ]; then systemctl stop systemd-binfmt.service systemctl disable systemd-binfmt.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/systemd/systemd-networkd: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in systemd-networkd.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset systemd-networkd.service if [ "enable" = "enable" ]; then systemctl --no-block restart systemd-networkd.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in systemd-networkd.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "systemd-networkd.service" ] && \ systemctl preset systemd-networkd.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "systemd-networkd.service" ] && \ systemctl --no-block restart systemd-networkd.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/systemd/systemd-networkd: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop systemd-networkd.service systemctl disable systemd-networkd.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "systemd-networkd.service" ]; then systemctl stop systemd-networkd.service systemctl disable systemd-networkd.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/tcf-agent/tcf-agent: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in tcf-agent.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset tcf-agent.service if [ "enable" = "enable" ]; then systemctl --no-block restart tcf-agent.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in tcf-agent.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "tcf-agent.service" ] && \ systemctl preset tcf-agent.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "tcf-agent.service" ] && \ systemctl --no-block restart tcf-agent.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/tcf-agent/tcf-agent: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop tcf-agent.service systemctl disable tcf-agent.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "tcf-agent.service" ]; then systemctl stop tcf-agent.service systemctl disable tcf-agent.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/wpa-supplicant/wpa-supplicant: latest.pkg_postinst changed from "set -e # If we're offline, we don't need to do this. if [ "x$D" = "x" ]; then killall -q -HUP dbus-daemon || true fi if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "disable" = "enable" ]; then for service in wpa_supplicant.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset wpa_supplicant.service if [ "disable" = "enable" ]; then systemctl --no-block restart wpa_supplicant.service fi fi fi " to "set -e # If we're offline, we don't need to do this. if [ "x$D" = "x" ]; then killall -q -HUP dbus-daemon || true fi if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "disable" = "enable" ]; then for service in wpa_supplicant.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "wpa_supplicant.service" ] && \ systemctl preset wpa_supplicant.service [ -n "" ] && \ systemctl --global preset if [ "disable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "wpa_supplicant.service" ] && \ systemctl --no-block restart wpa_supplicant.service fi fi fi " packages/cortexa15t2hf-neon-poky-linux-gnueabi/wpa-supplicant/wpa-supplicant: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop wpa_supplicant.service systemctl disable wpa_supplicant.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "wpa_supplicant.service" ]; then systemctl stop wpa_supplicant.service systemctl disable wpa_supplicant.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " packages/qemuarm-poky-linux-gnueabi/xserver-nodm-init/xserver-nodm-init: latest.pkg_postinst changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in xserver-nodm.service; do systemctl ${OPTS} enable "$service" done fi if [ -z "$D" ]; then systemctl daemon-reload systemctl preset xserver-nodm.service if [ "enable" = "enable" ]; then systemctl --no-block restart xserver-nodm.service fi fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if [ "enable" = "enable" ]; then for service in xserver-nodm.service; do systemctl ${OPTS} enable "$service" done for service in ; do systemctl --global ${OPTS} enable "$service" done fi if [ -z "$D" ]; then # Reload only system service manager # --global for daemon-reload is not supported: https://github.com/systemd/systemd/issues/19284 systemctl daemon-reload [ -n "xserver-nodm.service" ] && \ systemctl preset xserver-nodm.service [ -n "" ] && \ systemctl --global preset if [ "enable" = "enable" ]; then # --global flag for restart is not supported by systemd (see above) [ -n "xserver-nodm.service" ] && \ systemctl --no-block restart xserver-nodm.service fi fi fi " packages/qemuarm-poky-linux-gnueabi/xserver-nodm-init/xserver-nodm-init: latest.pkg_prerm changed from "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop xserver-nodm.service systemctl disable xserver-nodm.service fi fi " to "#!/bin/sh set -e if systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then if [ -n "xserver-nodm.service" ]; then systemctl stop xserver-nodm.service systemctl disable xserver-nodm.service fi # same as above, --global flag is not supported for stop so do disable only [ -n "" ] && \ systemctl --global disable fi fi " Changes to packages/x86_64-linux/binutils-cross-arm (sysroot): /sysroot-providers/virtual_arm-poky-linux-gnueabi-binutils was removed Changes to packages/x86_64-linux/dbus-native (sysroot): /usr/lib/libdbus-1.so.3 changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3.38.3 /usr/lib/libdbus-1.so changed symlink target from libdbus-1.so.3.32.4 to libdbus-1.so.3 /usr/lib/libdbus-1.so.3.32.4 moved to /usr/lib/libdbus-1.so.3.38.3 /var/run was removed /var/run/dbus was removed Changes to packages/x86_64-linux/gcc-cross-arm (sysroot): /sysroot-providers/virtual_arm-poky-linux-gnueabi-g++ was removed /sysroot-providers/virtual_arm-poky-linux-gnueabi-gcc was removed Changes to packages/x86_64-linux/glib-2.0-native (sysroot): /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native/2.82.4 was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr/lib was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr/lib/libglib-2.0.so.0.8200.4-gdb.py was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/qemuarm-alt/build/build/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr/lib/libgobject-2.0.so.0.8200.4-gdb.py was added /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native/2.82.4 was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr/lib was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr/lib/libglib-2.0.so.0.8200.4-gdb.py was removed /usr/share/gdb/auto-load/srv/pokybuild/yocto-worker/reproducible/build/build-st/tmp/work/x86_64-linux/glib-2.0-native/2.82.4/recipe-sysroot-native/usr/lib/libgobject-2.0.so.0.8200.4-gdb.py was removed