replace eb200 with runds

This commit is contained in:
Jakob Ketterl
2021-02-03 03:21:09 +01:00
parent 44270af88f
commit 13eaee5ee9
10 changed files with 21 additions and 20 deletions

View File

@ -21,7 +21,7 @@ RUN /install-dependencies-rtlsdr.sh &&\
/install-dependencies-redpitaya.sh &&\
/install-dependencies-hpsdr.sh &&\
/install-connectors.sh &&\
/install-dependencies-eb200.sh &&\
/install-dependencies-runds.sh &&\
rm /install-dependencies-*.sh &&\
rm /install-lib.*.patch && \
rm /install-connectors.sh

View File

@ -2,11 +2,11 @@ ARG ARCHTAG
FROM openwebrx-base:$ARCHTAG
COPY docker/scripts/install-connectors.sh \
docker/scripts/install-dependencies-eb200.sh /
docker/scripts/install-dependencies-runds.sh /
RUN /install-connectors.sh &&\
rm /install-connectors.sh && \
/install-dependencies-eb200.sh && \
rm /install-dependencies-eb200.sh
/install-dependencies-runds.sh && \
rm /install-dependencies-runds.sh
COPY . /opt/openwebrx

View File

@ -24,9 +24,9 @@ BUILD_PACKAGES="git cmake make gcc g++ pkg-config"
apt-get update
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
git clone https://github.com/jketterl/eb200_connector.git
# latest from develop as of 2021-01-31
cmakebuild eb200_connector bb7f75be6e7fb4b987eea4b81821663ca4b9f19f
git clone https://github.com/jketterl/runds_connector.git
# latest from develop as of 2021-02-03 (first working ammos implementation)
cmakebuild runds_connector 19531c4e3e46107960656b3eed9952adebf1ec65
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean