Change in osmo-trx[master]: osmo-trx-ipc

2020-08-15 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19641 )

Change subject: osmo-trx-ipc
..


Patch Set 5:

thanks for squashing. In case it was forgotten/missed: The debian packaging for 
osmo-trx-ipc appears to still be missing.


--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19641
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ice63d3499026293ade8aad675ff7a883bcdd5756
Gerrit-Change-Number: 19641
Gerrit-PatchSet: 5
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: fixeria 
Gerrit-CC: laforge 
Gerrit-Comment-Date: Sat, 15 Aug 2020 07:42:23 +
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


Change in osmo-gsm-tester[master]: ttcn3/lib/testlib.py: increase test suite execution timeout

2020-08-15 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-tester/+/19657 )

Change subject: ttcn3/lib/testlib.py: increase test suite execution timeout
..


Patch Set 2: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-tester/+/19657
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Change-Id: Ieceab920a94cbf92ff6c83a59d572f22e8ae933f
Gerrit-Change-Number: 19657
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: pespin 
Gerrit-Comment-Date: Sat, 15 Aug 2020 07:44:02 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmo-mgw[master]: mgcp_e1: use return value of e1inp_line_update()

2020-08-15 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-mgw/+/19638 )

Change subject: mgcp_e1: use return value of e1inp_line_update()
..

mgcp_e1: use return value of e1inp_line_update()

The function e1inp_line_update() is called without assigning its return
code to the rc variable.

Change-Id: Ia72ea2dca210b038766151d547f66b7b7139a2c4
Fixes: CID#212160
---
M src/libosmo-mgcp/mgcp_e1.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  fixeria: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/libosmo-mgcp/mgcp_e1.c b/src/libosmo-mgcp/mgcp_e1.c
index 8444b11..b3db0b7 100644
--- a/src/libosmo-mgcp/mgcp_e1.c
+++ b/src/libosmo-mgcp/mgcp_e1.c
@@ -402,7 +402,7 @@
rc = e1inp_ts_config_raw(&e1_line->ts[ts_nr - 1], e1_line, e1_recv_cb);
if (rc < 0)
return -EINVAL;
-   e1inp_line_update(e1_line);
+   rc = e1inp_line_update(e1_line);
if (rc < 0)
return -EINVAL;


--
To view, visit https://gerrit.osmocom.org/c/osmo-mgw/+/19638
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Change-Id: Ia72ea2dca210b038766151d547f66b7b7139a2c4
Gerrit-Change-Number: 19638
Gerrit-PatchSet: 2
Gerrit-Owner: dexter 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in osmo-gsm-tester[master]: ttcn3/lib/testlib.py: increase test suite execution timeout

2020-08-15 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-gsm-tester/+/19657 )

Change subject: ttcn3/lib/testlib.py: increase test suite execution timeout
..

ttcn3/lib/testlib.py: increase test suite execution timeout

Since I8eb28584e90ad012cbf7f3175ee3a8e775c8d523, the test suite
is supposed to run both BTS_Tests_{SMSCB,LAPDm}.control among with
BTS_Tests.control.  Apparently this requires more time than 3600
seconds, so everything is broken since build #2652 in Jenkins.

Change-Id: Ieceab920a94cbf92ff6c83a59d572f22e8ae933f
---
M sysmocom/ttcn3/suites/ttcn3_bts_tests/lib/testlib.py
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  laforge: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/sysmocom/ttcn3/suites/ttcn3_bts_tests/lib/testlib.py 
b/sysmocom/ttcn3/suites/ttcn3_bts_tests/lib/testlib.py
index c3b3f35..55b6b41 100644
--- a/sysmocom/ttcn3/suites/ttcn3_bts_tests/lib/testlib.py
+++ b/sysmocom/ttcn3/suites/ttcn3_bts_tests/lib/testlib.py
@@ -36,7 +36,7 @@
 try:
 proc.launch()
 print('TTCN3 test suite launched, waiting until it finishes')
-proc.wait(timeout=3600)
+proc.wait(timeout=5400) # 1.5h
 except Exception as e:
 proc.terminate()
 raise e

--
To view, visit https://gerrit.osmocom.org/c/osmo-gsm-tester/+/19657
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Change-Id: Ieceab920a94cbf92ff6c83a59d572f22e8ae933f
Gerrit-Change-Number: 19657
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: merged


Change in osmo-ci[master]: ansible: osmocom-jenkins-slave: osmocom_build_deps: install osmo-pyth...

2020-08-15 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/19661 )

Change subject: ansible: osmocom-jenkins-slave: osmocom_build_deps: install 
osmo-python-tests for py2 and py3
..

ansible: osmocom-jenkins-slave: osmocom_build_deps: install osmo-python-tests 
for py2 and py3

The osmo-python-tests will be used to test vty commands.
The old python2 package are only required to test old images because
the current master is only supporting python3.
Installing both doesn't conflict because the python site-packages are
different for the two version.

Change-Id: Ica279e83b763389ababb526336ebd95d45beee7a
---
M ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
1 file changed, 24 insertions(+), 0 deletions(-)

Approvals:
  lynxis lazus: Verified
  laforge: Looks good to me, approved



diff --git a/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml 
b/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
index 90c86b0..e2196b6 100644
--- a/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
+++ b/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
@@ -169,3 +169,27 @@
 - libbson-dev
 - libyaml-dev
   when: ansible_distribution == 'Debian' and ansible_distribution_version|int 
>= 10
+
+- name: download osmo-python-tests for py2
+  git:
+repo: "https://gerrit.osmocom.org/python/osmo-python-tests";
+dest: "/home/{{ jenkins_user }}/osmo-python-tests2"
+version: "fb4b813d4df62b7b2445bdced961eb1847267eed"
+
+- name: install osmo-python-tests for py2
+  shell:
+cmd: "python2 setup.py clean build install && date > installed"
+chdir: "/home/{{ jenkins_user }}/osmo-python-tests2"
+creates: "/home/{{ jenkins_user }}/osmo-python-tests2/installed"
+
+- name: download osmo-python-tests for py3
+  git:
+repo: "https://gerrit.osmocom.org/python/osmo-python-tests";
+dest: "/home/{{ jenkins_user }}/osmo-python-tests3"
+version: "be7fcf5f28a5d0f9ad35510f09b5979268d76598"
+
+- name: install osmo-python-tests for py3
+  shell:
+cmd: "python3 setup.py clean build install && date > installed"
+chdir: "/home/{{ jenkins_user }}/osmo-python-tests3"
+creates: "/home/{{ jenkins_user }}/osmo-python-tests3/installed"

--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/19661
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ica279e83b763389ababb526336ebd95d45beee7a
Gerrit-Change-Number: 19661
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: lynxis lazus 
Gerrit-MessageType: merged


Change in osmo-ci[master]: ansible: osmocom-jenkins-slave: osmocom_build_deps: install osmo-pyth...

2020-08-15 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/19661 )

Change subject: ansible: osmocom-jenkins-slave: osmocom_build_deps: install 
osmo-python-tests for py2 and py3
..


Patch Set 1: Code-Review+2

there might have been a more elegant version with variable substitution than a 
copy+paste, but well, it works ;)


--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/19661
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ica279e83b763389ababb526336ebd95d45beee7a
Gerrit-Change-Number: 19661
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: lynxis lazus 
Gerrit-Comment-Date: Sat, 15 Aug 2020 07:44:55 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in libosmocore[master]: vty/command: cosmetic: simplify conditions in in config_list_cmd

2020-08-15 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19573 )

Change subject: vty/command: cosmetic: simplify conditions in in config_list_cmd
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19573
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Id1c082d102b7156dafb9c5d9197dcdc4d26bff63
Gerrit-Change-Number: 19573
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sat, 15 Aug 2020 07:46:45 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in libosmocore[master]: vty/command: cosmetic: simplify conditions in in config_list_cmd

2020-08-15 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19573 )

Change subject: vty/command: cosmetic: simplify conditions in in config_list_cmd
..

vty/command: cosmetic: simplify conditions in in config_list_cmd

Change-Id: Id1c082d102b7156dafb9c5d9197dcdc4d26bff63
---
M src/vty/command.c
1 file changed, 8 insertions(+), 4 deletions(-)

Approvals:
  laforge: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/vty/command.c b/src/vty/command.c
index 278ceb5..75bc00d 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -2858,10 +2858,14 @@
struct cmd_node *cnode = vector_slot(cmdvec, vty->node);
struct cmd_element *cmd;

