Projects
osmocom:nightly
osmo-bsc
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 397
View file
osmo-bsc.spec
Changed
@@ -17,14 +17,14 @@ %define _lto_cflags %{nil} Name: osmo-bsc -Requires: osmocom-nightly = 202307200026 -Version: 1.10.0.195.241e5.202307200026 +Requires: osmocom-nightly = 202307210026 +Version: 1.10.0.197.12146.202307210026 Release: 0 Summary: OsmoBSC: Osmocom's Base Station Controller for 2G CS mobile networks License: AGPL-3.0-or-later AND GPL-2.0-or-later Group: Hardware/Mobile URL: https://osmocom.org/projects/osmobsc -Source: osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz +Source: osmo-bsc_1.10.0.197.12146.202307210026.tar.xz Source1: rpmlintrc BuildRequires: automake >= 1.9 BuildRequires: libtool >= 2 @@ -49,7 +49,7 @@ OsmoBSC: Osmocom's Base Station Controller for 2G circuit-switched mobile networks. %package abisip-find -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: CLI utility to find ip.access compatible BTS License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities @@ -58,7 +58,7 @@ Command line utility to find ip.access compatible BTS. %package ipaccess-utils -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: Command line utilities for ip.access nanoBTS License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities @@ -69,7 +69,7 @@ and ipaccess-proxy. %package bs11-utils -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: Command line utilities for Siemens BS-11 BTS License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities @@ -80,7 +80,7 @@ public telephone network as frequency standard for the E1 line. %package meas-utils -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: Command line utilities for OsmoBSC's measurement reports License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities
View file
osmo-bsc_1.10.0.195.241e5.202307200026.dsc -> osmo-bsc_1.10.0.197.12146.202307210026.dsc
Changed
@@ -2,7 +2,7 @@ Source: osmo-bsc Binary: osmo-bsc, osmo-bsc-dbg, abisip-find, osmo-bsc-ipaccess-utils, osmo-bsc-bs11-utils, osmo-bsc-meas-utils, osmo-bsc-doc Architecture: any all -Version: 1.10.0.195.241e5.202307200026 +Version: 1.10.0.197.12146.202307210026 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/osmo-bsc Standards-Version: 3.9.8 @@ -18,8 +18,8 @@ osmo-bsc-ipaccess-utils deb net extra arch=any osmo-bsc-meas-utils deb net extra arch=any Checksums-Sha1: - 8a4fe5da60a1373514113cbc4a2c24b141a69ce7 602816 osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz + 5af88e3ec81d2d425365d774cd5e170eb64b1e7a 603100 osmo-bsc_1.10.0.197.12146.202307210026.tar.xz Checksums-Sha256: - 67a2a15b5a82faa3abcac08049dff2cb34d06b29ba1c5f08354550203aed8f18 602816 osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz + a87857567f58f7755d86e4f5e7b70cb1c8766754826fdbc7befabdd7cc42d9d3 603100 osmo-bsc_1.10.0.197.12146.202307210026.tar.xz Files: - 6bc7a4872959190392fecb82627665c9 602816 osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz + b1d671e65b391623af310eb484481f92 603100 osmo-bsc_1.10.0.197.12146.202307210026.tar.xz
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/.tarball-version -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -1.10.0.195-241e5.202307200026 +1.10.0.197-12146.202307210026
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/configure.ac -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/configure.ac
Changed
@@ -42,6 +42,24 @@ AM_CONDITIONAL(BUILD_IPA_UTILS, test "x$osmo_ac_ipa_utils" = "xyes") AC_SUBST(osmo_ac_ipa_utils) +# Enable/disable osmo-meas-udp2db +AC_ARG_ENABLE(meas-udp2db, AS_HELP_STRING(--enable-meas-udp2db, Build osmo-meas-udp2db: listen to meas_feed on UDP and write it to an sqlite3 database default=no), + osmo_ac_meas_udp2db="$enableval",osmo_ac_meas_udp2db="no") +AM_CONDITIONAL(BUILD_MEAS_UDP2DB, test "x$osmo_ac_meas_udp2db" = "xyes") +AC_SUBST(osmo_ac_meas_udp2db) + +# Enable/disable osmo-meas-pcap2db +AC_ARG_ENABLE(meas-pcap2db, AS_HELP_STRING(--enable-meas-pcap2db, Build osmo-meas-pcap2db: read PCAP file with meas_feed data and write it to an sqlite3 database default=no), + osmo_ac_meas_pcap2db="$enableval",osmo_ac_meas_pcap2db="no") +AM_CONDITIONAL(BUILD_MEAS_PCAP2DB, test "x$osmo_ac_meas_pcap2db" = "xyes") +AC_SUBST(osmo_ac_meas_pcap2db) + +# Enable/disable meas_vis +AC_ARG_ENABLE(meas-vis, AS_HELP_STRING(--enable-meas-vis, Build meas_vis: curses-visualization of measurements default=no), + osmo_ac_meas_vis="$enableval",osmo_ac_meas_vis="no") +AM_CONDITIONAL(BUILD_MEAS_VIS, test "x$osmo_ac_meas_vis" = "xyes") +AC_SUBST(osmo_ac_meas_vis) + dnl checks for libraries PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.8.0) PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.8.0) @@ -55,19 +73,15 @@ dnl checks for header files AC_HEADER_STDC -found_pcap=yes -AC_CHECK_HEADERS(pcap/pcap.h,,found_pcap=no) -AM_CONDITIONAL(HAVE_PCAP, test "$found_pcap" = yes) - -found_cdk=yes -AC_CHECK_HEADERS(cdk/cdk.h,,found_cdk=no) -AM_CONDITIONAL(HAVE_LIBCDK, test "$found_cdk" = yes) - -found_sqlite3=yes -PKG_CHECK_MODULES(SQLITE3, sqlite3, ,found_sqlite3=no) -AM_CONDITIONAL(HAVE_SQLITE3, test "$found_sqlite3" = yes) -AC_SUBST(found_sqlite3) - +if test "$osmo_ac_meas_pcap2db" = "yes" || test "$osmo_ac_meas_udp2db" = "yes"; then + PKG_CHECK_MODULES(SQLITE3, sqlite3) +fi +if test "$osmo_ac_meas_pcap2db" = "yes"; then + AC_CHECK_HEADERS(pcap/pcap.h, , AC_MSG_ERROR(Unable to find libpcap)) +fi +if test "$osmo_ac_meas_vis" = "yes"; then + AC_CHECK_HEADERS(cdk/cdk.h, , AC_MSG_ERROR(Unable to find libcdk)) +fi dnl Checks for typedefs, structures and compiler characteristics
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/contrib/jenkins.sh -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/contrib/jenkins.sh
Changed
@@ -60,7 +60,13 @@ osmo-build-dep.sh osmo-mgw # Additional configure options and depends -CONFIG="--enable-external-tests --enable-werror" +CONFIG=" + --enable-external-tests + --enable-meas-pcap2db + --enable-meas-udp2db + --enable-meas-vis + --enable-werror +" if "$WITH_MANUALS" = "1" ; then CONFIG="$CONFIG --enable-manuals" fi
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/contrib/osmo-bsc.spec.in -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/contrib/osmo-bsc.spec.in
Changed
@@ -17,7 +17,7 @@ %define _lto_cflags %{nil} Name: osmo-bsc -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Version: @VERSION@ Release: 0 Summary: OsmoBSC: Osmocom's Base Station Controller for 2G CS mobile networks @@ -48,7 +48,7 @@ OsmoBSC: Osmocom's Base Station Controller for 2G circuit-switched mobile networks. %package abisip-find -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: CLI utility to find ip.access compatible BTS License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities @@ -57,7 +57,7 @@ Command line utility to find ip.access compatible BTS. %package ipaccess-utils -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: Command line utilities for ip.access nanoBTS License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities @@ -68,7 +68,7 @@ and ipaccess-proxy. %package bs11-utils -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: Command line utilities for Siemens BS-11 BTS License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities @@ -79,7 +79,7 @@ public telephone network as frequency standard for the E1 line. %package meas-utils -Requires: osmocom-nightly = 202307200026 +Requires: osmocom-nightly = 202307210026 Summary: Command line utilities for OsmoBSC's measurement reports License: GPL-2.0-or-later Group: Productivity/Telephony/Utilities
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/debian/changelog -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -osmo-bsc (1.10.0.195.241e5.202307200026) unstable; urgency=medium +osmo-bsc (1.10.0.197.12146.202307210026) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 20 Jul 2023 00:26:29 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Fri, 21 Jul 2023 00:26:30 +0000 osmo-bsc (1.10.0) unstable; urgency=medium
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/debian/control -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/debian/control
Changed
@@ -26,7 +26,7 @@ Package: osmo-bsc Architecture: any Multi-Arch: foreign -Depends: osmocom-nightly (= 202307200026), ${misc:Depends}, ${shlibs:Depends} +Depends: osmocom-nightly (= 202307210026), ${misc:Depends}, ${shlibs:Depends} Recommends: osmo-mgw Description: OsmoBSC: Osmocom's Base Station Controller for 2G circuit-switched mobile networks @@ -34,19 +34,19 @@ Section: debug Architecture: any Multi-Arch: same -Depends: osmocom-nightly (= 202307200026), osmo-bsc (= ${binary:Version}), ${misc:Depends} +Depends: osmocom-nightly (= 202307210026), osmo-bsc (= ${binary:Version}), ${misc:Depends} Description: OsmoBSC: Osmocom's Base Station Controller for 2G circuit-switched mobile networks Package: abisip-find Architecture: any Multi-Arch: foreign -Depends: osmocom-nightly (= 202307200026), ${misc:Depends}, ${shlibs:Depends} +Depends: osmocom-nightly (= 202307210026), ${misc:Depends}, ${shlibs:Depends} Description: Command line utility to find ip.access compatible BTS Package: osmo-bsc-ipaccess-utils Architecture: any Multi-Arch: foreign -Depends: osmocom-nightly (= 202307200026), ${misc:Depends}, ${shlibs:Depends} +Depends: osmocom-nightly (= 202307210026), ${misc:Depends}, ${shlibs:Depends} Description: Command line utilities for ip.access nanoBTS This package contains utilities that are specific for nanoBTS when being used together with OpenBSC. It contains mainly two tools: ipaccess-config and ipaccess-proxy. @@ -54,7 +54,7 @@ Package: osmo-bsc-bs11-utils Architecture: any Multi-Arch: foreign -Depends: osmocom-nightly (= 202307200026), ${misc:Depends}, ${shlibs:Depends} +Depends: osmocom-nightly (= 202307210026), ${misc:Depends}, ${shlibs:Depends} Description: Command line utilities for Siemens BS-11 BTS There is a tool in this package for configuring the Siemens BS-11 BTS. Additionally, it contains one tool for making use of an ISDN-card and the @@ -63,14 +63,14 @@ Package: osmo-bsc-meas-utils Architecture: any Multi-Arch: foreign -Depends: osmocom-nightly (= 202307200026), ${misc:Depends}, ${shlibs:Depends} +Depends: osmocom-nightly (= 202307210026), ${misc:Depends}, ${shlibs:Depends} Description: Command line utilities to manage measurement reports. Package: osmo-bsc-doc Architecture: all Section: doc Priority: optional -Depends: osmocom-nightly (= 202307200026), ${misc:Depends} +Depends: osmocom-nightly (= 202307210026), ${misc:Depends} Description: ${misc:Package} PDF documentation Various manuals: user manual, VTY reference manual and/or protocol/interface manuals.
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/debian/rules -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/debian/rules
Changed
@@ -2,7 +2,12 @@ %: dh $@ --with autoreconf -CONFIGURE_FLAGS += --with-systemdsystemunitdir=/lib/systemd/system --enable-manuals +CONFIGURE_FLAGS += \ + --enable-manuals \ + --enable-meas-vis \ + --with-systemdsystemunitdir=/lib/systemd/system \ + $(NULL) + override_dh_auto_configure: dh_auto_configure -- $(CONFIGURE_FLAGS)
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/src/osmo-bsc/lchan_select.c -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/src/osmo-bsc/lchan_select.c
Changed
@@ -178,14 +178,14 @@ return GSM_LCHAN_NONE; } case GSM48_CMODE_SPEECH_EFR: - /* EFR works over FR channels only */ + case GSM48_CMODE_DATA_14k5: + case GSM48_CMODE_DATA_12k0: + /* these rates work over full-rate channels only */ if (chan_rate != CH_RATE_FULL) return GSM_LCHAN_NONE; /* fall through */ case GSM48_CMODE_SPEECH_V1: case GSM48_CMODE_SPEECH_AMR: - case GSM48_CMODE_DATA_14k5: - case GSM48_CMODE_DATA_12k0: case GSM48_CMODE_DATA_6k0: case GSM48_CMODE_DATA_3k6: switch (chan_rate) {
View file
osmo-bsc_1.10.0.195.241e5.202307200026.tar.xz/src/utils/Makefile.am -> osmo-bsc_1.10.0.197.12146.202307210026.tar.xz/src/utils/Makefile.am
Changed
@@ -28,17 +28,17 @@ isdnsync \ meas_json \ $(NULL) -if HAVE_SQLITE3 +if BUILD_MEAS_UDP2DB bin_PROGRAMS += \ osmo-meas-udp2db \ $(NULL) -if HAVE_PCAP +endif +if BUILD_MEAS_PCAP2DB bin_PROGRAMS += \ osmo-meas-pcap2db \ $(NULL) endif -endif -if HAVE_LIBCDK +if BUILD_MEAS_VIS bin_PROGRAMS += \ meas_vis \ $(NULL)
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
.