blob: 11beaedf9b30c486edcb33acd3accb691ceaf733 [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 Rinie0c84c82024-08-21 09:41:20 -06005FROM ubuntu:jammy-20240808
Tom Rini92160da2024-08-19 15:07:19 -06006LABEL org.opencontainers.image.authors="Tom Rini <trini@konsulko.com>"
7LABEL org.opencontainers.image.description=" This image is for building U-Boot inside a container"
Tom Rini04549e92021-03-15 13:19:01 -04008
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 Rinie752a3a2024-03-10 15:59:28 -040015RUN echo deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main | tee /etc/apt/sources.list.d/llvm.list
Tom Rini04549e92021-03-15 13:19:01 -040016
Tom Rini3bd5ed72023-08-25 13:21:26 -040017# Manually install the kernel.org "Crosstool" based toolchains for gcc-13.2.0
18RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.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/13.2.0/x86_64-gcc-13.2.0-nolibc-arc-linux.tar.xz | tar -C /opt -xJ
20RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-arm-linux-gnueabi.tar.xz | tar -C /opt -xJ
21RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-i386-linux.tar.xz | tar -C /opt -xJ
22RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-m68k-linux.tar.xz | tar -C /opt -xJ
23RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-mips-linux.tar.xz | tar -C /opt -xJ
24RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-microblaze-linux.tar.xz | tar -C /opt -xJ
25RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-nios2-linux.tar.xz | tar -C /opt -xJ
26RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-powerpc-linux.tar.xz | tar -C /opt -xJ
27RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-riscv64-linux.tar.xz | tar -C /opt -xJ
28RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-riscv32-linux.tar.xz | tar -C /opt -xJ
29RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-sh2-linux.tar.xz | tar -C /opt -xJ
Tom Rinif3fb9cd2024-11-27 11:17:21 -060030RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-x86_64-linux.tar.xz | tar -C /opt -xJ
Tom Rini04549e92021-03-15 13:19:01 -040031
32# Manually install other toolchains
Tom Rini0a78bc32021-07-02 10:41:58 -040033RUN 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
Tom Rini04549e92021-03-15 13:19:01 -040034
35# Update and install things from apt now
36RUN apt-get update && apt-get install -y \
37 automake \
38 autopoint \
39 bc \
40 binutils-dev \
41 bison \
42 build-essential \
Simon Glassbe17cb32023-08-24 13:55:46 -060043 cgpt \
Tom Rinie752a3a2024-03-10 15:59:28 -040044 clang-17 \
Tom Rini04549e92021-03-15 13:19:01 -040045 coreutils \
46 cpio \
Tom Rini04549e92021-03-15 13:19:01 -040047 curl \
48 device-tree-compiler \
49 dosfstools \
50 e2fsprogs \
51 efitools \
Huang Jianan11e04432022-02-26 15:05:51 +080052 erofs-utils \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010053 expect \
Tom Rini04549e92021-03-15 13:19:01 -040054 fakeroot \
55 flex \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010056 gawk \
Tom Rini04549e92021-03-15 13:19:01 -040057 gdisk \
Tom Rini12248ed2024-11-27 11:17:23 -060058 gettext \
Tom Rini04549e92021-03-15 13:19:01 -040059 git \
60 gnu-efi \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010061 gnutls-dev \
Tom Rini04549e92021-03-15 13:19:01 -040062 graphviz \
63 grub-efi-amd64-bin \
64 grub-efi-ia32-bin \
65 help2man \
66 iasl \
67 imagemagick \
68 iputils-ping \
Tom Riniac6c3332023-01-11 12:24:57 -050069 libc6-i386 \
Bin Mengf551a532021-08-26 23:33:33 +080070 libconfuse-dev \
Tom Rinic8982d22021-06-10 10:57:36 -040071 libgit2-dev \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010072 libjson-glib-dev \
Tom Rini04549e92021-03-15 13:19:01 -040073 libguestfs-tools \
AKASHI Takahiro3edc3472022-02-01 10:32:36 +090074 libgnutls28-dev \
75 libgnutls30 \
Tom Rini04549e92021-03-15 13:19:01 -040076 liblz4-tool \
77 libpixman-1-dev \
Tom Rinic8982d22021-06-10 10:57:36 -040078 libpython3-dev \
Tom Rini04549e92021-03-15 13:19:01 -040079 libsdl1.2-dev \
80 libsdl2-dev \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010081 libseccomp-dev \
Tom Rini83da2322023-07-13 10:16:28 -040082 libslirp-dev \
Tom Rini04549e92021-03-15 13:19:01 -040083 libssl-dev \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010084 libtool \
Tom Rini04549e92021-03-15 13:19:01 -040085 libudev-dev \
86 libusb-1.0-0-dev \
Alper Nebi Yasak5d249e92021-06-21 21:51:54 +030087 linux-image-kvm \
Tom Rini04549e92021-03-15 13:19:01 -040088 lzma-alone \
89 lzop \
90 mount \
91 mtd-utils \
92 mtools \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +010093 net-tools \
Bin Meng00afccd2021-08-26 23:33:32 +080094 ninja-build \
Tom Rini04549e92021-03-15 13:19:01 -040095 openssl \
96 picocom \
97 parted \
98 pkg-config \
Tom Rinic8982d22021-06-10 10:57:36 -040099 python-is-python3 \
100 python2.7 \
101 python3 \
102 python3-dev \
Tom Rini04549e92021-03-15 13:19:01 -0400103 python3-pip \
Simon Glassb955cd22022-10-13 06:25:57 -0600104 python3-pyelftools \
Tom Rini04549e92021-03-15 13:19:01 -0400105 python3-sphinx \
Tom Rinic8982d22021-06-10 10:57:36 -0400106 python3-virtualenv \
Tom Rini04549e92021-03-15 13:19:01 -0400107 rpm2cpio \
108 sbsigntool \
Heinrich Schuchardt4e202672021-11-09 19:51:20 +0100109 socat \
110 softhsm2 \
Tom Rini04549e92021-03-15 13:19:01 -0400111 sparse \
112 srecord \
113 sudo \
114 swig \
Heinrich Schuchardtc2c98ea2022-12-30 05:41:01 +0100115 texinfo \
Tom Rini04549e92021-03-15 13:19:01 -0400116 util-linux \
117 uuid-dev \
118 virtualenv \
Simon Glassbe17cb32023-08-24 13:55:46 -0600119 vboot-kernel-utils \
120 vboot-utils \
Heinrich Schuchardt905d0752024-02-28 08:23:09 +0100121 xilinx-bootgen \
Tom Rini0a78bc32021-07-02 10:41:58 -0400122 xxd \
Tom Rini04549e92021-03-15 13:19:01 -0400123 zip \
124 && rm -rf /var/lib/apt/lists/*
125
Alper Nebi Yasak5d249e92021-06-21 21:51:54 +0300126# Make kernels readable for libguestfs tools to work correctly
127RUN chmod +r /boot/vmlinu*
128
Tom Rini04549e92021-03-15 13:19:01 -0400129# Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit
130RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
131 cd /tmp/grub && \
Tom Rini12248ed2024-11-27 11:17:23 -0600132 git checkout grub-2.12 && \
Tom Rini77d48f12022-11-22 12:31:58 -0500133 git config --global user.name "GitLab CI Runner" && \
134 git config --global user.email trini@konsulko.com && \
Tom Rini04549e92021-03-15 13:19:01 -0400135 ./bootstrap && \
136 mkdir -p /opt/grub && \
137 ./configure --target=aarch64 --with-platform=efi \
138 CC=gcc \
Tom Rini3bd5ed72023-08-25 13:21:26 -0400139 TARGET_CC=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc \
140 TARGET_OBJCOPY=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy \
141 TARGET_STRIP=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-strip \
142 TARGET_NM=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-nm \
143 TARGET_RANLIB=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib && \
Tom Rini4bac0392024-11-27 11:17:22 -0600144 make -j$(nproc) && \
Tom Rini04549e92021-03-15 13:19:01 -0400145 ./grub-mkimage -O arm64-efi -o /opt/grub/grubaa64.efi --prefix= -d \
146 grub-core cat chain configfile echo efinet ext2 fat halt help linux \
147 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
148 search search_fs_file search_fs_uuid search_label serial sleep test \
149 true && \
150 make clean && \
151 ./configure --target=arm --with-platform=efi \
152 CC=gcc \
Tom Rini3bd5ed72023-08-25 13:21:26 -0400153 TARGET_CC=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc \
154 TARGET_OBJCOPY=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy \
155 TARGET_STRIP=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip \
156 TARGET_NM=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm \
157 TARGET_RANLIB=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib && \
Tom Rini4bac0392024-11-27 11:17:22 -0600158 make -j$(nproc) && \
Tom Rini04549e92021-03-15 13:19:01 -0400159 ./grub-mkimage -O arm-efi -o /opt/grub/grubarm.efi --prefix= -d \
160 grub-core cat chain configfile echo efinet ext2 fat halt help linux \
161 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
162 search search_fs_file search_fs_uuid search_label serial sleep test \
163 true && \
164 make clean && \
165 ./configure --target=riscv64 --with-platform=efi \
166 CC=gcc \
Tom Rini3bd5ed72023-08-25 13:21:26 -0400167 TARGET_CC=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc \
168 TARGET_OBJCOPY=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy \
169 TARGET_STRIP=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-strip \
170 TARGET_NM=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-nm \
171 TARGET_RANLIB=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib && \
Tom Rini4bac0392024-11-27 11:17:22 -0600172 make -j$(nproc) && \
Tom Rini04549e92021-03-15 13:19:01 -0400173 ./grub-mkimage -O riscv64-efi -o /opt/grub/grubriscv64.efi --prefix= -d \
174 grub-core cat chain configfile echo efinet ext2 fat halt help linux \
175 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
176 search search_fs_file search_fs_uuid search_label serial sleep test \
177 true && \
Tom Rini04549e92021-03-15 13:19:01 -0400178 rm -rf /tmp/grub
179
Tom Rinib60c1d72023-02-07 12:50:13 -0500180RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \
Tom Rini04549e92021-03-15 13:19:01 -0400181 cd /tmp/qemu && \
Heinrich Schuchardt24069c22024-01-12 03:17:57 +0100182 git checkout v8.2.0 && \
Bin Meng00afccd2021-08-26 23:33:32 +0800183 # config user.name and user.email to make 'git am' happy
184 git config user.name u-boot && \
185 git config user.email u-boot@denx.de && \
Heinrich Schuchardt24069c22024-01-12 03:17:57 +0100186 git format-patch 0c7ffc977195~..0c7ffc977195 && \
187 git am 0001-hw-net-cadence_gem-Fix-MDIO_OP_xxx-values.patch && \
Tom Rini139e9952024-03-11 10:02:43 -0400188 git cherry-pick d3c79c3974 && \
Tom Rini26a41832023-03-21 15:28:00 -0400189 ./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,m68k-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv32-softmmu,riscv64-softmmu,sh4-softmmu,x86_64-softmmu,xtensa-softmmu" && \
Tom Rini04549e92021-03-15 13:19:01 -0400190 make -j$(nproc) all install && \
191 rm -rf /tmp/qemu
192
Heinrich Schuchardt2b4a6562024-02-28 08:43:11 +0100193# Build fiptool
194RUN git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git /tmp/tf-a && \
195 cd /tmp/tf-a/ && \
196 git checkout v2.10.0 && \
197 cd tools/fiptool && \
Tom Rini4bac0392024-11-27 11:17:22 -0600198 make -j$(nproc) && \
Heinrich Schuchardt2b4a6562024-02-28 08:43:11 +0100199 mkdir -p /usr/local/bin && \
200 cp fiptool /usr/local/bin && \
201 rm -rf /tmp/tf-a
202
Bin Mengf551a532021-08-26 23:33:33 +0800203# Build genimage (required by some targets to generate disk images)
204RUN wget -O - https://github.com/pengutronix/genimage/releases/download/v14/genimage-14.tar.xz | tar -C /tmp -xJ && \
205 cd /tmp/genimage-14 && \
206 ./configure && \
207 make -j$(nproc) && \
208 make install && \
209 rm -rf /tmp/genimage-14
210
Heinrich Schuchardt4e202672021-11-09 19:51:20 +0100211# Build libtpms
212RUN git clone https://github.com/stefanberger/libtpms /tmp/libtpms && \
213 cd /tmp/libtpms && \
214 ./autogen.sh && \
215 ./configure && \
216 make -j$(nproc) && \
217 make install && \
218 ldconfig && \
219 rm -rf /tmp/libtpms
220
221# Build swtpm
222RUN git clone https://github.com/stefanberger/swtpm /tmp/swtpm && \
223 cd /tmp/swtpm && \
224 ./autogen.sh && \
225 ./configure && \
226 make -j$(nproc) && \
227 make install && \
228 rm -rf /tmp/swtpm
229
Simon Glass523cb6d2023-01-15 14:15:59 -0700230# Build trace-cmd
231RUN mkdir /tmp/trace && \
232 git clone https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git /tmp/trace/libtraceevent && \
233 cd /tmp/trace/libtraceevent && \
234 make -j$(nproc) && \
235 sudo make install && \
236 git clone https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git /tmp/trace/libtracefs && \
237 cd /tmp/trace/libtracefs && \
238 make -j$(nproc) && \
239 sudo make install && \
240 git clone https://github.com/rostedt/trace-cmd.git /tmp/trace/trace-cmd && \
241 cd /tmp/trace/trace-cmd && \
242 make -j$(nproc) && \
243 sudo make install && \
244 rm -rf /tmp/trace
245
Tom Rini9e2b09e2024-02-13 09:39:26 -0500246# Build coreboot
Simon Glass78b9c8a2024-10-14 16:32:05 -0600247RUN wget -O - https://coreboot.org/releases/coreboot-24.08.tar.xz | tar -C /tmp -xJ && \
248 cd /tmp/coreboot-24.08 && \
Tom Rini9e2b09e2024-02-13 09:39:26 -0500249 make crossgcc-i386 CPUS=$(nproc) && \
250 make -C payloads/coreinfo olddefconfig && \
251 make -C payloads/coreinfo && \
252 make olddefconfig && \
Simon Glass78b9c8a2024-10-14 16:32:05 -0600253 echo CONFIG_GENERIC_LINEAR_FRAMEBUFFER=y | tee -a .config && \
254 echo CONFIG_USE_OPTION_TABLE=y | tee -a .config && \
255 make olddefconfig && \
Tom Rini9e2b09e2024-02-13 09:39:26 -0500256 make -j $(nproc) && \
257 sudo mkdir /opt/coreboot && \
258 sudo cp build/coreboot.rom build/cbfstool /opt/coreboot/
259
Tom Rini04549e92021-03-15 13:19:01 -0400260# Create our user/group
261RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot
262RUN useradd -m -U uboot
263USER uboot:uboot
264
Tom Rini54573e02023-03-23 14:57:58 -0400265# Populate the cache for pip to use. Get these via wget as the
266# COPY / ADD directives don't work as we need them to.
267RUN wget -O /tmp/pytest-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/test/py/requirements.txt
268RUN wget -O /tmp/sphinx-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/doc/sphinx/requirements.txt
Tom Rini763160f2024-01-18 12:10:07 -0500269RUN wget -O /tmp/buildman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/buildman/requirements.txt
Tom Rini54573e02023-03-23 14:57:58 -0400270RUN virtualenv -p /usr/bin/python3 /tmp/venv && \
271 . /tmp/venv/bin/activate && \
272 pip install -r /tmp/pytest-requirements.txt \
Tom Rini763160f2024-01-18 12:10:07 -0500273 -r /tmp/sphinx-requirements.txt \
274 -r /tmp/buildman-requirements.txt && \
Tom Rini54573e02023-03-23 14:57:58 -0400275 deactivate && \
Tom Rini763160f2024-01-18 12:10:07 -0500276 rm -rf /tmp/venv /tmp/*-requirements.txt
Tom Rini54573e02023-03-23 14:57:58 -0400277
Tom Rini04549e92021-03-15 13:19:01 -0400278# Create the buildman config file
279RUN /bin/echo -e "[toolchain]\nroot = /usr" > ~/.buildman
Tom Rini3bd5ed72023-08-25 13:21:26 -0400280RUN /bin/echo -e "kernelorg = /opt/gcc-13.2.0-nolibc/*" >> ~/.buildman
Tom Rini0a78bc32021-07-02 10:41:58 -0400281RUN /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 -0400282RUN /bin/echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
Tom Rini04549e92021-03-15 13:19:01 -0400283RUN /bin/echo -e "\nx86 = i386" >> ~/.buildman;
Safae Ouajihaaa366f2023-02-06 00:50:21 +0100284
285# Add mkbootimg tool
286RUN git clone https://android.googlesource.com/platform/system/tools/mkbootimg /home/uboot/mkbootimg
287ENV PYTHONPATH "${PYTHONPATH}:/home/uboot/mkbootimg"