-   for (i = 0; i < vector_active(cnode->cmd_vector); i++)
-   if ((cmd = vector_slot(cnode->cmd_vector, i)) != NULL
-   && !(cmd->attr & (CMD_ATTR_DEPRECATED | CMD_ATTR_HIDDEN)))
-   vty_out(vty, "  %s%s", cmd->string, VTY_NEWLINE);
+   for (i = 0; i < vector_active(cnode->cmd_vector); i++) {
+   if ((cmd = vector_slot(cnode->cmd_vector, i)) == NULL)
+   continue;
+   if (cmd->attr & (CMD_ATTR_DEPRECATED | CMD_ATTR_HIDDEN))
+   continue;
+   vty_out(vty, "  %s%s", cmd->string, VTY_NEWLINE);
+   }
+
return CMD_SUCCESS;
 }


--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19573
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Id1c082d102b7156dafb9c5d9197dcdc4d26bff63
Gerrit-Change-Number: 19573
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in libosmocore[master]: vty/command: cosmetic: drop redundant line break

2020-08-15 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19575 )

Change subject: vty/command: cosmetic: drop redundant line break
..

vty/command: cosmetic: drop redundant line break

Change-Id: Ia7c85b7862fbb191b5746fc333cf0c34bc79a533
---
M include/osmocom/vty/command.h
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  laforge: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/include/osmocom/vty/command.h b/include/osmocom/vty/command.h
index e3692dc..da8d202 100644
--- a/include/osmocom/vty/command.h
+++ b/include/osmocom/vty/command.h
@@ -238,7 +238,7 @@
   DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_HIDDEN)

 #define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
-  DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED) \
+  DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)

 /* DEFUN_NOSH for commands that vtysh should ignore */
 #define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19575
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ia7c85b7862fbb191b5746fc333cf0c34bc79a533
Gerrit-Change-Number: 19575
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in libosmocore[master]: vty/command: cosmetic: fix formatting of config_help_cmd

2020-08-15 Thread laforge
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19574 )

Change subject: vty/command: cosmetic: fix formatting of config_help_cmd
..


Patch Set 1: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19574
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I8f784d0cf65fa7813088e3ff76d7213b99b975d0
Gerrit-Change-Number: 19574
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sat, 15 Aug 2020 07:46:48 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in libosmocore[master]: vty/command: cosmetic: fix formatting of config_help_cmd

2020-08-15 Thread laforge
laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19574 )

Change subject: vty/command: cosmetic: fix formatting of config_help_cmd
..

vty/command: cosmetic: fix formatting of config_help_cmd

Change-Id: I8f784d0cf65fa7813088e3ff76d7213b99b975d0
---
M src/vty/command.c
1 file changed, 15 insertions(+), 14 deletions(-)

Approvals:
  laforge: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/vty/command.c b/src/vty/command.c
index 75bc00d..d8fe463 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -2834,20 +2834,21 @@
 gDEFUN(config_help,
   config_help_cmd, "help", "Description of the interactive help system\n")
 {
-   vty_out(vty,
-   "This VTY provides advanced help features.  When you need 
help,%s\
-anytime at the command line please press '?'.%s\
-%s\
-If nothing matches, the help list will be empty and you must backup%s\
- until entering a '?' shows the available options.%s\
-Two styles of help are provided:%s\
-1. Full help is available when you are ready to enter a%s\
-command argument (e.g. 'show ?') and describes each possible%s\
-argument.%s\
-2. Partial help is provided when an abbreviated argument is entered%s\
-   and you want to know what arguments match the input%s\
-   (e.g. 'show me?'.)%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
-   VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, 
VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
+   vty_out(vty, "This VTY provides advanced help features.  When you need 
help,%s"
+"anytime at the command line please press '?'.%s%s"
+"If nothing matches, the help list will be empty and you 
must backup%s"
+" until entering a '?' shows the available options.%s"
+"Two styles of help are provided:%s"
+"1. Full help is available when you are ready to enter a%s"
+"command argument (e.g. 'show ?') and describes each 
possible%s"
+"argument.%s"
+"2. Partial help is provided when an abbreviated argument 
is entered%s"
+"   and you want to know what arguments match the input%s"
+"   (e.g. 'show me?'.)%s%s",
+VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
+VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
+VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
+VTY_NEWLINE);
return CMD_SUCCESS;
 }


--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19574
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I8f784d0cf65fa7813088e3ff76d7213b99b975d0
Gerrit-Change-Number: 19574
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: merged


Change in osmo-ci[master]: ansible: osmocom-jenkins-slave: install SRS packages only on debian >= 9

2020-08-15 Thread lynxis lazus
lynxis lazus has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-ci/+/19662 )


Change subject: ansible: osmocom-jenkins-slave: install SRS packages only on 
debian >= 9
..

ansible: osmocom-jenkins-slave: install SRS packages only on debian >= 9

Before debian 9 those packages aren't available. e.g. libczmq-dev or 
libsoapysdr-dev

Change-Id: I019ec01dc7e0a53fa4ce9e8579fbafb3916f559b
---
M ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
1 file changed, 1 insertion(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/62/19662/1

diff --git a/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml 
b/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
index e2196b6..54dcdc7 100644
--- a/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
+++ b/ansible/roles/osmocom-jenkins-slave/tasks/osmocom_build_deps.yml
@@ -154,6 +154,7 @@
 - libuhd-dev
 - libczmq-dev
 - libsoapysdr-dev
+  when: ansible_distribution == 'Debian' and ansible_distribution_version|int 
>= 9

 - name: install open5gs build dependencies
   apt:

--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/19662
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I019ec01dc7e0a53fa4ce9e8579fbafb3916f559b
Gerrit-Change-Number: 19662
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus 
Gerrit-MessageType: newchange


Change in docker-playground[master]: debian-stretch-jenkins: install osmo-python-tests for python2

2020-08-15 Thread lynxis lazus
lynxis lazus has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/docker-playground/+/19663 )


Change subject: debian-stretch-jenkins: install osmo-python-tests for python2
..

debian-stretch-jenkins: install osmo-python-tests for python2

osmo-python-tests for python2 is being used when building
old releases.

Change-Id: I63b3e92e745a664d5d0168c718daddae83c20df5
---
M debian-stretch-jenkins/Dockerfile
1 file changed, 17 insertions(+), 3 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/docker-playground 
refs/changes/63/19663/1

diff --git a/debian-stretch-jenkins/Dockerfile 
b/debian-stretch-jenkins/Dockerfile
index 158f7d7..e73b7ae 100644
--- a/debian-stretch-jenkins/Dockerfile
+++ b/debian-stretch-jenkins/Dockerfile
@@ -100,6 +100,10 @@
python3-setuptools \
python3-usb \
python3-yaml \
+   python2.7 \
+   python-pip \
+   python-setuptools \
+   python-yaml \
rsync \
sdcc \
sqlite3 \
@@ -127,9 +131,19 @@
 RUN mkdir /build
 RUN chown build:build /build

-# Install osmo-python-tests
-ADD http://git.osmocom.org/python/osmo-python-tests/patch /tmp/commit
-RUN git clone git://git.osmocom.org/python/osmo-python-tests && cd 
osmo-python-tests && ./contrib/jenkins.sh
+# Install osmo-python-tests for python2 (when building old tags again new 
releases)
+ARG OSMO_PYTHON2_TESTS_COMMIT=fb4b813d4df62b7b2445bdced961eb1847267eed
+ADD 
http://git.osmocom.org/python/osmo-python-tests/patch/?id=$OSMO_PYTHON2_TESTS_COMMIT
 /tmp/osmo-python-tests2-commit
+RUN git clone https://git.osmocom.org/python/osmo-python-tests 
osmo-python-tests2 && \
+   cd osmo-python-tests2 && \
+   git checkout $OSMO_PYTHON2_TESTS_COMMIT && \
+   python2 setup.py clean build install
+
+# Install osmo-python-tests for python3
+ADD http://git.osmocom.org/python/osmo-python-tests/patch 
/tmp/osmo-python-tests3-commit
+RUN git clone https://git.osmocom.org/python/osmo-python-tests 
osmo-python-tests3 && \
+   cd osmo-python-tests3 && \
+   python3 setup.py clean build install

 # Set a UTF-8 locale
 RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \

--
To view, visit https://gerrit.osmocom.org/c/docker-playground/+/19663
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: docker-playground
Gerrit-Branch: master
Gerrit-Change-Id: I63b3e92e745a664d5d0168c718daddae83c20df5
Gerrit-Change-Number: 19663
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus 
Gerrit-MessageType: newchange


Change in osmo-trx[master]: transceiver: optimize code if optimizations are enabled

2020-08-15 Thread fixeria
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19650 )

Change subject: transceiver: optimize code if optimizations are enabled
..


