osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/43533?usp=email )
Change subject: data/build_binpkg: fix debian11 (EOL)
......................................................................
data/build_binpkg: fix debian11 (EOL)
Change-Id: I16f66b34dde8271355bb415214c124d918fc4512
---
M scripts/obs/data/build_binpkg.Dockerfile
1 file changed, 12 insertions(+), 0 deletions(-)
Approvals:
fixeria: Looks good to me, but someone else must approve
pespin: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/scripts/obs/data/build_binpkg.Dockerfile b/scripts/obs/data/build_binpkg.Dockerfile
index fb3df72..ee291b4 100644
--- a/scripts/obs/data/build_binpkg.Dockerfile
+++ b/scripts/obs/data/build_binpkg.Dockerfile
@@ -12,6 +12,18 @@
fi && \
useradd --uid=${UID} -m user
+# As of writing, the debian 11 security repository is not available on
+# archive.debian.org while at the same time the non-archived version is broken.
+# Use snapshot.debian.org for now (as found in the debian:eol image).
+RUN case "$DISTRO" in \
+ debian:11) \
+ ( echo "deb http://archive.debian.org/debian bullseye main"; \
+ echo "deb http://snapshot.debian.org/archive/debian-security/20250625T172521Z bullseye-security main"; \
+ echo "deb http://archive.debian.org/debian bullseye-updates main"; \
+ ) > /etc/apt/sources.list \
+ ;; \
+ esac
+
# Only install build-essential here, and what's needed to add the Osmocom
# repository. Everything else must be defined as dependency in the package
# build recipe. For rpm-based distributions, there is no build-essential or
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/43533?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I16f66b34dde8271355bb415214c124d918fc4512
Gerrit-Change-Number: 43533
Gerrit-PatchSet: 4
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/43532?usp=email )
Change subject: OBS: docker: debian:11: use debian/eol:bullseye
......................................................................
OBS: docker: debian:11: use debian/eol:bullseye
The docker image for debian 11 currently still exists, but given that it
is EOL it will disappear soon. Switch to the EOL name already, and
adjust the debian 12 line to be consistent while at.
Change-Id: I7c4259d42ad9fb6e1ad8a36a4cc6c3b5c62323bc
---
M scripts/obs/lib/docker.py
1 file changed, 4 insertions(+), 2 deletions(-)
Approvals:
pespin: Looks good to me, approved
Jenkins Builder: Verified
fixeria: Looks good to me, but someone else must approve
diff --git a/scripts/obs/lib/docker.py b/scripts/obs/lib/docker.py
index 68ed28d..ab6ea9e 100644
--- a/scripts/obs/lib/docker.py
+++ b/scripts/obs/lib/docker.py
@@ -25,8 +25,10 @@
match distro:
case "debian:10":
distro = "debian/eol:buster"
- # debian:11 points to debian:bullseye upstream
- # debian:12 points to debian:bookworm upstream
+ case "debian:11":
+ distro = "debian/eol:bullseye"
+ case "debian:12":
+ distro = "debian:bookworm"
case "debian:13":
distro = "debian:trixie"
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/43532?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I7c4259d42ad9fb6e1ad8a36a4cc6c3b5c62323bc
Gerrit-Change-Number: 43532
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Attention is currently required from: Andrei G.
laforge has posted comments on this change by Andrei G. ( https://gerrit.osmocom.org/c/osmo-sgsn/+/43587?usp=email )
Change subject: sgsn: vty: guard NULL iu.ue_ctx when dumping
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmo-sgsn/+/43587?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Change-Id: I19d380401edcdce18586ed9de26cfe85c925c1f2
Gerrit-Change-Number: 43587
Gerrit-PatchSet: 1
Gerrit-Owner: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Comment-Date: Wed, 09 Sep 2026 07:10:11 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: Andrei G.
laforge has posted comments on this change by Andrei G. ( https://gerrit.osmocom.org/c/osmo-hlr/+/43578?usp=email )
Change subject: gsupclient: add LIBOSMOGSM_LIBS to LIBADD
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmo-hlr/+/43578?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Change-Id: I413ff47aa1e8034ea86c61134d3d6784942b0e3b
Gerrit-Change-Number: 43578
Gerrit-PatchSet: 1
Gerrit-Owner: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Comment-Date: Wed, 09 Sep 2026 07:08:38 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: Andrei G.
laforge has posted comments on this change by Andrei G. ( https://gerrit.osmocom.org/c/osmo-iuh/+/43588?usp=email )
Change subject: build: rewrite generated includes without sed -i
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
The general question is whether we suddenly [again] start to support anything beyond Linux. Many years ago we dropped support for FreeBSD, see the threads spawned by https://lists.osmocom.org/hyperkitty/list/openbsc@lists.osmocom.org/thread/… the same point, we stated we'd merge compatibiltiy pathes in this post eight years ago: https://lists.osmocom.org/hyperkitty/list/openbsc@lists.osmocom.org/message… - if there is someone committed to maintaining that platform compatibility. In my opionion this means also a plan and monitoring of continuous integration As the mailing lists are basically unused these days, feel free to create a discussion at https://discourse.osmocom.org/ about your plans for Darwin maintenance of osmocom CNI, or if you prefer we can also discuss it in a feature issue filed at https://osmocom.org/projects/cellular-infrastructure/issues/new
--
To view, visit https://gerrit.osmocom.org/c/osmo-iuh/+/43588?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: I6f803fcfb5dd81f0a0b2998b00622f6a19afc5da
Gerrit-Change-Number: 43588
Gerrit-PatchSet: 1
Gerrit-Owner: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-Attention: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Comment-Date: Wed, 09 Sep 2026 07:07:07 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: Andrei G.
laforge has posted comments on this change by Andrei G. ( https://gerrit.osmocom.org/c/libosmocore/+/43575?usp=email )
Change subject: core/socket: sockaddr_cmp: compare fields
......................................................................
Patch Set 3:
(1 comment)
Patchset:
PS3:
The general question is whether we suddenly [again] start to support anything beyond Linux. Many years ago we dropped support for FreeBSD, see the threads spawned by https://lists.osmocom.org/hyperkitty/list/openbsc@lists.osmocom.org/thread/… the same point, we stated we'd merge compatibiltiy pathes in this post eight years ago: https://lists.osmocom.org/hyperkitty/list/openbsc@lists.osmocom.org/message… - if there is someone committed to maintaining that platform compatibility. In my opionion this means also a plan and monitoring of continuous integration As the mailing lists are basically unused these days, feel free to create a discussion at https://discourse.osmocom.org/ about your plans for Darwin maintenance of osmocom CNI, or if you prefer we can also discuss it in a feature issue filed at https://osmocom.org/projects/cellular-infrastructure/issues/new
--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/43575?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I75fc62a92f546a906dbb1440984d62f962579255
Gerrit-Change-Number: 43575
Gerrit-PatchSet: 3
Gerrit-Owner: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: laforge <laforge(a)osmocom.org>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: Andrei G <andrei.gosman(a)gmail.com>
Gerrit-Comment-Date: Wed, 09 Sep 2026 07:05:22 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No