-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[buildsystem] add Dockerfile used for build container
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
FROM ubuntu:19.04 | ||
RUN echo "Europe/Berlin" > /etc/timezone | ||
RUN apt-get update -q | ||
RUN apt-get install tzdata | ||
RUN dpkg-reconfigure -f noninteractive tzdata | ||
RUN apt-get install -y -q \ | ||
wget \ | ||
git \ | ||
e2fsprogs \ | ||
mtools \ | ||
build-essential \ | ||
gcc-arm-linux-gnueabi \ | ||
libglib2.0-dev \ | ||
zlib1g-dev \ | ||
dh-autoreconf \ | ||
flex \ | ||
bison \ | ||
dosfstools \ | ||
bc \ | ||
boxes \ | ||
python \ | ||
qemu \ | ||
qemu-user-static \ | ||
binfmt-support \ | ||
openssl \ | ||
expect \ | ||
libssl-dev \ | ||
libelf-dev \ | ||
device-tree-compiler \ | ||
libpixman-1-dev \ | ||
rsync \ | ||
ncurses-dev \ | ||
kmod \ | ||
liblz4-tool \ | ||
gdb \ | ||
btrfs-progs | ||
COPY qemu-aarch64 /var/lib/binfmts | ||
COPY qemu-arm /var/lib/binfmts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
qemu-user-static | ||
magic | ||
0 | ||
\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00 | ||
\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff | ||
/usr/bin/qemu-aarch64-static | ||
|
||
yes | ||
|
||
yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
qemu-user-static | ||
magic | ||
0 | ||
\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00 | ||
\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff | ||
/usr/bin/qemu-arm-static | ||
|
||
yes | ||
|
||
yes |