Patch Set 5: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19650
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Iebd9e91b3c7f37f2dc646d3017c45139977e4d15
Gerrit-Change-Number: 19650
Gerrit-PatchSet: 5
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sat, 15 Aug 2020 15:21:13 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmo-trx[master]: devices: reset internal smart sample buffers upon stop

2020-08-15 Thread fixeria
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19646 )

Change subject: devices: reset internal smart sample buffers upon stop
..


Patch Set 5: Code-Review+1

Should the same be done for lms and usrp1?


--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19646
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Idb4b8f03eb5ffdfd6d3fdbc137b20e3ddc4cfa65
Gerrit-Change-Number: 19646
Gerrit-PatchSet: 5
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sat, 15 Aug 2020 15:24:18 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmo-trx[master]: osmo-trx-ipc

2020-08-15 Thread Hoernchen
Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmo-trx/+/19641

to look at the new patch set (#6).

Change subject: osmo-trx-ipc
..

osmo-trx-ipc

This adds a IPC backend that uses shared memory interface
to communicate with (proprietary) devices.

Requires config file option
dev-args ipc_msock=/path/to/socket
to specify the master socket the ipc backend should connect to.

If UHD is avaialble the ipc-driver-test tool can be used to test the
backend with a uhd device, this was so far only tested with a b2xx.

Change-Id: Ice63d3499026293ade8aad675ff7a883bcdd5756
---
M .gitignore
M Transceiver52M/Makefile.am
M Transceiver52M/device/Makefile.am
A Transceiver52M/device/ipc/IPCDevice.cpp
A Transceiver52M/device/ipc/IPCDevice.h
A Transceiver52M/device/ipc/Makefile.am
A Transceiver52M/device/ipc/ipc-driver-test.c
A Transceiver52M/device/ipc/ipc-driver-test.h
A Transceiver52M/device/ipc/ipc_chan.c
A Transceiver52M/device/ipc/ipc_chan.h
A Transceiver52M/device/ipc/ipc_shm.c
A Transceiver52M/device/ipc/ipc_shm.h
A Transceiver52M/device/ipc/ipc_sock.c
A Transceiver52M/device/ipc/ipc_sock.h
A Transceiver52M/device/ipc/shm.c
A Transceiver52M/device/ipc/shm.h
A Transceiver52M/device/ipc/uhdwrap.cpp
A Transceiver52M/device/ipc/uhdwrap.h
M Transceiver52M/device/uhd/UHDDevice.cpp
M Transceiver52M/device/uhd/UHDDevice.h
M configure.ac
M contrib/jenkins.sh
M contrib/osmo-trx.spec.in
M contrib/systemd/Makefile.am
A contrib/systemd/osmo-trx-ipc.service
M debian/control
A debian/osmo-trx-ipc.install
M debian/rules
M doc/examples/Makefile.am
A doc/examples/osmo-trx-ipc/osmo-trx-ipc.cfg
30 files changed, 3,815 insertions(+), 10 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/41/19641/6
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19641
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ice63d3499026293ade8aad675ff7a883bcdd5756
Gerrit-Change-Number: 19641
Gerrit-PatchSet: 6
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: fixeria 
Gerrit-CC: laforge 
Gerrit-MessageType: newpatchset


Change in osmo-trx[master]: osmo-trx-ipc

2020-08-15 Thread Hoernchen
Hoernchen has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19664 )

Change subject: osmo-trx-ipc
..


Patch Set 1:

yay.


--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19664
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Iefae70cc079a0174f48309f9ef25157c530e5c32
Gerrit-Change-Number: 19664
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sat, 15 Aug 2020 22:47:38 +
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


Change in osmo-trx[master]: devices: reset internal smart sample buffers upon stop

2020-08-15 Thread Hoernchen
Hello fixeria, laforge, Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmo-trx/+/19646

to look at the new patch set (#8).

Change subject: devices: reset internal smart sample buffers upon stop
..

devices: reset internal smart sample buffers upon stop

They are too smart, they keep the timestamps.

Change-Id: Idb4b8f03eb5ffdfd6d3fdbc137b20e3ddc4cfa65
---
M Transceiver52M/device/common/smpl_buf.cpp
M Transceiver52M/device/common/smpl_buf.h
M Transceiver52M/device/ipc/IPCDevice.cpp
M Transceiver52M/device/uhd/UHDDevice.cpp
4 files changed, 22 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/46/19646/8
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19646
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Idb4b8f03eb5ffdfd6d3fdbc137b20e3ddc4cfa65
Gerrit-Change-Number: 19646
Gerrit-PatchSet: 8
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-MessageType: newpatchset


Change in osmo-trx[master]: transceiver: optimize code if optimizations are enabled

2020-08-15 Thread Hoernchen
Hello fixeria, laforge, Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmo-trx/+/19650

to look at the new patch set (#8).

Change subject: transceiver: optimize code if optimizations are enabled
..

transceiver: optimize code if optimizations are enabled

There is no point in checking basic stuff ten thousand times per second
since the sizes never change, so it's enough to enable the
checks/assertions for unoptimized (debug) builds.

This significantly decreases branch mispredictions.

Change-Id: Iebd9e91b3c7f37f2dc646d3017c45139977e4d15
---
M CommonLibs/Vector.h
M Transceiver52M/Resampler.cpp
M Transceiver52M/arch/x86/convolve.c
3 files changed, 25 insertions(+), 18 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/50/19650/8
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19650
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Iebd9e91b3c7f37f2dc646d3017c45139977e4d15
Gerrit-Change-Number: 19650
Gerrit-PatchSet: 8
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-MessageType: newpatchset


Change in osmo-trx[master]: osmo-trx-ipc

2020-08-15 Thread Hoernchen
Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmo-trx/+/19641

to look at the new patch set (#7).

Change subject: osmo-trx-ipc
..

osmo-trx-ipc

This adds a IPC backend that uses shared memory interface
to communicate with (proprietary) devices.

Requires config file option
dev-args ipc_msock=/path/to/socket
to specify the master socket the ipc backend should connect to.

If UHD is avaialble the ipc-driver-test tool can be used to test the
backend with a uhd device, this was so far only tested with a b2xx.

Change-Id: Ice63d3499026293ade8aad675ff7a883bcdd5756
---
M .gitignore
M Transceiver52M/Makefile.am
M Transceiver52M/device/Makefile.am
A Transceiver52M/device/ipc/IPCDevice.cpp
A Transceiver52M/device/ipc/IPCDevice.h
A Transceiver52M/device/ipc/Makefile.am
A Transceiver52M/device/ipc/ipc-driver-test.c
A Transceiver52M/device/ipc/ipc-driver-test.h
A Transceiver52M/device/ipc/ipc_chan.c
A Transceiver52M/device/ipc/ipc_chan.h
A Transceiver52M/device/ipc/ipc_shm.c
A Transceiver52M/device/ipc/ipc_shm.h
A Transceiver52M/device/ipc/ipc_sock.c
A Transceiver52M/device/ipc/ipc_sock.h
A Transceiver52M/device/ipc/shm.c
A Transceiver52M/device/ipc/shm.h
A Transceiver52M/device/ipc/uhdwrap.cpp
A Transceiver52M/device/ipc/uhdwrap.h
M Transceiver52M/device/uhd/UHDDevice.cpp
M Transceiver52M/device/uhd/UHDDevice.h
M configure.ac
M contrib/jenkins.sh
M contrib/osmo-trx.spec.in
M contrib/systemd/Makefile.am
A contrib/systemd/osmo-trx-ipc.service
M debian/control
A debian/osmo-trx-ipc.install
M debian/rules
M doc/examples/Makefile.am
A doc/examples/osmo-trx-ipc/osmo-trx-ipc.cfg
30 files changed, 3,823 insertions(+), 10 deletions(-)


  git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/41/19641/7
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19641
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ice63d3499026293ade8aad675ff7a883bcdd5756
Gerrit-Change-Number: 19641
Gerrit-PatchSet: 7
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: fixeria 
Gerrit-CC: laforge 
Gerrit-MessageType: newpatchset


Change in osmo-trx[master]: osmo-trx-ipc

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19664 )

Change subject: osmo-trx-ipc
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19664
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Iefae70cc079a0174f48309f9ef25157c530e5c32
Gerrit-Change-Number: 19664
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: uhddevice: unbreak ipc test

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19649 )

Change subject: uhddevice: unbreak ipc test
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19649
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I7359e35adaac211a4ff5b693ccbab2fd7b63d67e
Gerrit-Change-Number: 19649
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: configure.ac: add --with-ipc

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19643 )

Change subject: configure.ac: add --with-ipc
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19643
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ie7b1b07479b81366cebaa081d80917ae868992b4
Gerrit-Change-Number: 19643
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-CC: laforge 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: contrib/systemd/osmo-trx-ipc.service: new file

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19644 )

