blob: 82312e9324d98be93a648da535dfc96ff8dd242d [file] [log] [blame]
Tom Rini04549e92021-03-15 13:19:01 -04001# SPDX-License-Identifier: GPL-2.0+
2# This Dockerfile is used to build an image containing basic stuff to be used
3# to build U-Boot and run our test suites.
4
Tom Rinib6a78cf2021-09-11 10:36:48 -04005FROM ubuntu:focal-20210827
Tom Rini04549e92021-03-15 13:19:01 -04006MAINTAINER Tom Rini <trini@konsulko.com>
7LABEL Description=" This image is for building U-Boot inside a container"
8
9# Make sure apt is happy
10ENV DEBIAN_FRONTEND=noninteractive
11
12# Add LLVM repository
13RUN apt-get update && apt-get install -y gnupg2 wget xz-utils && rm -rf /var/lib/apt/lists/*
14RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
Tom Rinid776e8f2021-07-15 14:24:25 -040015RUN echo deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main | tee /etc/apt/sources.list.d/llvm.list
Tom Rini04549e92021-03-15 13:19:01 -040016
Tom Rini0a78bc32021-07-02 10:41:58 -040017# Manually install the kernel.org "Crosstool" based toolchains for gcc-11.1.0
18RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-aarch64-linux.tar.xz | tar -C /opt -xJ
19RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-arm-linux-gnueabi.tar.xz | tar -C /opt -xJ
20RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-i386-linux.tar.xz | tar -C /opt -xJ
21RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-m68k-linux.tar.xz | tar -C /opt -xJ
22RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-mips-linux.tar.xz | tar -C /opt -xJ
23RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-microblaze-linux.tar.xz | tar -C /opt -xJ
24RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-nios2-linux.tar.xz | tar -C /opt -xJ
25RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-powerpc-linux.tar.xz | tar -C /opt -xJ
26RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-riscv64-linux.tar.xz | tar -C /opt -xJ
27RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.1.0/x86_64-gcc-11.1.0-nolibc-sh2-linux.tar.xz | tar -C /opt -xJ
Tom Rini04549e92021-03-15 13:19:01 -040028
29# Manually install other toolchains
Tom Rini0a78bc32021-07-02 10:41:58 -040030RUN wget -O - https://github.com/foss-xtensa/toolchain/releases/download/2020.07/x86_64-2020.07-xtensa-dc233c-elf.tar.gz | tar -C /opt -xz
31RUN wget -O - https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/download/arc-2021.03-release/arc_gnu_2021.03_prebuilt_uclibc_le_archs_linux_install.tar.gz | tar --no-same-owner -C /opt -xz
Tom Rini04549e92021-03-15 13:19:01 -040032RUN wget -O - https://github.com/vincentzwc/prebuilt-nds32-toolchain/releases/download/20180521/nds32le-linux-glibc-v3-upstream.tar.gz | tar -C /opt -xz
33
34# Update and install things from apt now
35RUN apt-get update && apt-get install -y \
36 automake \
37 autopoint \
38 bc \
39 binutils-dev \
40 bison \
41 build-essential \
Tom Rinid776e8f2021-07-15 14:24:25 -040042 clang-12 \
Tom Rini04549e92021-03-15 13:19:01 -040043 coreutils \
44 cpio \
45 cppcheck \
46 curl \
47 device-tree-compiler \
48 dosfstools \
49 e2fsprogs \
50 efitools \
51 fakeroot \
52 flex \
53 gdisk \
54 git \
55 gnu-efi \
56 graphviz \
57 grub-efi-amd64-bin \
58 grub-efi-ia32-bin \
59 help2man \
60 iasl \
61 imagemagick \
62 iputils-ping \
Tom Rinic8982d22021-06-10 10:57:36 -040063 libgit2-dev \
Tom Rini04549e92021-03-15 13:19:01 -040064 libguestfs-tools \
Tom Rini04549e92021-03-15 13:19:01 -040065 liblz4-tool \
66 libpixman-1-dev \
Tom Rinic8982d22021-06-10 10:57:36 -040067 libpython3-dev \
Tom Rini04549e92021-03-15 13:19:01 -040068 libsdl1.2-dev \
69 libsdl2-dev \
70 libssl-dev \
71 libudev-dev \
72 libusb-1.0-0-dev \
Alper Nebi Yasak5d249e92021-06-21 21:51:54 +030073 linux-image-kvm \
Tom Rini04549e92021-03-15 13:19:01 -040074 lzma-alone \
75 lzop \
76 mount \
77 mtd-utils \
78 mtools \
Bin Meng00afccd2021-08-26 23:33:32 +080079 ninja-build \
Tom Rini04549e92021-03-15 13:19:01 -040080 openssl \
81 picocom \
82 parted \
83 pkg-config \
Tom Rinic8982d22021-06-10 10:57:36 -040084 python-is-python3 \
85 python2.7 \
86 python3 \
87 python3-dev \
Tom Rini04549e92021-03-15 13:19:01 -040088 python3-pip \
89 python3-sphinx \
Tom Rinic8982d22021-06-10 10:57:36 -040090 python3-virtualenv \
Tom Rini04549e92021-03-15 13:19:01 -040091 rpm2cpio \
92 sbsigntool \
93 sloccount \
94 sparse \
95 srecord \
96 sudo \
97 swig \
98 util-linux \
99 uuid-dev \
100 virtualenv \
Tom Rini0a78bc32021-07-02 10:41:58 -0400101 xxd \
Tom Rini04549e92021-03-15 13:19:01 -0400102 zip \
103 && rm -rf /var/lib/apt/lists/*
104
Alper Nebi Yasak5d249e92021-06-21 21:51:54 +0300105# Make kernels readable for libguestfs tools to work correctly
106RUN chmod +r /boot/vmlinu*
107
Tom Rini04549e92021-03-15 13:19:01 -0400108# Manually install a new enough version of sbsigntools (must be v0.9.4 or later)
109RUN git clone https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git /tmp/sbsigntools && \
110 cd /tmp/sbsigntools && \
111 git checkout -b latest v0.9.4 && \
112 ./autogen.sh && \
113 ./configure && \
114 make && \
115 make install && \
116 rm -rf /tmp/sbsigntools
117
118# Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit
119RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
120 cd /tmp/grub && \
Tom Rini0a78bc32021-07-02 10:41:58 -0400121 git checkout grub-2.06 && \
Tom Rini04549e92021-03-15 13:19:01 -0400122 ./bootstrap && \
123 mkdir -p /opt/grub && \
124 ./configure --target=aarch64 --with-platform=efi \
125 CC=gcc \
Tom Rini0a78bc32021-07-02 10:41:58 -0400126 TARGET_CC=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc \
127 TARGET_OBJCOPY=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy \
128 TARGET_STRIP=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-strip \
129 TARGET_NM=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-nm \
130 TARGET_RANLIB=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib && \
Tom Rini04549e92021-03-15 13:19:01 -0400131 make && \
132 ./grub-mkimage -O arm64-efi -o /opt/grub/grubaa64.efi --prefix= -d \
133 grub-core cat chain configfile echo efinet ext2 fat halt help linux \
134 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
135 search search_fs_file search_fs_uuid search_label serial sleep test \
136 true && \
137 make clean && \
138 ./configure --target=arm --with-platform=efi \
139 CC=gcc \
Tom Rini0a78bc32021-07-02 10:41:58 -0400140 TARGET_CC=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc \
141 TARGET_OBJCOPY=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy \
142 TARGET_STRIP=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip \
143 TARGET_NM=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm \
144 TARGET_RANLIB=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib && \
Tom Rini04549e92021-03-15 13:19:01 -0400145 make && \
146 ./grub-mkimage -O arm-efi -o /opt/grub/grubarm.efi --prefix= -d \
147 grub-core cat chain configfile echo efinet ext2 fat halt help linux \
148 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
149 search search_fs_file search_fs_uuid search_label serial sleep test \
150 true && \
151 make clean && \
152 ./configure --target=riscv64 --with-platform=efi \
153 CC=gcc \
Tom Rini0a78bc32021-07-02 10:41:58 -0400154 TARGET_CC=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc \
155 TARGET_OBJCOPY=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy \
156 TARGET_STRIP=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-strip \
157 TARGET_NM=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-nm \
158 TARGET_RANLIB=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib && \
Tom Rini04549e92021-03-15 13:19:01 -0400159 make && \
160 ./grub-mkimage -O riscv64-efi -o /opt/grub/grubriscv64.efi --prefix= -d \
161 grub-core cat chain configfile echo efinet ext2 fat halt help linux \
162 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
163 search search_fs_file search_fs_uuid search_label serial sleep test \
164 true && \
Tom Rini04549e92021-03-15 13:19:01 -0400165 rm -rf /tmp/grub
166
167RUN git clone git://git.qemu.org/qemu.git /tmp/qemu && \
168 cd /tmp/qemu && \
169 git submodule update --init dtc && \
Bin Meng00afccd2021-08-26 23:33:32 +0800170 git checkout v6.1.0 && \
171 # config user.name and user.email to make 'git am' happy
172 git config user.name u-boot && \
173 git config user.email u-boot@denx.de && \
174 # manually apply the bug fix for QEMU 6.1.0 Xilinx Zynq UART emulation codes
175 wget -O - http://patchwork.ozlabs.org/project/qemu-devel/patch/20210823020813.25192-2-bmeng.cn@gmail.com/mbox/ | git am && \
Tom Rini04549e92021-03-15 13:19:01 -0400176 ./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv32-softmmu,riscv64-softmmu,sh4-softmmu,x86_64-softmmu,xtensa-softmmu" && \
177 make -j$(nproc) all install && \
178 rm -rf /tmp/qemu
179
180# Create our user/group
181RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot
182RUN useradd -m -U uboot
183USER uboot:uboot
184
185# Create the buildman config file
186RUN /bin/echo -e "[toolchain]\nroot = /usr" > ~/.buildman
Tom Rini0a78bc32021-07-02 10:41:58 -0400187RUN /bin/echo -e "kernelorg = /opt/gcc-11.1.0-nolibc/*" >> ~/.buildman
188RUN /bin/echo -e "arc = /opt/arc_gnu_2021.03_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman
189RUN /bin/echo -e "\n[toolchain-prefix]\nxtensa = /opt/2020.07/xtensa-dc233c-elf/bin/xtensa-dc233c-elf-" >> ~/.buildman;
Tom Rini04549e92021-03-15 13:19:01 -0400190RUN /bin/echo -e "\nnds32 = /opt/nds32le-linux-glibc-v3-upstream/bin/nds32le-linux-" >> ~/.buildman;
191RUN /bin/echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
192RUN /bin/echo -e "\nriscv = riscv64" >> ~/.buildman
193RUN /bin/echo -e "\nsandbox = x86_64" >> ~/.buildman
194RUN /bin/echo -e "\nx86 = i386" >> ~/.buildman;