diff --git a/boot/firmware/wlan1.conf b/boot/firmware/wlan1.conf new file mode 100644 index 0000000..13e307a --- /dev/null +++ b/boot/firmware/wlan1.conf @@ -0,0 +1,8 @@ +ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev +update_config=1 +country=DE + +network={ + ssid="tRackIT Systems Gast" + psk="BirdsAndBats" +} diff --git a/tRackIT-OS.Pifile b/tRackIT-OS.Pifile index cb2c037..876465b 100644 --- a/tRackIT-OS.Pifile +++ b/tRackIT-OS.Pifile @@ -1,7 +1,7 @@ # Set default ARCH : ${ARCH:=arm64} -FROM "https://github.com/tRackIT-Systems/tsOS-Base/releases/download/2024.01.2/tsOS-Base-${ARCH}-2024.01.2.zip" +FROM "https://github.com/tRackIT-Systems/tsOS-Base/releases/download/2024.02.3/tsOS-Base-${ARCH}-2024.02.3.zip" TO "tRackIT-OS-${ARCH}.img" PUMP 300M @@ -22,6 +22,10 @@ RUN chown -R pi:pi /home/pi/ # Blacklist DVB-T driver RUN tee -a /etc/modprobe.d/raspi-blacklist.conf <<<'blacklist dvb_usb_rtl28xxu' +# Install radiotracking dependencies +RUN apt-get install -y librtlsdr-dev +RUN python3 -m pip install --break-system-packages dash + # Install radiotracking RUN python3 -m pip install --break-system-packages -e /home/pi/pyradiotracking RUN systemctl enable radiotracking.service