Skip to content

Commit

Permalink
Update crosstools
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksejZhmulin committed Mar 27, 2024
1 parent 5abf327 commit e536526
Showing 1 changed file with 55 additions and 10 deletions.
65 changes: 55 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,38 @@

FROM embox/emdocker as build
FROM ubuntu:16.04
MAINTAINER Anton Kozlov <drakon.mega@gmail.com>

# Container utils
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \
sudo \
iptables \
openssh-server \
iproute2 \
bzip2 \
unzip \
xz-utils \
python \
curl \
make \
patch \
cpio \
gcc-multilib \
g++-multilib \
gdb \
qemu-system \
ruby \
bison \
flex \
bc \
autoconf \
pkg-config \
mtd-utils \
ntfs-3g \
autotools-dev \
automake \
xutils-dev \
libtool && \
nfs-kernel-server \
nfs-common \
samba \
Expand All @@ -25,10 +55,33 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt /var/cache/apt

## arm crosscompiler
## NOTE use insecure connection (-k) to avoid troubles with outdated local certificates
## another option is to update certificates (i.e. from https://curl.haxx.se/docs/caextract.html) and provide the file with --cacert
RUN curl -k -L "https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2" | \
tar -jxC /opt

## aarch64 crosscompiler
RUN curl -k -L "https://developer.arm.com/-/media/Files/downloads/gnu-a/8.3-2019.03/binrel/gcc-arm-8.3-2019.03-x86_64-aarch64-elf.tar.xz" | \
tar -xJC /opt

## risc-v crosscompiler
RUN curl -k -L -s "https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.2.0-2019.05.3-x86_64-linux-ubuntu14.tar.gz" | \
tar -xzC /opt

## other crosscompilers
RUN for a in microblaze mips powerpc sparc; do \
curl -k -L "https://github.com/embox/crosstool/releases/download/2.42-13.2.0-14.2/$a-elf-toolchain.tar.bz2" | \
tar -jxC /opt; \
done

RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers

## x86/test/fs
RUN for i in $(seq 0 9); do \
mknod /dev/loop$i -m0660 b 7 $i; \
done

# x86/test/fs nfs
RUN mkdir -p -m 777 /var/nfs_test
COPY exports /etc/
Expand All @@ -44,11 +97,6 @@ COPY ntp.conf /etc/
RUN useradd -u 65534 -o -ms /bin/bash rlogin_user
RUN /bin/echo -e "rlogin\nrlogin" | passwd rlogin_user

FROM scratch
MAINTAINER Anton Kozlov <drakon.mega@gmail.com>

COPY --from=build / /

ENV PATH=$PATH:\
/opt/gcc-arm-none-eabi-6-2017-q2-update/bin:\
/opt/gcc-arm-8.3-2019.03-x86_64-aarch64-elf/bin:\
Expand All @@ -64,7 +112,4 @@ CMD mount -t tmpfs none /var/nfs_test && \
/etc/init.d/nmbd restart && \
/etc/init.d/smbd restart && \
/etc/init.d/ntp restart && \
inetd && \
/usr/local/sbin/docker_start.sh


inetd

0 comments on commit e536526

Please sign in to comment.