Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Dec 14, 2023
1 parent dc41a93 commit 81b7c3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ RUN set -x && \
KEPT_PACKAGES+=(libusb-1.0-0) && \
TEMP_PACKAGES+=(libsqlite3-dev) && \
KEPT_PACKAGES+=(libsqlite3-0) && \
TEMP_PACKAGES+=(unzip) && \
# install packages
apt-get update && \
apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -118,7 +119,7 @@ RUN set -x && \
make && \
make install && \
# grab the basestation database
wget -o /tmp/BaseStation.zip https://github.com/rikgale/VRSData/raw/main/BaseStation.zip && \
wget -q -O /tmp/BaseStation.zip https://github.com/rikgale/VRSData/raw/main/BaseStation.zip && \
mkdir -p /usr/local/share/basestation/ && \
unzip /tmp/BaseStation.zip -d /usr/local/share/basestation/ && \
# grab the /etc/systable.conf file from the dumphfdl source tree
Expand Down
2 changes: 1 addition & 1 deletion rootfs/etc/s6-overlay/scripts/dumphfdl
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ fi
dumpcmd+=( --system-table "/opt/dumphfdl-data/systable.conf" --system-table-save "/opt/dumphfdl-data/systable.conf" )

# base station database
dumpcmd+=( --bs-db "/usr/local/share/basestation/basestation.sqb" --ac-details "verbose" --freq-as-squawk)
dumpcmd+=( --bs-db "/usr/local/share/basestation/BaseStation.sqb" --ac-details "verbose" --freq-as-squawk)


if [[ -n "$ZMQ_MODE" ]]; then
Expand Down

0 comments on commit 81b7c3a

Please sign in to comment.