Compare commits

...

3 Commits

Author SHA1 Message Date
Pau Espin Pedrol
71637150a1 Bump version: 0.2.0 → 0.3.0
Change-Id: I4dad76ed95dc585acfbd52d7eed4f2e6f9f5fd1f
2018-03-05 16:49:42 +01:00
Alexander Couzens
2393964b77 jenkins.sh: fix the download url if the qemu image wasn't setup
Download the image from yesterday because linuxcontainers only contains the images of the last 3 days.

Change-Id: I75e270b7255c1cd7fca1674111b0f19fc7bba74f
(cherry picked from commit 28b8cc6283)
2018-03-05 16:49:03 +01:00
Alexander Huemer
9ee4df8760 Fix USRP1 build with support for setting Rx/TxAntenna
The USRP1 build was broken by commit 77ce99ac67.

Commit 77ce99ac67 broke the USRP1 build

Change-Id: I28585947d5662cdd580a814cce54a5d9aa30eeb8
(cherry picked from commit 3f52f0e6c5)
2018-03-05 16:47:40 +01:00
3 changed files with 71 additions and 1 deletions

View File

@@ -198,6 +198,7 @@ private:
inline double numberRead() { return samplesRead; }
inline double numberWritten() { return samplesWritten; }
std::vector<std::string> tx_paths, rx_paths;
};
#endif // _USRP_DEVICE_H_

View File

@@ -36,7 +36,8 @@ if [ -z "${INSIDE_CHROOT}" ]; then
sed -i "s/setup_proc//g" "$ROOTFS/debootstrap/suite-script"
mychroot /debootstrap/debootstrap --second-stage --verbose http://ftp.de.debian.org/debian/
else
wget -nc -q "https://uk.images.linuxcontainers.org/images/debian/stretch/armhf/default/20180114_22:42/rootfs.tar.xz"
YESTERDAY=$(python -c 'import datetime ; print((datetime.datetime.now() - datetime.timedelta(days=1)).strftime("%Y%m%d"))')
wget -nc -q "https://uk.images.linuxcontainers.org/images/debian/stretch/armhf/default/${YESTERDAY}_22:42/rootfs.tar.xz"
tar -xf rootfs.tar.xz -C "$ROOTFS/" || true
echo "nameserver 8.8.8.8" > "$ROOTFS/etc/resolv.conf"
fi

68
debian/changelog vendored
View File

@@ -1,3 +1,71 @@
osmo-trx (0.3.0) unstable; urgency=medium
[ Neels Hofmeyr ]
* jenkins: use osmo-clean-workspace.sh before and after build
[ Harald Welte ]
* SocketsTest: Fix printing of non-nul-terminated string
[ Piotr Krysik ]
* UHDDevice.cpp: add USRP B205mini support
[ Max ]
* Mark release target as virtual
* Remove outdated references to OpenBTS
* Remove unused headers
* Update installation instructions
* Update legal disclaimer
* Update license notes
* tests: null-terminate buffer
[ Pau Espin Pedrol ]
* cosmetic: Remove trailing whitespace
* Logger: Stop using Log.Alarms.Max from config
* Logger: Stop using Log.File and Log.Level from config
* Drop use of ConfigurationTable gConfig
* Remove Configuration module and libsqlite dependency
* cosmetic: AUTHORS: fix trailing whitespace
* Set up GNU Autotest infrastructure
* tests: InterThread: adapt to have reproducible output and enable autotest
* tests: Timeval: adapt to have reproducible output and enable autotest
* tests: Log: adapt to have reproducible output and enable autotest
* Sockets.cpp: Fix initialization of UDD socket
* tests: Sockets: adapt to have reproducible output and enable autotest
* utils/convolvtest: Remove uneeded libosmocore dependency
* Move ARCH_LA to Makefile.common
* tests: Migrate convtest util to autotest infrastructure
* arm/convert.c: Fix compilation error
* arm/convert.c: Add missing convert_init implementation
* .gitignore: Add missing test related files
* Remove UDDSocket class
* tests: SocketTests: Pick OS-assigned instead of setting one manually
* tests: SocketsTest: Avoid hang forever if test fails
* tests: SocketsTest: Fail test on write fail
* tests: TimevalTest: refactor and avoid double comparison
* contrib/jenkins.sh: Use qemu+proot+debootstrap to run tests with ARM instruction set
* tests: convolve: Disable due to difference in output in different archs
* Remove unneeded libdl dependency
* Fix whitespace
* Add support to set Rx/TxAntenna
* UHDDevice: Initialize async_event_thrd in constructor
* Logger: Drop unused gLogEarly
* Logger: Remove unused logging macros
* Logger: get rid of alarm APIs
* Logger: Drop syslog support
* Logger: Drop support to log into file
* Logger: Remove unused includes
* Logger: Remove gLogToConsole flag
* configure.ac: Check for pkg-config
[ Alexander Huemer ]
* Unbreak `./configure --with-usrp1` build
* Fix USRP1 build with support for setting Rx/TxAntenna
[ Alexander Couzens ]
* jenkins.sh: fix the download url if the qemu image wasn't setup
-- Pau Espin Pedrol <pespin@sysmocom.de> Mon, 05 Mar 2018 16:49:42 +0100
osmo-trx (0.2.0) unstable; urgency=medium
[ Alexander Chemeris ]