mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
bb78c779ca
Gets rid of compiled C++, uses Ruby 💎
82 lines
3.4 KiB
Docker
82 lines
3.4 KiB
Docker
## SPDX-License-Identifier: MIT OR Apache-2.0
|
|
##
|
|
## Copyright (c) 2017-2020 Andre Richter <andre.o.richter@gmail.com>
|
|
## Copyright (c) 2019-2020 Nao Taco <naotaco@gmail.com>
|
|
FROM ubuntu:19.10
|
|
|
|
ARG VCS_REF
|
|
|
|
LABEL org.label-schema.vcs-ref=$VCS_REF \
|
|
org.label-schema.vcs-url="https://github.com/rust-embedded/rust-raspi3-OS-tutorials"
|
|
|
|
LABEL maintainer="The resources team <resources@teams.rust-embedded.org>, Andre Richter <andre.o.richter@gmail.com>"
|
|
|
|
# Ruby gems
|
|
COPY Gemfile .
|
|
|
|
RUN set -ex; \
|
|
tempPkgs=' \
|
|
automake \
|
|
build-essential \
|
|
git \
|
|
libtool \
|
|
pkg-config \
|
|
wget \
|
|
'; \
|
|
apt-get update; \
|
|
apt-get install -q -y --no-install-recommends \
|
|
$tempPkgs \
|
|
# persistent packages
|
|
ca-certificates \
|
|
gdb-multiarch \
|
|
libpixman-1-dev \
|
|
libglib2.0-dev \
|
|
libusb-1.0.0-dev \
|
|
locales \
|
|
python \
|
|
ruby \
|
|
ruby-dev \
|
|
; \
|
|
# Ruby dependencies
|
|
gem install bundler; \
|
|
bundle install --retry 3 --without development; \
|
|
# QEMU
|
|
git clone git://git.qemu.org/qemu.git; \
|
|
cd qemu; \
|
|
git checkout tags/v4.2.0; \
|
|
./configure --target-list=aarch64-softmmu --enable-modules \
|
|
--enable-tcg-interpreter --enable-debug-tcg \
|
|
--python=/usr/bin/python2.7; \
|
|
make; \
|
|
make install; \
|
|
cd ..; \
|
|
rm -rf qemu; \
|
|
# Openocd
|
|
git clone --depth 1 https://git.code.sf.net/p/openocd/code openocd; \
|
|
cd openocd; \
|
|
./bootstrap; \
|
|
./configure --enable-ftdi; \
|
|
make; \
|
|
make install; \
|
|
# GDB
|
|
wget -P ~ git.io/.gdbinit; \
|
|
# Cleanup
|
|
apt-get purge -y --auto-remove $tempPkgs; \
|
|
apt-get autoremove -q -y; \
|
|
apt-get clean -q -y; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Locales
|
|
RUN locale-gen en_US.UTF-8
|
|
|
|
ENV LANG=en_US.UTF-8 \
|
|
LANGUAGE=en_US:en \
|
|
LC_ALL=en_US.UTF-8
|
|
|
|
# Openocd
|
|
COPY rpi3.cfg /openocd/
|
|
COPY rpi4.cfg /openocd/
|
|
|
|
# GDB
|
|
COPY auto /root/.gdbinit.d/auto
|