Skip to content
Gordon Maclean edited this page Oct 28, 2020 · 2 revisions

Adding embedded-daq packages to EOL Debian and Ubuntu repositories

This assumes that nidas and embedded-daq git trees have been cloned into the same directory. In that case the run_docker.sh script will mount both the nidas and embedded-daq directories to the docker container.

To install in bionic repo for i386

cd embedded-daq
git pull
../nidas/scripts/run_docker.sh bionic
# within container
cd embedded-daq
cd ads-daq
./build_dpkg.sh -I bionic
# you will be prompted for the eol-prog gpg key passphrase
cd ../eol-daq
./build_dpkg.sh -I bionic
exit

To install in jessie repo for armel

cd embedded-daq
git pull
../nidas/scripts/run_docker.sh armel
# within container
cd embedded-daq
cd ads-daq
./build_dpkg.sh -I jessie
# you will be prompted for the eol-prog gpg key passphrase
cd ../eol-daq
./build_dpkg.sh -I jessie
exit