Projects
osmocom:nightly
open5gs
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 155
View file
open5gs_2.5.5.33.f85ff.202211270002.dsc -> open5gs_2.5.5.35.0205.202211280943.dsc
Changed
@@ -2,7 +2,7 @@ Source: open5gs Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg Architecture: any -Version: 2.5.5.33.f85ff.202211270002 +Version: 2.5.5.35.0205.202211280943 Maintainer: Harald Welte <laforge@gnumonks.org> Uploaders: Sukchan Lee <acetcom@gmail.com> Homepage: https://open5gs.org @@ -31,8 +31,8 @@ open5gs-udr deb net optional arch=any open5gs-upf deb net optional arch=any Checksums-Sha1: - 56a4ec38804975d99a77a0bb689cd6c590c55ae4 13147100 open5gs_2.5.5.33.f85ff.202211270002.tar.xz + 719ba71266ede2612a311036f1fae776ebc09148 13147348 open5gs_2.5.5.35.0205.202211280943.tar.xz Checksums-Sha256: - 8aa874b1255e4fac09b8e9ace04458d6e6443e8cb1531b0f1abd1899187ab4be 13147100 open5gs_2.5.5.33.f85ff.202211270002.tar.xz + 7f948b876cb9a515daa3e477d7ea01402186eb63f271a7c7401c0e18f70e0abe 13147348 open5gs_2.5.5.35.0205.202211280943.tar.xz Files: - c9ce40fd16a2e972d51c3aaac5e7fcd7 13147100 open5gs_2.5.5.33.f85ff.202211270002.tar.xz + 52e87773e40ac327a243d70cd40a39a5 13147348 open5gs_2.5.5.35.0205.202211280943.tar.xz
View file
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/.tarball-version -> open5gs_2.5.5.35.0205.202211280943.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.5.5.33-f85ff.202211270002 +2.5.5.35-0205.202211280943
View file
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/debian/changelog -> open5gs_2.5.5.35.0205.202211280943.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.5.5.33.f85ff.202211270002) unstable; urgency=medium +open5gs (2.5.5.35.0205.202211280943) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Sun, 27 Nov 2022 00:04:32 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Mon, 28 Nov 2022 09:47:30 +0000 open5gs (2.5.6) unstable; urgency=medium
View file
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/docs/assets/webui/install -> open5gs_2.5.5.35.0205.202211280943.tar.xz/docs/assets/webui/install
Changed
@@ -96,6 +96,11 @@ exit 1 fi +if ! -x /usr/bin/npm ; then + print_status "First you need to install NPM packages." + exit 1 +fi + PRE_INSTALL_PKGS="" # Check that HTTPS transport is available to APT @@ -270,14 +275,22 @@ EOF" exec_cmd_nobail "systemctl daemon-reload" -exec_cmd "systemctl enable open5gs-webui" -exec_cmd "deb-systemd-invoke start open5gs-webui" +exec_cmd_nobail "systemctl enable open5gs-webui" +exec_cmd_nobail "deb-systemd-invoke start open5gs-webui" } postinstall() { print_status "Default Administrator Account Username:admin, Password:1423..." -exec_cmd "mongosh open5gs ./${PACKAGE}-${VERSION}/docs/assets/webui/mongo-init.js" +if -x /usr/bin/mongo ; +then + exec_cmd "mongo open5gs ./${PACKAGE}-${VERSION}/docs/assets/webui/mongo-init.js" +elif -x /usr/bin/mongosh ; +then + exec_cmd "mongosh open5gs ./${PACKAGE}-${VERSION}/docs/assets/webui/mongo-init.js" +else + echo "Failed to execute mongo-init.js" +fi exec_cmd "rm -rf ./${PACKAGE}-${VERSION}" }
View file
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/src/amf/gmm-handler.c -> open5gs_2.5.5.35.0205.202211280943.tar.xz/src/amf/gmm-handler.c
Changed
@@ -664,9 +664,22 @@ amf_ue->nas.ue.tsc, amf_ue->nas.amf.tsc, amf_ue->nas.ue.ksi, amf_ue->nas.amf.ksi); - if (deregistration_request->de_registration_type.switch_off) + if (deregistration_request->de_registration_type.switch_off) { ogs_debug(" Switch-Off"); + /* + * Issue #1917 + * + * When the UE sends a De-registration Request with Switch-Off, + * AMF should remove the the stored UE Radio Capability. + * + * Otherwise, the Radio Capability will not match + * because the gNB will not query the Radio Capability + * when the UE changes USIM. + */ + OGS_ASN_CLEAR_DATA(&amf_ue->ueRadioCapability); + } + ogs_info("%s SUCI", amf_ue->suci); amf_sbi_send_release_all_sessions(
View file
open5gs_2.5.5.33.f85ff.202211270002.tar.xz/src/mme/emm-handler.c -> open5gs_2.5.5.35.0205.202211280943.tar.xz/src/mme/emm-handler.c
Changed
@@ -423,9 +423,22 @@ default: /* all other values */ break; } - if (detach_request->detach_type.switch_off) + if (detach_request->detach_type.switch_off) { ogs_debug(" Switch-Off"); + /* + * Issue #1917 + * + * When the UE sends a Detach Request with Switch-Off, + * MME should remove the the stored UE Radio Capability. + * + * Otherwise, the Radio Capability will not match + * because the eNB will not query the Radio Capability + * when the UE changes USIM. + */ + OGS_ASN_CLEAR_DATA(&mme_ue->ueRadioCapability); + } + return OGS_OK; }
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.