Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 1 | # 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 Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame^] | 5 | FROM ubuntu:jammy-20220801 |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 6 | MAINTAINER Tom Rini <trini@konsulko.com> |
| 7 | LABEL Description=" This image is for building U-Boot inside a container" |
| 8 | |
| 9 | # Make sure apt is happy |
| 10 | ENV DEBIAN_FRONTEND=noninteractive |
| 11 | |
| 12 | # Add LLVM repository |
| 13 | RUN apt-get update && apt-get install -y gnupg2 wget xz-utils && rm -rf /var/lib/apt/lists/* |
| 14 | RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - |
Tom Rini | b6d4e08 | 2022-08-09 21:08:54 -0400 | [diff] [blame^] | 15 | RUN echo deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-13 main | tee /etc/apt/sources.list.d/llvm.list |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 16 | |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 17 | # Manually install the kernel.org "Crosstool" based toolchains for gcc-11.1.0 |
| 18 | RUN 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 |
| 19 | RUN 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 |
| 20 | RUN 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 |
| 21 | RUN 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 |
| 22 | RUN 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 |
| 23 | RUN 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 |
| 24 | RUN 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 |
| 25 | RUN 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 |
| 26 | RUN 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 |
| 27 | RUN 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 Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 28 | |
| 29 | # Manually install other toolchains |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 30 | RUN 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 |
| 31 | RUN 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 Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 32 | |
| 33 | # Update and install things from apt now |
| 34 | RUN apt-get update && apt-get install -y \ |
| 35 | automake \ |
| 36 | autopoint \ |
| 37 | bc \ |
| 38 | binutils-dev \ |
| 39 | bison \ |
| 40 | build-essential \ |
Tom Rini | 927e0ee | 2021-10-05 13:51:38 -0400 | [diff] [blame] | 41 | clang-13 \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 42 | coreutils \ |
| 43 | cpio \ |
| 44 | cppcheck \ |
| 45 | curl \ |
| 46 | device-tree-compiler \ |
| 47 | dosfstools \ |
| 48 | e2fsprogs \ |
| 49 | efitools \ |
Huang Jianan | 2c30aa3 | 2022-02-26 15:05:51 +0800 | [diff] [blame] | 50 | erofs-utils \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 51 | expect \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 52 | fakeroot \ |
| 53 | flex \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 54 | gawk \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 55 | gdisk \ |
| 56 | git \ |
| 57 | gnu-efi \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 58 | gnutls-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 59 | graphviz \ |
| 60 | grub-efi-amd64-bin \ |
| 61 | grub-efi-ia32-bin \ |
| 62 | help2man \ |
| 63 | iasl \ |
| 64 | imagemagick \ |
| 65 | iputils-ping \ |
Bin Meng | 3283a05 | 2021-08-26 23:33:33 +0800 | [diff] [blame] | 66 | libconfuse-dev \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 67 | libgit2-dev \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 68 | libjson-glib-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 69 | libguestfs-tools \ |
AKASHI Takahiro | ad3616e | 2022-02-01 10:32:36 +0900 | [diff] [blame] | 70 | libgnutls28-dev \ |
| 71 | libgnutls30 \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 72 | liblz4-tool \ |
| 73 | libpixman-1-dev \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 74 | libpython3-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 75 | libsdl1.2-dev \ |
| 76 | libsdl2-dev \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 77 | libseccomp-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 78 | libssl-dev \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 79 | libtool \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 80 | libudev-dev \ |
| 81 | libusb-1.0-0-dev \ |
Alper Nebi Yasak | f9abaa5 | 2021-06-21 21:51:54 +0300 | [diff] [blame] | 82 | linux-image-kvm \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 83 | lzma-alone \ |
| 84 | lzop \ |
| 85 | mount \ |
| 86 | mtd-utils \ |
| 87 | mtools \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 88 | net-tools \ |
Bin Meng | a30e53c | 2021-08-26 23:33:32 +0800 | [diff] [blame] | 89 | ninja-build \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 90 | openssl \ |
| 91 | picocom \ |
| 92 | parted \ |
| 93 | pkg-config \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 94 | python-is-python3 \ |
| 95 | python2.7 \ |
| 96 | python3 \ |
| 97 | python3-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 98 | python3-pip \ |
| 99 | python3-sphinx \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 100 | python3-virtualenv \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 101 | rpm2cpio \ |
| 102 | sbsigntool \ |
| 103 | sloccount \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 104 | socat \ |
| 105 | softhsm2 \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 106 | sparse \ |
| 107 | srecord \ |
| 108 | sudo \ |
| 109 | swig \ |
| 110 | util-linux \ |
| 111 | uuid-dev \ |
| 112 | virtualenv \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 113 | xxd \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 114 | zip \ |
| 115 | && rm -rf /var/lib/apt/lists/* |
| 116 | |
Alper Nebi Yasak | f9abaa5 | 2021-06-21 21:51:54 +0300 | [diff] [blame] | 117 | # Make kernels readable for libguestfs tools to work correctly |
| 118 | RUN chmod +r /boot/vmlinu* |
| 119 | |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 120 | # Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit |
| 121 | RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \ |
| 122 | cd /tmp/grub && \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 123 | git checkout grub-2.06 && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 124 | ./bootstrap && \ |
| 125 | mkdir -p /opt/grub && \ |
| 126 | ./configure --target=aarch64 --with-platform=efi \ |
| 127 | CC=gcc \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 128 | TARGET_CC=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc \ |
| 129 | TARGET_OBJCOPY=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy \ |
| 130 | TARGET_STRIP=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-strip \ |
| 131 | TARGET_NM=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-nm \ |
| 132 | TARGET_RANLIB=/opt/gcc-11.1.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 133 | make && \ |
| 134 | ./grub-mkimage -O arm64-efi -o /opt/grub/grubaa64.efi --prefix= -d \ |
| 135 | grub-core cat chain configfile echo efinet ext2 fat halt help linux \ |
| 136 | lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \ |
| 137 | search search_fs_file search_fs_uuid search_label serial sleep test \ |
| 138 | true && \ |
| 139 | make clean && \ |
| 140 | ./configure --target=arm --with-platform=efi \ |
| 141 | CC=gcc \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 142 | TARGET_CC=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc \ |
| 143 | TARGET_OBJCOPY=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy \ |
| 144 | TARGET_STRIP=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip \ |
| 145 | TARGET_NM=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm \ |
| 146 | TARGET_RANLIB=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 147 | make && \ |
| 148 | ./grub-mkimage -O arm-efi -o /opt/grub/grubarm.efi --prefix= -d \ |
| 149 | grub-core cat chain configfile echo efinet ext2 fat halt help linux \ |
| 150 | lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \ |
| 151 | search search_fs_file search_fs_uuid search_label serial sleep test \ |
| 152 | true && \ |
| 153 | make clean && \ |
| 154 | ./configure --target=riscv64 --with-platform=efi \ |
| 155 | CC=gcc \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 156 | TARGET_CC=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc \ |
| 157 | TARGET_OBJCOPY=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy \ |
| 158 | TARGET_STRIP=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-strip \ |
| 159 | TARGET_NM=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-nm \ |
| 160 | TARGET_RANLIB=/opt/gcc-11.1.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 161 | make && \ |
| 162 | ./grub-mkimage -O riscv64-efi -o /opt/grub/grubriscv64.efi --prefix= -d \ |
| 163 | grub-core cat chain configfile echo efinet ext2 fat halt help linux \ |
| 164 | lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \ |
| 165 | search search_fs_file search_fs_uuid search_label serial sleep test \ |
| 166 | true && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 167 | rm -rf /tmp/grub |
| 168 | |
| 169 | RUN git clone git://git.qemu.org/qemu.git /tmp/qemu && \ |
| 170 | cd /tmp/qemu && \ |
| 171 | git submodule update --init dtc && \ |
Bin Meng | a30e53c | 2021-08-26 23:33:32 +0800 | [diff] [blame] | 172 | git checkout v6.1.0 && \ |
| 173 | # config user.name and user.email to make 'git am' happy |
| 174 | git config user.name u-boot && \ |
| 175 | git config user.email u-boot@denx.de && \ |
| 176 | # manually apply the bug fix for QEMU 6.1.0 Xilinx Zynq UART emulation codes |
| 177 | wget -O - http://patchwork.ozlabs.org/project/qemu-devel/patch/20210823020813.25192-2-bmeng.cn@gmail.com/mbox/ | git am && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 178 | ./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" && \ |
| 179 | make -j$(nproc) all install && \ |
| 180 | rm -rf /tmp/qemu |
| 181 | |
Bin Meng | 3283a05 | 2021-08-26 23:33:33 +0800 | [diff] [blame] | 182 | # Build genimage (required by some targets to generate disk images) |
| 183 | RUN wget -O - https://github.com/pengutronix/genimage/releases/download/v14/genimage-14.tar.xz | tar -C /tmp -xJ && \ |
| 184 | cd /tmp/genimage-14 && \ |
| 185 | ./configure && \ |
| 186 | make -j$(nproc) && \ |
| 187 | make install && \ |
| 188 | rm -rf /tmp/genimage-14 |
| 189 | |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 190 | # Build libtpms |
| 191 | RUN git clone https://github.com/stefanberger/libtpms /tmp/libtpms && \ |
| 192 | cd /tmp/libtpms && \ |
| 193 | ./autogen.sh && \ |
| 194 | ./configure && \ |
| 195 | make -j$(nproc) && \ |
| 196 | make install && \ |
| 197 | ldconfig && \ |
| 198 | rm -rf /tmp/libtpms |
| 199 | |
| 200 | # Build swtpm |
| 201 | RUN git clone https://github.com/stefanberger/swtpm /tmp/swtpm && \ |
| 202 | cd /tmp/swtpm && \ |
| 203 | ./autogen.sh && \ |
| 204 | ./configure && \ |
| 205 | make -j$(nproc) && \ |
| 206 | make install && \ |
| 207 | rm -rf /tmp/swtpm |
| 208 | |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 209 | # Create our user/group |
| 210 | RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot |
| 211 | RUN useradd -m -U uboot |
| 212 | USER uboot:uboot |
| 213 | |
| 214 | # Create the buildman config file |
| 215 | RUN /bin/echo -e "[toolchain]\nroot = /usr" > ~/.buildman |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 216 | RUN /bin/echo -e "kernelorg = /opt/gcc-11.1.0-nolibc/*" >> ~/.buildman |
| 217 | RUN /bin/echo -e "arc = /opt/arc_gnu_2021.03_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman |
| 218 | RUN /bin/echo -e "\n[toolchain-prefix]\nxtensa = /opt/2020.07/xtensa-dc233c-elf/bin/xtensa-dc233c-elf-" >> ~/.buildman; |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 219 | RUN /bin/echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman |
| 220 | RUN /bin/echo -e "\nriscv = riscv64" >> ~/.buildman |
| 221 | RUN /bin/echo -e "\nsandbox = x86_64" >> ~/.buildman |
| 222 | RUN /bin/echo -e "\nx86 = i386" >> ~/.buildman; |