Change subject: contrib/systemd/osmo-trx-ipc.service: new file
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19644
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ic2ba7616c6909bd0a7e642554ecffa4939935b01
Gerrit-Change-Number: 19644
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: gitignore: add new binaries

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19642 )

Change subject: gitignore: add new binaries
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19642
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I9fd0b6cdb0b9d66b37e813cc8d35a28b9c9dc539
Gerrit-Change-Number: 19642
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: contrib/osmo-trx.spec.in: add osmo-trx-ipc

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19645 )

Change subject: contrib/osmo-trx.spec.in: add osmo-trx-ipc
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19645
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ib57980e8e102d6f77d0bffa47faafd929c82a288
Gerrit-Change-Number: 19645
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: osmith 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: configure: only enable uhd if we enable uhd...

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19647 )

Change subject: configure: only enable uhd if we enable uhd...
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19647
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I418a07f5e166f136313f3aec4df71dbfa25ec874
Gerrit-Change-Number: 19647
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-MessageType: abandon


Change in osmo-trx[master]: ipc: build the uhd test backend only if we actually have and want uhd

2020-08-15 Thread Hoernchen
Hoernchen has abandoned this change. ( 
https://gerrit.osmocom.org/c/osmo-trx/+/19648 )

Change subject: ipc: build the uhd test backend only if we actually have and 
want uhd
..


Abandoned
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/19648
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I6bf9ee3e73327d8073994da7368a7be0dcb83592
Gerrit-Change-Number: 19648
Gerrit-PatchSet: 2
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: laforge 
Gerrit-MessageType: abandon


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_18.04/i586

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_18.04/i586

Package network:osmocom:nightly/simtrace2 failed to build in xUbuntu_18.04/i586

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  130s] [COMPILING libboard/qmod/source/i2c.c]
[  130s] [COMPILING libboard/qmod/source/board_qmod.c]
[  130s] [COMPILING apps/dfu/main.c]
[  130s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  130s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  131s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  131s] Memory region Used Size  Region Size  %age Used
[  131s]  rom:   16576 B16 KB101.17%
[  131s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  131s] /usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 192 bytes
[  131s] collect2: error: ld returned 1 exit status
[  131s] %
[  131s] Makefile:234: recipe for target 'flash' failed
[  131s] make[2]: *** [flash] Error 1
[  131s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  131s] Makefile:13: recipe for target 'fw-qmod-dfu' failed
[  131s] make[1]: *** [fw-qmod-dfu] Error 2
[  131s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  131s] dh_auto_build: make -j1 returned exit code 2
[  131s] debian/rules:16: recipe for target 'build' failed
[  131s] make: *** [build] Error 2
[  131s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  131s] ### VM INTERACTION START ###
[  134s] [  126.637052] sysrq: Power Off
[  134s] [  126.654902] reboot: Power down
[  134s] ### VM INTERACTION END ###
[  134s] 
[  134s] lamb02 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:34:55 UTC 2020.
[  134s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_10/i586

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_10/i586

Package network:osmocom:nightly/simtrace2 failed to build in Debian_10/i586

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[   93s] [COMPILING libboard/qmod/source/wwan_perst.c]
[   93s] [COMPILING libboard/qmod/source/card_pres.c]
[   93s] [COMPILING libboard/qmod/source/wwan_led.c]
[   93s] [COMPILING libboard/qmod/source/i2c.c]
[   93s] [COMPILING libboard/qmod/source/board_qmod.c]
[   93s] [COMPILING apps/dfu/main.c]
[   93s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[   93s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[   93s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[   94s] Memory region Used Size  Region Size  %age Used
[   94s]  rom:   16504 B16 KB100.73%
[   94s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[   94s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[   94s] collect2: error: ld returned 1 exit status
[   94s] %
[   94s] make[2]: *** [Makefile:234: flash] Error 1
[   94s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[   94s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[   94s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   94s] dh_auto_build: make -j1 returned exit code 2
[   94s] make: *** [debian/rules:16: build] Error 2
[   94s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[   94s] ### VM INTERACTION START ###
[   97s] [   91.206150] sysrq: Power Off
[   97s] [   91.207476] reboot: Power down
[   97s] ### VM INTERACTION END ###
[   97s] 
[   97s] build83 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:35:33 UTC 2020.
[   97s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_20.04/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_20.04/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
xUbuntu_20.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[   65s] [COMPILING libboard/common/source/uart_console.c]
[   65s] [COMPILING libboard/common/source/led.c]
[   65s] [COMPILING libboard/common/source/boardver_adc.c]
[   65s] [COMPILING libboard/common/source/manifest.c]
[   65s] [COMPILING libboard/simtrace/source/board_simtrace.c]
[   65s] [COMPILING apps/dfu/main.c]
[   65s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[   65s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[   65s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[   65s] Memory region Used Size  Region Size  %age Used
[   65s]  rom:   16460 B16 KB100.46%
[   65s]  ram:   11664 B48 KB 
23.73/usr/lib/gcc/arm-none-eabi/9.2.1/../../../arm-none-eabi/bin/ld: 
bin/simtrace-dfu-flash.elf section `.text' will not fit in region `rom'
[   65s] /usr/lib/gcc/arm-none-eabi/9.2.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 76 bytes
[   65s] collect2: error: ld returned 1 exit status
[   65s] %
[   65s] make[2]: *** [Makefile:234: flash] Error 1
[   65s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[   65s] make[1]: *** [Makefile:10: fw-simtrace-dfu] Error 2
[   65s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   65s] dh_auto_build: error: make -j1 returned exit code 2
[   65s] make: *** [debian/rules:16: build] Error 25
[   65s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[   65s] ### VM INTERACTION START ###
[   68s] [   62.784290] sysrq: Power Off
[   68s] [   62.791295] reboot: Power down
[   68s] ### VM INTERACTION END ###
[   68s] 
[   68s] goat07 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:35:38 UTC 2020.
[   68s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_18.04/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_18.04/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
xUbuntu_18.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  158s] [COMPILING libboard/qmod/source/i2c.c]
[  159s] [COMPILING libboard/qmod/source/board_qmod.c]
[  159s] [COMPILING apps/dfu/main.c]
[  159s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  159s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  159s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  160s] Memory region Used Size  Region Size  %age Used
[  160s]  rom:   16576 B16 KB101.17%
[  160s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  160s] /usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 192 bytes
[  160s] collect2: error: ld returned 1 exit status
[  160s] %
[  160s] Makefile:234: recipe for target 'flash' failed
[  160s] make[2]: *** [flash] Error 1
[  160s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  160s] Makefile:13: recipe for target 'fw-qmod-dfu' failed
[  160s] make[1]: *** [fw-qmod-dfu] Error 2
[  160s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  160s] dh_auto_build: make -j1 returned exit code 2
[  160s] debian/rules:16: recipe for target 'build' failed
[  160s] make: *** [build] Error 2
[  160s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  160s] ### VM INTERACTION START ###
[  163s] [  154.957419] sysrq: Power Off
[  163s] [  154.971417] reboot: Power down
[  163s] ### VM INTERACTION END ###
[  163s] 
[  163s] lamb54 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:37:08 UTC 2020.
[  163s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_19.04/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_19.04/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
xUbuntu_19.04/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[   97s] [COMPILING libboard/qmod/source/wwan_perst.c]
[   97s] [COMPILING libboard/qmod/source/card_pres.c]
[   97s] [COMPILING libboard/qmod/source/wwan_led.c]
[   97s] [COMPILING libboard/qmod/source/i2c.c]
[   98s] [COMPILING libboard/qmod/source/board_qmod.c]
[   98s] [COMPILING apps/dfu/main.c]
[   98s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[   98s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[   98s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[   98s] Memory region Used Size  Region Size  %age Used
[   98s]  rom:   16504 B16 KB100.73%
[   98s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[   98s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[   98s] collect2: error: ld returned 1 exit status
[   98s] %
[   98s] make[2]: *** [Makefile:234: flash] Error 1
[   98s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[   98s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[   98s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[   98s] dh_auto_build: make -j1 returned exit code 2
[   98s] make: *** [debian/rules:16: build] Error 2
[   98s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[   98s] ### VM INTERACTION START ###
[  101s] [   95.575535] sysrq: Power Off
[  101s] [   95.580568] reboot: Power down
[  101s] ### VM INTERACTION END ###
[  101s] 
[  101s] sheep88 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:37:19 UTC 2020.
[  101s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_9.0/i586

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_9.0/i586

Package network:osmocom:nightly/simtrace2 failed to build in Debian_9.0/i586

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  120s] [COMPILING libboard/qmod/source/i2c.c]
[  120s] [COMPILING libboard/qmod/source/board_qmod.c]
[  121s] [COMPILING apps/dfu/main.c]
[  121s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  121s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  121s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  121s] Memory region Used Size  Region Size  %age Used
[  121s]  rom:   16584 B16 KB101.22%
[  121s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  121s] /usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 200 bytes
[  121s] collect2: error: ld returned 1 exit status
[  121s] %
[  121s] Makefile:234: recipe for target 'flash' failed
[  121s] make[2]: *** [flash] Error 1
[  121s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  121s] Makefile:13: recipe for target 'fw-qmod-dfu' failed
[  121s] make[1]: *** [fw-qmod-dfu] Error 2
[  121s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  121s] dh_auto_build: make -j1 returned exit code 2
[  121s] debian/rules:16: recipe for target 'build' failed
[  121s] make: *** [build] Error 2
[  121s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  121s] ### VM INTERACTION START ###
[  124s] [  117.079516] sysrq: Power Off
[  124s] [  117.086505] reboot: Power down
[  124s] ### VM INTERACTION END ###
[  124s] 
[  124s] lamb25 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:37:14 UTC 2020.
[  124s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_18.10/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_18.10/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
xUbuntu_18.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  181s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  181s] [COMPILING libboard/qmod/source/card_pres.c]
[  181s] [COMPILING libboard/qmod/source/wwan_led.c]
[  181s] [COMPILING libboard/qmod/source/i2c.c]
[  181s] [COMPILING libboard/qmod/source/board_qmod.c]
[  181s] [COMPILING apps/dfu/main.c]
[  181s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  182s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  182s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  182s] Memory region Used Size  Region Size  %age Used
[  182s]  rom:   16576 B16 KB101.17%
[  182s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  182s] /usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 192 bytes
[  182s] collect2: error: ld returned 1 exit status
[  182s] %
[  182s] make[2]: *** [Makefile:234: flash] Error 1
[  182s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  182s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  182s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  182s] dh_auto_build: make -j1 returned exit code 2
[  182s] make: *** [debian/rules:16: build] Error 2
[  182s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  182s] ### VM INTERACTION START ###
[  185s] [  175.927834] sysrq: Power Off
[  185s] [  175.936819] reboot: Power down
[  185s] ### VM INTERACTION END ###
[  185s] 
[  185s] lamb24 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:37:59 UTC 2020.
[  185s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_19.10/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_19.10/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
xUbuntu_19.10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  151s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  151s] [COMPILING libboard/qmod/source/card_pres.c]
[  151s] [COMPILING libboard/qmod/source/wwan_led.c]
[  151s] [COMPILING libboard/qmod/source/i2c.c]
[  152s] [COMPILING libboard/qmod/source/board_qmod.c]
[  152s] [COMPILING apps/dfu/main.c]
[  152s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  152s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  152s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  152s] Memory region Used Size  Region Size  %age Used
[  152s]  rom:   16504 B16 KB100.73%
[  152s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  152s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[  152s] collect2: error: ld returned 1 exit status
[  152s] %
[  152s] make[2]: *** [Makefile:234: flash] Error 1
[  152s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  152s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  152s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  152s] dh_auto_build: make -j1 returned exit code 2
[  152s] make: *** [debian/rules:16: build] Error 255
[  152s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  152s] ### VM INTERACTION START ###
[  156s] [  147.201812] sysrq: Power Off
[  156s] [  147.206029] reboot: Power down
[  156s] ### VM INTERACTION END ###
[  156s] 
[  156s] lamb02 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:37:36 UTC 2020.
[  156s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in xUbuntu_18.10/i586

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/xUbuntu_18.10/i586

Package network:osmocom:nightly/simtrace2 failed to build in xUbuntu_18.10/i586

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  220s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  220s] [COMPILING libboard/qmod/source/card_pres.c]
[  220s] [COMPILING libboard/qmod/source/wwan_led.c]
[  220s] [COMPILING libboard/qmod/source/i2c.c]
[  221s] [COMPILING libboard/qmod/source/board_qmod.c]
[  221s] [COMPILING apps/dfu/main.c]
[  221s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  221s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  221s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  221s] Memory region Used Size  Region Size  %age Used
[  221s]  rom:   16576 B16 KB101.17%
[  221s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  221s] /usr/lib/gcc/arm-none-eabi/6.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 192 bytes
[  221s] collect2: error: ld returned 1 exit status
[  221s] %
[  221s] make[2]: *** [Makefile:234: flash] Error 1
[  221s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  221s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  221s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  221s] dh_auto_build: make -j1 returned exit code 2
[  221s] make: *** [debian/rules:16: build] Error 2
[  221s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  221s] ### VM INTERACTION START ###
[  224s] [  212.094322] sysrq: Power Off
[  224s] [  212.101467] reboot: Power down
[  224s] ### VM INTERACTION END ###
[  224s] 
[  224s] lamb03 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:37:58 UTC 2020.
[  224s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_Unstable/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_Unstable/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
Debian_Unstable/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  109s] [COMPILING apps/dfu/main.c]
[  109s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  109s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  109s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  109s] Memory region Used Size  Region Size  %age Used
[  109s]  rom:   16464 B16 KB100.49%
[  109s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: warning: 
changing start of section .stack by 4 bytes
[  109s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  109s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  109s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  109s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  109s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  109s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 80 bytes
[  109s] collect2: error: ld returned 1 exit status
[  109s] %
[  109s] make[2]: *** [Makefile:234: flash] Error 1
[  109s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  109s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  109s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  109s] dh_auto_build: error: make -j1 returned exit code 2
[  109s] make: *** [debian/rules:16: build] Error 25
[  109s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  109s] ### VM INTERACTION START ###
[  113s] [  103.198018] sysrq: Power Off
[  113s] [  103.202738] reboot: Power down
[  113s] ### VM INTERACTION END ###
[  113s] 
[  113s] sheep87 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:39:18 UTC 2020.
[  113s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_9.0/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_9.0/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in Debian_9.0/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  113s] [COMPILING libboard/qmod/source/i2c.c]
[  113s] [COMPILING libboard/qmod/source/board_qmod.c]
[  113s] [COMPILING apps/dfu/main.c]
[  113s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  113s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  113s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  113s] Memory region Used Size  Region Size  %age Used
[  113s]  rom:   16584 B16 KB101.22%
[  113s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  113s] /usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 200 bytes
[  113s] collect2: error: ld returned 1 exit status
[  113s] %
[  113s] Makefile:234: recipe for target 'flash' failed
[  113s] make[2]: *** [flash] Error 1
[  113s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  113s] Makefile:13: recipe for target 'fw-qmod-dfu' failed
[  113s] make[1]: *** [fw-qmod-dfu] Error 2
[  113s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  113s] dh_auto_build: make -j1 returned exit code 2
[  113s] debian/rules:16: recipe for target 'build' failed
[  113s] make: *** [build] Error 2
[  113s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  113s] ### VM INTERACTION START ###
[  117s] [  109.892361] sysrq: Power Off
[  117s] [  109.899326] reboot: Power down
[  117s] ### VM INTERACTION END ###
[  117s] 
[  117s] lamb16 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:40:17 UTC 2020.
[  117s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_Testing/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_Testing/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
Debian_Testing/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  168s] [COMPILING apps/dfu/main.c]
[  169s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  169s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  169s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  169s] Memory region Used Size  Region Size  %age Used
[  169s]  rom:   16464 B16 KB100.49%
[  169s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: warning: 
changing start of section .stack by 4 bytes
[  169s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  169s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  169s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  169s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  169s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  169s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 80 bytes
[  169s] collect2: error: ld returned 1 exit status
[  169s] %
[  169s] make[2]: *** [Makefile:234: flash] Error 1
[  169s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  169s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  169s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  169s] dh_auto_build: error: make -j1 returned exit code 2
[  169s] make: *** [debian/rules:16: build] Error 25
[  169s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  169s] ### VM INTERACTION START ###
[  172s] [  161.599517] sysrq: Power Off
[  172s] [  161.647691] reboot: Power down
[  172s] ### VM INTERACTION END ###
[  172s] 
[  172s] lamb27 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:40:34 UTC 2020.
[  172s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_10/aarch64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_10/aarch64

Package network:osmocom:nightly/simtrace2 failed to build in Debian_10/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  213s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  214s] [COMPILING libboard/qmod/source/card_pres.c]
[  214s] [COMPILING libboard/qmod/source/wwan_led.c]
[  214s] [COMPILING libboard/qmod/source/i2c.c]
[  214s] [COMPILING libboard/qmod/source/board_qmod.c]
[  214s] [COMPILING apps/dfu/main.c]
[  215s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  215s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  215s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  215s] Memory region Used Size  Region Size  %age Used
[  215s]  rom:   16504 B16 KB100.73%
[  215s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  215s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[  215s] collect2: error: ld returned 1 exit status
[  215s] %
[  215s] make[2]: *** [Makefile:234: flash] Error 1
[  215s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  215s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  215s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  215s] dh_auto_build: make -j1 returned exit code 2
[  215s] make: *** [debian/rules:16: build] Error 2
[  215s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  216s] ### VM INTERACTION START ###
[  219s] [  202.513957] sysrq: Power Off
[  219s] [  202.515444] reboot: Power down
[  219s] ### VM INTERACTION END ###
[  219s] 
[  219s] obs-arm-9 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:41:58 UTC 2020.
[  219s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_10/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_10/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in Debian_10/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  161s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  161s] [COMPILING libboard/qmod/source/card_pres.c]
[  161s] [COMPILING libboard/qmod/source/wwan_led.c]
[  162s] [COMPILING libboard/qmod/source/i2c.c]
[  162s] [COMPILING libboard/qmod/source/board_qmod.c]
[  162s] [COMPILING apps/dfu/main.c]
[  162s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  162s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  162s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  162s] Memory region Used Size  Region Size  %age Used
[  162s]  rom:   16504 B16 KB100.73%
[  162s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  162s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[  162s] collect2: error: ld returned 1 exit status
[  162s] %
[  162s] make[2]: *** [Makefile:234: flash] Error 1
[  162s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  162s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  162s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  162s] dh_auto_build: make -j1 returned exit code 2
[  162s] make: *** [debian/rules:16: build] Error 2
[  162s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  162s] ### VM INTERACTION START ###
[  166s] [  156.630501] sysrq: Power Off
[  166s] [  156.637023] reboot: Power down
[  166s] ### VM INTERACTION END ###
[  166s] 
[  166s] lamb04 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:41:26 UTC 2020.
[  166s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_9.0/aarch64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_9.0/aarch64

Package network:osmocom:nightly/simtrace2 failed to build in Debian_9.0/aarch64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  179s] [COMPILING libboard/qmod/source/i2c.c]
[  180s] [COMPILING libboard/qmod/source/board_qmod.c]
[  180s] [COMPILING apps/dfu/main.c]
[  180s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  180s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  180s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  181s] Memory region Used Size  Region Size  %age Used
[  181s]  rom:   16584 B16 KB101.22%
[  181s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  181s] /usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 200 bytes
[  181s] collect2: error: ld returned 1 exit status
[  181s] %
[  181s] Makefile:234: recipe for target 'flash' failed
[  181s] make[2]: *** [flash] Error 1
[  181s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  181s] Makefile:13: recipe for target 'fw-qmod-dfu' failed
[  181s] make[1]: *** [fw-qmod-dfu] Error 2
[  181s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  181s] dh_auto_build: make -j1 returned exit code 2
[  181s] debian/rules:16: recipe for target 'build' failed
[  181s] make: *** [build] Error 2
[  181s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  181s] ### VM INTERACTION START ###
[  184s] [  148.597485] sysrq: Power Off
[  184s] [  148.598905] reboot: Power down
[  184s] ### VM INTERACTION END ###
[  184s] 
[  184s] obs-arm-8 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
01:49:52 UTC 2020.
[  184s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/ulfius in Debian_Testing/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/ulfius/Debian_Testing/x86_64

Package network:osmocom:nightly/ulfius failed to build in Debian_Testing/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly ulfius

Last lines of build log:
[  119s] /usr/src/packages/BUILD/src/ulfius.c:839:48: error: passing argument 5 
of 'MHD_start_daemon' from incompatible pointer type 
[-Werror=incompatible-pointer-types]
[  119s]   839 |   mhd_flags, u_instance->port, NULL, NULL, 
&ulfius_webservice_dispatcher, (void *)u_instance,
[  119s]   |
^
[  119s]   ||
[  119s]   |int (*)(void *, 
struct MHD_Connection *, const char *, const char *, const char *, const char 
*, size_t *, void **) {aka int (*)(void *, struct MHD_Connection *, const char 
*, const char *, const char *, const char *, long unsigned int *, void **)}
[  119s] In file included from /usr/src/packages/BUILD/include/ulfius.h:46,
[  119s]  from /usr/src/packages/BUILD/include/u_private.h:29,
[  119s]  from /usr/src/packages/BUILD/src/ulfius.c:29:
[  119s] /usr/include/microhttpd.h:2428:45: note: expected 
'MHD_AccessHandlerCallback' {aka 'enum MHD_Result (*)(void *, struct 
MHD_Connection *, const char *, const char *, const char *, const char *, long 
unsigned int *, void **)'} but argument is of type 'int (*)(void *, struct 
MHD_Connection *, const char *, const char *, const char *, const char *, 
size_t *, void **)' {aka 'int (*)(void *, struct MHD_Connection *, const char 
*, const char *, const char *, const char *, long unsigned int *, void **)'}
[  119s]  2428 |   MHD_AccessHandlerCallback dh, void *dh_cls,
[  119s]   |   ~~^~
[  120s] cc1: all warnings being treated as errors
[  120s] make[3]: *** [CMakeFiles/ulfius.dir/build.make:144: 
CMakeFiles/ulfius.dir/src/ulfius.c.o] Error 1
[  120s] make[3]: *** Waiting for unfinished jobs
[  120s] make[3]: Leaving directory '/usr/src/packages/BUILD/build'
[  120s] make[2]: *** [CMakeFiles/Makefile2:87: CMakeFiles/ulfius.dir/all] 
Error 2
[  120s] make[2]: Leaving directory '/usr/src/packages/BUILD/build'
[  120s] make[1]: *** [Makefile:166: all] Error 2
[  120s] make[1]: Leaving directory '/usr/src/packages/BUILD/build'
[  120s] dh_auto_build: error: cd build && make -j8 "INSTALL=install 
--strip-program=true" returned exit code 2
[  120s] make: *** [debian/rules:9: build] Error 25
[  120s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  120s] ### VM INTERACTION START ###
[  123s] [  113.745739] sysrq: Power Off
[  123s] [  113.753345] reboot: Power down
[  123s] ### VM INTERACTION END ###
[  123s] 
[  123s] lamb71 failed "build ulfius_2.5.2-4.1.dsc" at Sun Aug 16 02:48:47 UTC 
2020.
[  123s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_Testing/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_Testing/x86_64

Package network:osmocom:nightly/simtrace2 failed to build in 
Debian_Testing/x86_64

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  150s] [COMPILING apps/dfu/main.c]
[  151s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  151s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  151s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  151s] Memory region Used Size  Region Size  %age Used
[  151s]  rom:   16464 B16 KB100.49%
[  151s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: warning: 
changing start of section .stack by 4 bytes
[  151s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  151s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  151s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  151s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  151s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: 
warning: changing start of section .stack by 4 bytes
[  151s] /usr/lib/gcc/arm-none-eabi/8.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 80 bytes
[  151s] collect2: error: ld returned 1 exit status
[  151s] %
[  151s] make[2]: *** [Makefile:234: flash] Error 1
[  151s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  151s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  151s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  151s] dh_auto_build: error: make -j1 returned exit code 2
[  151s] make: *** [debian/rules:16: build] Error 25
[  151s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  151s] ### VM INTERACTION START ###
[  154s] [  142.200750] sysrq: Power Off
[  154s] [  142.204929] reboot: Power down
[  154s] ### VM INTERACTION END ###
[  154s] 
[  154s] cloud127 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
02:50:12 UTC 2020.
[  154s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:latest/ulfius in Debian_Testing/x86_64

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:latest/ulfius/Debian_Testing/x86_64

Package network:osmocom:latest/ulfius failed to build in Debian_Testing/x86_64

Check out the package for editing:
  osc checkout network:osmocom:latest ulfius

Last lines of build log:
[   61s] /usr/src/packages/BUILD/src/ulfius.c:839:48: error: passing argument 5 
of 'MHD_start_daemon' from incompatible pointer type 
[-Werror=incompatible-pointer-types]
[   61s]   839 |   mhd_flags, u_instance->port, NULL, NULL, 
&ulfius_webservice_dispatcher, (void *)u_instance,
[   61s]   |
^
[   61s]   ||
[   61s]   |int (*)(void *, 
struct MHD_Connection *, const char *, const char *, const char *, const char 
*, size_t *, void **) {aka int (*)(void *, struct MHD_Connection *, const char 
*, const char *, const char *, const char *, long unsigned int *, void **)}
[   61s] In file included from /usr/src/packages/BUILD/include/ulfius.h:46,
[   61s]  from /usr/src/packages/BUILD/include/u_private.h:29,
[   61s]  from /usr/src/packages/BUILD/src/ulfius.c:29:
[   61s] /usr/include/microhttpd.h:2428:45: note: expected 
'MHD_AccessHandlerCallback' {aka 'enum MHD_Result (*)(void *, struct 
MHD_Connection *, const char *, const char *, const char *, const char *, long 
unsigned int *, void **)'} but argument is of type 'int (*)(void *, struct 
MHD_Connection *, const char *, const char *, const char *, const char *, 
size_t *, void **)' {aka 'int (*)(void *, struct MHD_Connection *, const char 
*, const char *, const char *, const char *, long unsigned int *, void **)'}
[   61s]  2428 |   MHD_AccessHandlerCallback dh, void *dh_cls,
[   61s]   |   ~~^~
[   62s] cc1: all warnings being treated as errors
[   62s] make[3]: *** [CMakeFiles/ulfius.dir/build.make:144: 
CMakeFiles/ulfius.dir/src/ulfius.c.o] Error 1
[   62s] make[3]: *** Waiting for unfinished jobs
[   62s] make[3]: Leaving directory '/usr/src/packages/BUILD/build'
[   62s] make[2]: *** [CMakeFiles/Makefile2:87: CMakeFiles/ulfius.dir/all] 
Error 2
[   62s] make[2]: Leaving directory '/usr/src/packages/BUILD/build'
[   62s] make[1]: *** [Makefile:166: all] Error 2
[   62s] make[1]: Leaving directory '/usr/src/packages/BUILD/build'
[   62s] dh_auto_build: error: cd build && make -j16 "INSTALL=install 
--strip-program=true" returned exit code 2
[   62s] make: *** [debian/rules:9: build] Error 25
[   62s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[   62s] ### VM INTERACTION START ###
[   65s] [   58.521133] sysrq: Power Off
[   65s] [   58.528005] reboot: Power down
[   65s] ### VM INTERACTION END ###
[   65s] 
[   65s] goat01 failed "build ulfius_2.5.2-4.1.dsc" at Sun Aug 16 03:18:27 UTC 
2020.
[   65s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_9.0/armv7l

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_9.0/armv7l

Package network:osmocom:nightly/simtrace2 failed to build in Debian_9.0/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  369s] [COMPILING libboard/qmod/source/i2c.c]
[  369s] [COMPILING libboard/qmod/source/board_qmod.c]
[  370s] [COMPILING apps/dfu/main.c]
[  370s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  370s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  371s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  371s] Memory region Used Size  Region Size  %age Used
[  371s]  rom:   16584 B16 KB101.22%
[  371s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  371s] /usr/lib/gcc/arm-none-eabi/5.4.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 200 bytes
[  371s] collect2: error: ld returned 1 exit status
[  371s] %
[  371s] Makefile:234: recipe for target 'flash' failed
[  371s] make[2]: *** [flash] Error 1
[  371s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  371s] Makefile:13: recipe for target 'fw-qmod-dfu' failed
[  371s] make[1]: *** [fw-qmod-dfu] Error 2
[  371s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  371s] dh_auto_build: make -j1 returned exit code 2
[  371s] debian/rules:16: recipe for target 'build' failed
[  371s] make: *** [build] Error 2
[  371s] dpkg-buildpackage: error: debian/rules build gave error exit status 2
[  371s] ### VM INTERACTION START ###
[  374s] [  352.785592] sysrq: SysRq : Power Off
[  374s] [  352.809667] reboot: Power down
[  375s] ### VM INTERACTION END ###
[  375s] 
[  375s] obs-arm-6 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
04:53:51 UTC 2020.
[  375s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Change in libosmocore[master]: vty cpu sched: do not assert if sched impossible

2020-08-15 Thread fixeria
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19639 )

Change subject: vty cpu sched: do not assert if sched impossible
..


Patch Set 1: Code-Review+1

(1 comment)

https://gerrit.osmocom.org/c/libosmocore/+/19639/1/src/vty/cpu_sched_vty.c
File src/vty/cpu_sched_vty.c:

https://gerrit.osmocom.org/c/libosmocore/+/19639/1/src/vty/cpu_sched_vty.c@635
PS1, Line 635: LOGL_FATAL
> FATAL is normally only used when the program exists.
ACK, ERROR would be a better fit here.



--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19639
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: Ic40075df8d4cf9fe8f1d711f899dae9a4b5b0928
Gerrit-Change-Number: 19639
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Comment-Date: Sun, 16 Aug 2020 04:58:36 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: laforge 
Gerrit-MessageType: comment


Build failure of network:osmocom:nightly/simtrace2 in Raspbian_10/armv7l

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Raspbian_10/armv7l

Package network:osmocom:nightly/simtrace2 failed to build in Raspbian_10/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  334s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  334s] [COMPILING libboard/qmod/source/card_pres.c]
[  334s] [COMPILING libboard/qmod/source/wwan_led.c]
[  335s] [COMPILING libboard/qmod/source/i2c.c]
[  335s] [COMPILING libboard/qmod/source/board_qmod.c]
[  336s] [COMPILING apps/dfu/main.c]
[  336s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  336s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  337s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  337s] Memory region Used Size  Region Size  %age Used
[  337s]  rom:   16504 B16 KB100.73%
[  337s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  337s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[  337s] collect2: error: ld returned 1 exit status
[  337s] %
[  337s] make[2]: *** [Makefile:234: flash] Error 1
[  337s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  337s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  337s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  337s] dh_auto_build: make -j1 returned exit code 2
[  337s] make: *** [debian/rules:16: build] Error 2
[  337s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  337s] ### VM INTERACTION START ###
[  340s] [  318.400239] sysrq: SysRq : Power Off
[  340s] [  318.414806] reboot: Power down
[  341s] ### VM INTERACTION END ###
[  341s] 
[  341s] armbuild01 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
05:29:23 UTC 2020.
[  341s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Build failure of network:osmocom:nightly/simtrace2 in Debian_10/armv7l

2020-08-15 Thread OBS Notification
Visit 
https://build.opensuse.org/package/live_build_log/network:osmocom:nightly/simtrace2/Debian_10/armv7l

Package network:osmocom:nightly/simtrace2 failed to build in Debian_10/armv7l

Check out the package for editing:
  osc checkout network:osmocom:nightly simtrace2

Last lines of build log:
[  596s] [COMPILING libboard/qmod/source/wwan_perst.c]
[  597s] [COMPILING libboard/qmod/source/card_pres.c]
[  597s] [COMPILING libboard/qmod/source/wwan_led.c]
[  598s] [COMPILING libboard/qmod/source/i2c.c]
[  598s] [COMPILING libboard/qmod/source/board_qmod.c]
[  599s] [COMPILING apps/dfu/main.c]
[  600s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu.c]
[  600s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_desc.c]
[  600s] [COMPILING ./atmel_softpack_libraries/usb/device/dfu/dfu_driver.c]
[  601s] Memory region Used Size  Region Size  %age Used
[  601s]  rom:   16504 B16 KB100.73%
[  601s]  ram:   11672 B48 KB 
23.75/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: 
bin/qmod-dfu-flash.elf section `.text' will not fit in region `rom'
[  601s] /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ld: region 
`rom' overflowed by 120 bytes
[  601s] collect2: error: ld returned 1 exit status
[  601s] %
[  601s] make[2]: *** [Makefile:234: flash] Error 1
[  601s] make[2]: Leaving directory '/usr/src/packages/BUILD/firmware'
[  601s] make[1]: *** [Makefile:13: fw-qmod-dfu] Error 2
[  601s] make[1]: Leaving directory '/usr/src/packages/BUILD'
[  601s] dh_auto_build: make -j1 returned exit code 2
[  601s] make: *** [debian/rules:16: build] Error 2
[  601s] dpkg-buildpackage: error: debian/rules build subprocess returned exit 
status 2
[  602s] ### VM INTERACTION START ###
[  605s] [  577.781516] sysrq: SysRq : Power Off
[  605s] [  577.794266] reboot: Power down
[  605s] ### VM INTERACTION END ###
[  605s] 
[  605s] obs-arm-6 failed "build simtrace2_0.7.0.61.1afb7.dsc" at Sun Aug 16 
05:57:41 UTC 2020.
[  605s] 

-- 
Configure notifications at https://build.opensuse.org/my/subscriptions
openSUSE Build Service (https://build.opensuse.org/)


Change in libosmocore[master]: vty/command: fix switch / case coding style in vty_go_parent()

2020-08-15 Thread fixeria
fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19666 )


Change subject: vty/command: fix switch / case coding style in vty_go_parent()
..

vty/command: fix switch / case coding style in vty_go_parent()

Change-Id: I6f7f5af6879d91811be6f0edf3feb2ebae185ac7
---
M src/vty/command.c
1 file changed, 15 insertions(+), 15 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/66/19666/1

diff --git a/src/vty/command.c b/src/vty/command.c
index fba8ef5..6d2bdbe 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -2216,23 +2216,23 @@
 int vty_go_parent(struct vty *vty)
 {
switch (vty->node) {
-   case AUTH_NODE:
-   case VIEW_NODE:
-   case ENABLE_NODE:
-   case CONFIG_NODE:
-   vty_clear_parents(vty);
-   break;
+   case AUTH_NODE:
+   case VIEW_NODE:
+   case ENABLE_NODE:
+   case CONFIG_NODE:
+   vty_clear_parents(vty);
+   break;

-   case AUTH_ENABLE_NODE:
-   vty->node = VIEW_NODE;
-   vty_clear_parents(vty);
-   break;
+   case AUTH_ENABLE_NODE:
+   vty->node = VIEW_NODE;
+   vty_clear_parents(vty);
+   break;

-   default:
-   if (host.app_info->go_parent_cb)
-   host.app_info->go_parent_cb(vty);
-   vty_pop_parent(vty);
-   break;
+   default:
+   if (host.app_info->go_parent_cb)
+   host.app_info->go_parent_cb(vty);
+   vty_pop_parent(vty);
+   break;
}

return vty->node;

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19666
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I6f7f5af6879d91811be6f0edf3feb2ebae185ac7
Gerrit-Change-Number: 19666
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-MessageType: newchange


Change in libosmocore[master]: vty: add program specific attributes to VTY commands

2020-08-15 Thread fixeria
fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19667 )


Change subject: vty: add program specific attributes to VTY commands
..

vty: add program specific attributes to VTY commands

Change-Id: I2c6c7b317b2b28ce70784c0cabd1b913e721be02
Related: SYS#4937
---
M TODO-RELEASE
M include/osmocom/vty/command.h
M include/osmocom/vty/vty.h
3 files changed, 32 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/67/19667/1

diff --git a/TODO-RELEASE b/TODO-RELEASE
index 8ccfa49..964d072 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,3 +7,5 @@
 # If any interfaces have been added since the last public release: c:r:a + 1.
 # If any interfaces have been removed or changed since the last public 
release: c:r:0.
 #library   whatdescription / commit summary line
+libosmovty ABI change  struct cmd_element: add a field for 
program specific attributes
+libosmovty ABI change  struct vty_app_info: optional program 
specific attributes description
diff --git a/include/osmocom/vty/command.h b/include/osmocom/vty/command.h
index da8d202..ca9acff 100644
--- a/include/osmocom/vty/command.h
+++ b/include/osmocom/vty/command.h
@@ -149,7 +149,8 @@
unsigned int cmdsize;   /*!< Command index count. */
char *config;   /*!< Configuration string */
vector subconfig;   /*!< Sub configuration string */
-   unsigned char attr; /*!< Command attributes */
+   unsigned char attr; /*!< Command attributes (global) */
+   unsigned char usrattr;  /*!< Command attributes (program specific) */
 };

 /*! Command description structure. */
@@ -200,6 +201,16 @@
 .daemon = dnum, \
   };

+#define DEFUN_CMD_ELEMENT_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, 
attrs, usrattrs) \
+  static struct cmd_element cmdname = \
+  { \
+.string = cmdstr, \
+.func = funcname, \
+.doc = helpstr, \
+.attr = attrs, \
+.usrattr = usrattrs, \
+  };
+
 #define DEFUN_CMD_FUNC_DECL(funcname) \
   static int funcname (struct cmd_element *, struct vty *, int, const char 
*[]); \

@@ -240,6 +251,22 @@
 #define DEFUN_DEPRECATED(funcname, cmdname, cmdstr, helpstr) \
   DEFUN_ATTR (funcname, cmdname, cmdstr, helpstr, CMD_ATTR_DEPRECATED)

+/*! Macro for defining a VTY node and function with global & program specific 
attributes.
+ *  \param[in] funcname Name of the function implementing the node.
+ *  \param[in] cmdname Name of the command node.
+ *  \param[in] cmdstr String with syntax of node.
+ *  \param[in] helpstr String with help message of node.
+ *  \param[in] attr Global attributes (see CMD_ATTR_*).
+ *  \param[in] usrattr Program specific attributes.
+ */
+#define DEFUN_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, attr, usrattr) \
+  DEFUN_CMD_FUNC_DECL(funcname) \
+  DEFUN_CMD_ELEMENT_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, attr, 
usrattr) \
+  DEFUN_CMD_FUNC_TEXT(funcname)
+
+#define DEFUN_USRATTR(funcname, cmdname, cmdstr, helpstr, usrattr) \
+  DEFUN_ATTR_USRATTR(funcname, cmdname, cmdstr, helpstr, 0, usrattr)
+
 /* DEFUN_NOSH for commands that vtysh should ignore */
 #define DEFUN_NOSH(funcname, cmdname, cmdstr, helpstr) \
   DEFUN(funcname, cmdname, cmdstr, helpstr)
diff --git a/include/osmocom/vty/vty.h b/include/osmocom/vty/vty.h
index b63dc3b..710ef5b 100644
--- a/include/osmocom/vty/vty.h
+++ b/include/osmocom/vty/vty.h
@@ -192,6 +192,8 @@
" no longer called, ever, and can be left 
NULL.");
/*! Check if the config is consistent before write */
int (*config_is_consistent)(struct vty *vty);
+   /*! Description of the application specific VTY attributes */
+   const struct value_string *attr_desc;
 };

 /* Prototypes. */

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19667
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I2c6c7b317b2b28ce70784c0cabd1b913e721be02
Gerrit-Change-Number: 19667
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-MessageType: newchange


Change in libosmocore[master]: vty/command: cosmetic: move variable definition upwards

2020-08-15 Thread fixeria
fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19665 )


Change subject: vty/command: cosmetic: move variable definition upwards
..

vty/command: cosmetic: move variable definition upwards

Change-Id: I491913061799cd0bfaa78d76f88a5c819f1d5e2e
---
M src/vty/command.c
1 file changed, 1 insertion(+), 2 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/65/19665/1

diff --git a/src/vty/command.c b/src/vty/command.c
index d8fe463..fba8ef5 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -628,14 +628,13 @@
 static int vty_dump_element(struct cmd_element *cmd, print_func_t print_func, 
void *data, const char *newline)
 {
char *xml_string = xml_escape(cmd->string);
+   unsigned int i, j;

print_func(data, "%s", xml_string, newline);
print_func(data, "  %s", newline);

-   int j;
for (j = 0; j < vector_count(cmd->strvec); ++j) {
vector descvec = vector_slot(cmd->strvec, j);
-   int i;
for (i = 0; i < vector_active(descvec); ++i) {
char *xml_param, *xml_doc;
struct desc *desc = vector_slot(descvec, i);

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19665
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I491913061799cd0bfaa78d76f88a5c819f1d5e2e
Gerrit-Change-Number: 19665
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-MessageType: newchange


Change in libosmocore[master]: vty: print program specific attributes in the XML reference

2020-08-15 Thread fixeria
fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/libosmocore/+/19668 )


Change subject: vty: print program specific attributes in the XML reference
..

vty: print program specific attributes in the XML reference

Change-Id: I1f35368ba9178e1454f2e3ddfcad9d96576143ef
Related: SYS#4937
---
M src/vty/command.c
1 file changed, 15 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/68/19668/1

diff --git a/src/vty/command.c b/src/vty/command.c
index 6d2bdbe..336622d 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -631,6 +631,21 @@
unsigned int i, j;

print_func(data, "%s", xml_string, newline);
+
+   /* Print application specific attributes and their description */
+   for (i = 0; host.app_info->attr_desc != NULL; i++) {
+   const struct value_string *vs = &host.app_info->attr_desc[i];
+   if (vs->value == 0 && vs->str == NULL)
+   break; /* array terminator */
+   if (~cmd->usrattr & (1 << vs->value))
+   continue; /* skip if not set */
+
+   char *xml_att_desc = xml_escape(vs->str);
+   print_func(data, "  %s%s",
+  xml_att_desc, newline);
+   talloc_free(xml_att_desc);
+   }
+
print_func(data, "  %s", newline);

for (j = 0; j < vector_count(cmd->strvec); ++j) {

--
To view, visit https://gerrit.osmocom.org/c/libosmocore/+/19668
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Change-Id: I1f35368ba9178e1454f2e3ddfcad9d96576143ef
Gerrit-Change-Number: 19668
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-MessageType: newchange