Skip to content

Commit 4369361

Browse files
[sonic_debian_extension.j2] fix systemd version not from buster-backports (#7322)
Install systemd explicitelly from backports and install libsystemd* packages from backports. Signed-off-by: Stepan Blyschak <[email protected]>
1 parent ea46039 commit 4369361

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

build_debian.sh

+1
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ sudo LANG=C chroot $FILESYSTEM_ROOT bash -c "find /usr/share/i18n/locales/ ! -na
351351
# more up-to-date (but potentially less stable) versions
352352
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y -t $IMAGE_DISTRO-backports install \
353353
picocom \
354+
systemd \
354355
systemd-sysv
355356

356357
if [[ $CONFIGURED_ARCH == amd64 ]]; then

files/build_templates/sonic_debian_extension.j2

+4-2
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,12 @@ sudo cp -f $IMAGE_CONFIGS/bash/bash.bashrc $FILESYSTEM_ROOT/etc/
255255

256256
# Install prerequisites needed for installing the dependent Python packages of sonic-host-services
257257
# These packages can be uninstalled after installation
258-
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install libcairo2-dev libdbus-1-dev libgirepository1.0-dev libsystemd-dev pkg-config
258+
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install libcairo2-dev libdbus-1-dev libgirepository1.0-dev pkg-config
259+
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y -t $IMAGE_DISTRO-backports install libsystemd-dev
259260

260261
# Manually install runtime dependencies to avoid them being auto-removed while uninstalling build dependencies
261-
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install gir1.2-glib-2.0 libdbus-1-3 libgirepository-1.0-1 libsystemd0
262+
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y install gir1.2-glib-2.0 libdbus-1-3 libgirepository-1.0-1
263+
sudo LANG=C DEBIAN_FRONTEND=noninteractive chroot $FILESYSTEM_ROOT apt-get -y -t $IMAGE_DISTRO-backports install libsystemd0
262264

263265
# Install SONiC host services package
264266
SONIC_HOST_SERVICES_PY3_WHEEL_NAME=$(basename {{sonic_host_services_py3_wheel_path}})

0 commit comments

Comments
 (0)