laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-e1d/+/30024 )
Change subject: jenkins.sh: Support for building + publishing the manual
......................................................................
Patch Set 4:
(1 comment)
Patchset:
PS4:
Hi osmith, I've invested already something like >= 2 hours in trying to hunt this down, but I cannot find the cause why the last build is not building (or not finding) the user manual pdf.
It seems to build fine if I build it locally using contrib/jenkins.sh.
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/30024
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: Ic399662e6ac5e5e7f999e6e7127df9a9580a0627
Gerrit-Change-Number: 30024
Gerrit-PatchSet: 4
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: osmith <osmith(a)sysmocom.de>
Gerrit-Comment-Date: Sun, 06 Nov 2022 11:03:14 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-e1d/+/30021 )
Change subject: avoid segfault in 'show interface' of absent icE1usb
......................................................................
avoid segfault in 'show interface' of absent icE1usb
Don't segfault when processing a "show interfaces" for an interface
that is configured via VTY but not actually attached/found in the
system:
usb.c:693:29: runtime error: member access within null pointer of type 'struct e1_usb_intf_data'
Depends: https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/30019
Depends: https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/30020
Change-Id: I2ce990bb57f6ae4edb3a99a4b7bf26a49f362410
---
M src/usb.c
1 file changed, 6 insertions(+), 0 deletions(-)
Approvals:
Jenkins Builder: Verified
msuraev: Looks good to me, but someone else must approve
laforge: Looks good to me, approved
diff --git a/src/usb.c b/src/usb.c
index fc461c4..ff624ea 100644
--- a/src/usb.c
+++ b/src/usb.c
@@ -694,6 +694,12 @@
OSMO_ASSERT(intf->drv == E1_DRIVER_USB);
+ if (!id) {
+ /* This can happen for statically configured devices (config/vty) which are not
+ * currently present */
+ return snprintf(buf, len, "unknown");
+ }
+
return snprintf(buf, len, "mode=%s, fix=%s, state=%s antenna=%s, tune=%u/%u, freq_est=%u",
get_value_string(ice1usb_gpsdo_mode_str, last_st->mode),
last_st->valid_fix ? "TRUE" : "FALSE",
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/30021
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: I2ce990bb57f6ae4edb3a99a4b7bf26a49f362410
Gerrit-Change-Number: 30021
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: msuraev <msuraev(a)sysmocom.de>
Gerrit-MessageType: merged
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-e1d/+/30037 )
Change subject: Add support of RPM package building via osmo-e1d.spec.in
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
Hi osmith, please take over here. I really don't see why this is not working, I should have copied things 1:1 from osmo-hlr.git but somehow the source tarball for osmo-e1d is not generated before trying to execute the spec file?
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/30037
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: If9d3d4b7b06aef156fd895415db3b30bdecd74b4
Gerrit-Change-Number: 30037
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: osmith <osmith(a)sysmocom.de>
Gerrit-Comment-Date: Sun, 06 Nov 2022 11:01:13 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Attention is currently required from: laforge.
msuraev has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-e1d/+/30021 )
Change subject: avoid segfault in 'show interface' of absent icE1usb
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
> It's odd that Coverity hadn't found it.
just a note
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/30021
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: I2ce990bb57f6ae4edb3a99a4b7bf26a49f362410
Gerrit-Change-Number: 30021
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: msuraev <msuraev(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Comment-Date: Sun, 06 Nov 2022 10:47:49 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: msuraev <msuraev(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: laforge.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-e1d/+/30022
to look at the new patch set (#3).
Change subject: Initial user manual for osmo-e1d
......................................................................
Initial user manual for osmo-e1d
Still quite incomplete, but significantly better than nothing.
Change-Id: I42f8da1990092b5a3d8c63fde33e49978ad83281
---
M configure.ac
M doc/Makefile.am
A doc/manuals/Makefile.am
A doc/manuals/chapters/client-interface.adoc
A doc/manuals/chapters/drivers.adoc
A doc/manuals/chapters/overview.adoc
A doc/manuals/chapters/running.adoc
A doc/manuals/chapters/tdmoip.adoc
A doc/manuals/osmoe1d-usermanual-docinfo.xml
A doc/manuals/osmoe1d-usermanual.adoc
10 files changed, 488 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-e1d refs/changes/22/30022/3
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/30022
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: I42f8da1990092b5a3d8c63fde33e49978ad83281
Gerrit-Change-Number: 30022
Gerrit-PatchSet: 3
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newpatchset
Attention is currently required from: laforge.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-e1d/+/30024
to look at the new patch set (#3).
Change subject: jenkins.sh: Support for building + publishing the manual
......................................................................
jenkins.sh: Support for building + publishing the manual
Change-Id: Ic399662e6ac5e5e7f999e6e7127df9a9580a0627
---
M Makefile.am
M contrib/jenkins.sh
2 files changed, 9 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-e1d refs/changes/24/30024/3
--
To view, visit https://gerrit.osmocom.org/c/osmo-e1d/+/30024
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-e1d
Gerrit-Branch: master
Gerrit-Change-Id: Ic399662e6ac5e5e7f999e6e7127df9a9580a0627
Gerrit-Change-Number: 30024
Gerrit-PatchSet: 3
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: newpatchset