Porównaj commity

...

4 Commity

Autor SHA1 Wiadomość Data
Links 244af20134
swap to rtc1 as default (fixes timedatectl RTC) 2022-04-18 13:12:46 +02:00
Links b0a3222ea6
add more RF tools to image 2022-04-18 12:58:16 +02:00
Links 97d4452910
fix Timezone for APP 2022-04-18 12:57:56 +02:00
Links f5f03a70b4
typos 2022-04-16 19:42:03 +02:00
6 zmienionych plików z 16 dodań i 6 usunięć

Wyświetl plik

@ -39,7 +39,7 @@ Notes:
❌ = Not working at the moment but possible in theory
⁉ = unknown if possible needs recherche
⁉ = unknown if possible needs research
Note:
local means running on the SoC in Linux on the X6100
@ -69,7 +69,7 @@ on the command line use `nmtui` or use the Network Manager UI after login.
| TCP 9090 | RAW CAT |
| TCP 7000 | RF RX (audio/x-raw,rate=16000,channels=2,format=S16LE) |
| TCP 6080 | noVNC |
| TCP 5900 | VNC (xfec) |
| TCP 5900 | VNC (xfce) |
| TCP 4532 | rigctld |
| TCP 3389 | xrdp (untested) |
| TCP 22 | SSH |

Wyświetl plik

@ -32,10 +32,12 @@ Main() {
apt-get install -y nano htop curl ncdu gpg dtrx localepurge mtr-tiny screen iotop git wget net-tools sudo file bash-completion psmisc dnsutils software-properties-common apt-transport-https xauth aptitude fzf tcpdump
apt-get install -y bluez-alsa-utils bluez bluez-tools
apt-get install -y lightdm slick-greeter xrdp xorgxrdp libvncserver-dev novnc
apt-get install -y libtool cmake autoconf
apt-get install -y libtool cmake autoconf swig
apt-get install -y t5dxcb-plugin libqwt-qt5-6
apt-get install -y python3 python3-pip python3-numpy python3-tornado python3-serial python3-pyaudio python3-alsaaudio python3-pam python3-pulsectl python3-hamlib
apt-get install -y wsjtx fldigi flrig js8call
apt-get install -y python3 python3-pip python3-numpy python3-tornado python3-serial python3-pyaudio python3-alsaaudio python3-pam python3-pulsectl python3-hamlib python3-pygame python3-scipy python3-cartopy
apt-get install -y wsjtx fldigi flrig flmsg flamp flwrap js8call pat ax25-tools qsstv chirp morse pyqso
pip3 install etch_a_tv
cp /tmp/overlay/extracted/sun8i-r16-x6100.dtb /boot/
cp /tmp/overlay/extracted/sun8i-r16-x6100.dts /boot/
@ -109,6 +111,7 @@ Main() {
/root/Universal_HamRadio_Remote_HTML5-build.sh
# cleanup image
localepurge
rm -rf /root/build/
apt-get clean
rm -rf /var/lib/apt/lists/*

Wyświetl plik

@ -0,0 +1 @@
KERNEL=="rtc1", SUBSYSTEM=="rtc", DRIVER=="", SYMLINK="rtc", MODE="0666"

Wyświetl plik

@ -9,3 +9,5 @@ if [ ! -e "${BASE_DIR}" ] ; then
git clone --depth=1 https://github.com/F4HTB/Universal_HamRadio_Remote_HTML5.git
fi
apt-get install -y librtlsdr0
pip3 install pyrtlsdr

Wyświetl plik

@ -27,6 +27,8 @@ if [ "$1" == "start" ] ; then
touch /root/qtkmsconfig.json
mount -o bind,ro /root/qtkmsconfig.json /mnt/x6100/etc/qtkmsconfig.json
mount -o bind,ro /etc/timezone /mnt/x6100/etc/timezone
#mount -o bind,ro /usr/lib/arm-linux-gnueabihf/alsa-lib/libasound_module_pcm_pulse.so /mnt/x6100/usr/lib/alsa-lib/libasound_module_pcm_pulse.so
#mount -o bind,ro /root/asound_x6100_app.conf /mnt/x6100/etc/asound.conf

Wyświetl plik

@ -56,4 +56,6 @@ mount -o bind ${CAT_DEV_NEW} /mnt/x6100${CAT_DEV}
echo 1 > /sys/class/gpio/gpio138/value
chroot /mnt/x6100 /bin/bash -c 'source /etc/profile && nice --5 /usr/app_qt/x6100_ui_v100'
TZ=$(cat /etc/timezone)
chroot /mnt/x6100 /bin/bash -c "source /etc/profile && export TZ=${TZ} && nice --5 /usr/app_qt/x6100_ui_v100"