#!/bin/bash -e on_chroot << EOF mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Radios" cd "/home/${FIRST_USER_NAME}/PiSDR/Radios" if [ ! -d "gr-limesdr" ]; then git clone https://github.com/myriadrf/gr-limesdr.git fi cd gr-limesdr git checkout gr-3.8 mkdir -p build cd build cmake -GNinja -DCMAKE_CXX_FLAGS=-latomic .. ninja install ldconfig EOF