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 | 453c3fb | 2023-08-25 13:21:27 -0400 | [diff] [blame] | 5 | FROM ubuntu:jammy-20230804 |
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 | d7e0678 | 2023-03-21 15:07:45 -0400 | [diff] [blame] | 15 | RUN echo deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main | tee /etc/apt/sources.list.d/llvm.list |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 16 | |
Tom Rini | 1193428 | 2023-08-25 13:21:26 -0400 | [diff] [blame] | 17 | # Manually install the kernel.org "Crosstool" based toolchains for gcc-13.2.0 |
| 18 | RUN 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 |
| 19 | RUN 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 |
| 20 | RUN 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 |
| 21 | RUN 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 |
| 22 | RUN 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 |
| 23 | RUN 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 |
| 24 | RUN 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 |
| 25 | RUN 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 |
| 26 | RUN 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 |
| 27 | RUN 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 |
| 28 | RUN 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 |
| 29 | RUN 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 Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 30 | |
| 31 | # Manually install other toolchains |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 32 | 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 |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 33 | |
| 34 | # Update and install things from apt now |
| 35 | RUN apt-get update && apt-get install -y \ |
| 36 | automake \ |
| 37 | autopoint \ |
| 38 | bc \ |
| 39 | binutils-dev \ |
| 40 | bison \ |
| 41 | build-essential \ |
Simon Glass | f25820b | 2023-08-24 13:55:46 -0600 | [diff] [blame] | 42 | cgpt \ |
Tom Rini | d7e0678 | 2023-03-21 15:07:45 -0400 | [diff] [blame] | 43 | clang-16 \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 44 | coreutils \ |
| 45 | cpio \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 46 | curl \ |
| 47 | device-tree-compiler \ |
| 48 | dosfstools \ |
| 49 | e2fsprogs \ |
| 50 | efitools \ |
Huang Jianan | 2c30aa3 | 2022-02-26 15:05:51 +0800 | [diff] [blame] | 51 | erofs-utils \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 52 | expect \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 53 | fakeroot \ |
| 54 | flex \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 55 | gawk \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 56 | gdisk \ |
| 57 | git \ |
| 58 | gnu-efi \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 59 | gnutls-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 60 | graphviz \ |
| 61 | grub-efi-amd64-bin \ |
| 62 | grub-efi-ia32-bin \ |
| 63 | help2man \ |
| 64 | iasl \ |
| 65 | imagemagick \ |
| 66 | iputils-ping \ |
Tom Rini | 85fd489 | 2023-01-11 12:24:57 -0500 | [diff] [blame] | 67 | libc6-i386 \ |
Bin Meng | 3283a05 | 2021-08-26 23:33:33 +0800 | [diff] [blame] | 68 | libconfuse-dev \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 69 | libgit2-dev \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 70 | libjson-glib-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 71 | libguestfs-tools \ |
AKASHI Takahiro | ad3616e | 2022-02-01 10:32:36 +0900 | [diff] [blame] | 72 | libgnutls28-dev \ |
| 73 | libgnutls30 \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 74 | liblz4-tool \ |
| 75 | libpixman-1-dev \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 76 | libpython3-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 77 | libsdl1.2-dev \ |
| 78 | libsdl2-dev \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 79 | libseccomp-dev \ |
Tom Rini | b45ab9c | 2023-07-13 10:16:28 -0400 | [diff] [blame] | 80 | libslirp-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 81 | libssl-dev \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 82 | libtool \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 83 | libudev-dev \ |
| 84 | libusb-1.0-0-dev \ |
Alper Nebi Yasak | f9abaa5 | 2021-06-21 21:51:54 +0300 | [diff] [blame] | 85 | linux-image-kvm \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 86 | lzma-alone \ |
| 87 | lzop \ |
| 88 | mount \ |
| 89 | mtd-utils \ |
| 90 | mtools \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 91 | net-tools \ |
Bin Meng | a30e53c | 2021-08-26 23:33:32 +0800 | [diff] [blame] | 92 | ninja-build \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 93 | openssl \ |
| 94 | picocom \ |
| 95 | parted \ |
| 96 | pkg-config \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 97 | python-is-python3 \ |
| 98 | python2.7 \ |
| 99 | python3 \ |
| 100 | python3-dev \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 101 | python3-pip \ |
Simon Glass | 3379926 | 2022-10-13 06:25:57 -0600 | [diff] [blame] | 102 | python3-pyelftools \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 103 | python3-sphinx \ |
Tom Rini | b1c2102 | 2021-06-10 10:57:36 -0400 | [diff] [blame] | 104 | python3-virtualenv \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 105 | rpm2cpio \ |
| 106 | sbsigntool \ |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 107 | socat \ |
| 108 | softhsm2 \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 109 | sparse \ |
| 110 | srecord \ |
| 111 | sudo \ |
| 112 | swig \ |
Heinrich Schuchardt | 5f7a507 | 2022-12-30 05:41:01 +0100 | [diff] [blame] | 113 | texinfo \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 114 | util-linux \ |
| 115 | uuid-dev \ |
| 116 | virtualenv \ |
Simon Glass | f25820b | 2023-08-24 13:55:46 -0600 | [diff] [blame] | 117 | vboot-kernel-utils \ |
| 118 | vboot-utils \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 119 | xxd \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 120 | zip \ |
| 121 | && rm -rf /var/lib/apt/lists/* |
| 122 | |
Alper Nebi Yasak | f9abaa5 | 2021-06-21 21:51:54 +0300 | [diff] [blame] | 123 | # Make kernels readable for libguestfs tools to work correctly |
| 124 | RUN chmod +r /boot/vmlinu* |
| 125 | |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 126 | # Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit |
| 127 | RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \ |
| 128 | cd /tmp/grub && \ |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 129 | git checkout grub-2.06 && \ |
Tom Rini | 09ed7e6 | 2022-11-22 12:31:58 -0500 | [diff] [blame] | 130 | git config --global user.name "GitLab CI Runner" && \ |
| 131 | git config --global user.email trini@konsulko.com && \ |
| 132 | git cherry-pick 049efdd72eb7baa7b2bf8884391ee7fe650da5a0 && \ |
Tom Rini | 6d6ddab | 2023-07-13 20:37:35 -0400 | [diff] [blame] | 133 | git cherry-pick 403d6540cd608b2706cfa0cb4713f7e4b490ff45 && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 134 | ./bootstrap && \ |
| 135 | mkdir -p /opt/grub && \ |
| 136 | ./configure --target=aarch64 --with-platform=efi \ |
| 137 | CC=gcc \ |
Tom Rini | 1193428 | 2023-08-25 13:21:26 -0400 | [diff] [blame] | 138 | TARGET_CC=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc \ |
| 139 | TARGET_OBJCOPY=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy \ |
| 140 | TARGET_STRIP=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-strip \ |
| 141 | TARGET_NM=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-nm \ |
| 142 | TARGET_RANLIB=/opt/gcc-13.2.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 143 | make && \ |
| 144 | ./grub-mkimage -O arm64-efi -o /opt/grub/grubaa64.efi --prefix= -d \ |
| 145 | grub-core cat chain configfile echo efinet ext2 fat halt help linux \ |
| 146 | lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \ |
| 147 | search search_fs_file search_fs_uuid search_label serial sleep test \ |
| 148 | true && \ |
| 149 | make clean && \ |
| 150 | ./configure --target=arm --with-platform=efi \ |
| 151 | CC=gcc \ |
Tom Rini | 1193428 | 2023-08-25 13:21:26 -0400 | [diff] [blame] | 152 | TARGET_CC=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc \ |
| 153 | TARGET_OBJCOPY=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy \ |
| 154 | TARGET_STRIP=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip \ |
| 155 | TARGET_NM=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm \ |
| 156 | TARGET_RANLIB=/opt/gcc-13.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 157 | make && \ |
| 158 | ./grub-mkimage -O arm-efi -o /opt/grub/grubarm.efi --prefix= -d \ |
| 159 | grub-core cat chain configfile echo efinet ext2 fat halt help linux \ |
| 160 | lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \ |
| 161 | search search_fs_file search_fs_uuid search_label serial sleep test \ |
| 162 | true && \ |
| 163 | make clean && \ |
| 164 | ./configure --target=riscv64 --with-platform=efi \ |
| 165 | CC=gcc \ |
Tom Rini | 1193428 | 2023-08-25 13:21:26 -0400 | [diff] [blame] | 166 | TARGET_CC=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc \ |
| 167 | TARGET_OBJCOPY=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy \ |
| 168 | TARGET_STRIP=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-strip \ |
| 169 | TARGET_NM=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-nm \ |
| 170 | TARGET_RANLIB=/opt/gcc-13.2.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 171 | make && \ |
| 172 | ./grub-mkimage -O riscv64-efi -o /opt/grub/grubriscv64.efi --prefix= -d \ |
| 173 | grub-core cat chain configfile echo efinet ext2 fat halt help linux \ |
| 174 | lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \ |
| 175 | search search_fs_file search_fs_uuid search_label serial sleep test \ |
| 176 | true && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 177 | rm -rf /tmp/grub |
| 178 | |
Tom Rini | e38cdc6 | 2023-02-07 12:50:13 -0500 | [diff] [blame] | 179 | RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \ |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 180 | cd /tmp/qemu && \ |
Tom Rini | b45ab9c | 2023-07-13 10:16:28 -0400 | [diff] [blame] | 181 | git checkout v8.0.3 && \ |
Bin Meng | a30e53c | 2021-08-26 23:33:32 +0800 | [diff] [blame] | 182 | # config user.name and user.email to make 'git am' happy |
| 183 | git config user.name u-boot && \ |
| 184 | git config user.email u-boot@denx.de && \ |
Tom Rini | 3854706 | 2023-03-21 15:28:00 -0400 | [diff] [blame] | 185 | ./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 Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 186 | make -j$(nproc) all install && \ |
| 187 | rm -rf /tmp/qemu |
| 188 | |
Heinrich Schuchardt | ed319ba | 2023-01-13 20:31:33 +0100 | [diff] [blame] | 189 | # Build QEMU supporting Nokia n900 emulation |
| 190 | RUN mkdir -p /opt/nokia && \ |
| 191 | cd /tmp && \ |
| 192 | git clone https://git.linaro.org/qemu/qemu-linaro.git && \ |
| 193 | cd /tmp/qemu-linaro && \ |
| 194 | git checkout 8f8d8e0796efe1a6f34cdd83fb798f3c41217ec1 && \ |
| 195 | ./configure --enable-system --target-list=arm-softmmu \ |
| 196 | --python=/usr/bin/python2.7 --disable-sdl --disable-gtk \ |
| 197 | --disable-curses --audio-drv-list= --audio-card-list= \ |
| 198 | --disable-werror --disable-xen --disable-xen-pci-passthrough \ |
| 199 | --disable-brlapi --disable-vnc --disable-curl --disable-slirp \ |
| 200 | --disable-kvm --disable-user --disable-linux-user --disable-bsd-user \ |
| 201 | --disable-guest-base --disable-uuid --disable-vde --disable-linux-aio \ |
| 202 | --disable-cap-ng --disable-attr --disable-blobs --disable-docs \ |
| 203 | --disable-spice --disable-libiscsi --disable-smartcard-nss \ |
| 204 | --disable-usb-redir --disable-guest-agent --disable-seccomp \ |
| 205 | --disable-glusterfs --disable-nptl --disable-fdt && \ |
| 206 | make -j$(nproc) && \ |
| 207 | cp /tmp/qemu-linaro/arm-softmmu/qemu-system-arm /opt/nokia && \ |
| 208 | rm -rf /tmp/qemu-linaro |
| 209 | |
Bin Meng | 3283a05 | 2021-08-26 23:33:33 +0800 | [diff] [blame] | 210 | # Build genimage (required by some targets to generate disk images) |
| 211 | RUN wget -O - https://github.com/pengutronix/genimage/releases/download/v14/genimage-14.tar.xz | tar -C /tmp -xJ && \ |
| 212 | cd /tmp/genimage-14 && \ |
| 213 | ./configure && \ |
| 214 | make -j$(nproc) && \ |
| 215 | make install && \ |
| 216 | rm -rf /tmp/genimage-14 |
| 217 | |
Heinrich Schuchardt | 8a87d1a | 2021-11-09 19:51:20 +0100 | [diff] [blame] | 218 | # Build libtpms |
| 219 | RUN git clone https://github.com/stefanberger/libtpms /tmp/libtpms && \ |
| 220 | cd /tmp/libtpms && \ |
| 221 | ./autogen.sh && \ |
| 222 | ./configure && \ |
| 223 | make -j$(nproc) && \ |
| 224 | make install && \ |
| 225 | ldconfig && \ |
| 226 | rm -rf /tmp/libtpms |
| 227 | |
| 228 | # Build swtpm |
| 229 | RUN git clone https://github.com/stefanberger/swtpm /tmp/swtpm && \ |
| 230 | cd /tmp/swtpm && \ |
| 231 | ./autogen.sh && \ |
| 232 | ./configure && \ |
| 233 | make -j$(nproc) && \ |
| 234 | make install && \ |
| 235 | rm -rf /tmp/swtpm |
| 236 | |
Simon Glass | 71d3e79 | 2023-01-15 14:15:59 -0700 | [diff] [blame] | 237 | # Build trace-cmd |
| 238 | RUN mkdir /tmp/trace && \ |
| 239 | git clone https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git /tmp/trace/libtraceevent && \ |
| 240 | cd /tmp/trace/libtraceevent && \ |
| 241 | make -j$(nproc) && \ |
| 242 | sudo make install && \ |
| 243 | git clone https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git /tmp/trace/libtracefs && \ |
| 244 | cd /tmp/trace/libtracefs && \ |
| 245 | make -j$(nproc) && \ |
| 246 | sudo make install && \ |
| 247 | git clone https://github.com/rostedt/trace-cmd.git /tmp/trace/trace-cmd && \ |
| 248 | cd /tmp/trace/trace-cmd && \ |
| 249 | make -j$(nproc) && \ |
| 250 | sudo make install && \ |
| 251 | rm -rf /tmp/trace |
| 252 | |
Heinrich Schuchardt | 75b031e | 2023-01-13 19:25:01 +0100 | [diff] [blame] | 253 | # Files to run Nokia RX-51 (aka N900) tests |
| 254 | RUN mkdir -p /opt/nokia && \ |
| 255 | cd /opt/nokia && \ |
| 256 | wget https://raw.githubusercontent.com/pali/u-boot-maemo/master/debian/u-boot-gen-combined && \ |
Tom Rini | 7a826de | 2023-02-27 10:49:54 -0500 | [diff] [blame] | 257 | chmod 0755 u-boot-gen-combined && \ |
Heinrich Schuchardt | 75b031e | 2023-01-13 19:25:01 +0100 | [diff] [blame] | 258 | wget http://repository.maemo.org/qemu-n900/qemu-n900.tar.gz && \ |
| 259 | wget http://repository.maemo.org/pool/maemo5.0/free/k/kernel/kernel_2.6.28-20103103+0m5_armel.deb && \ |
| 260 | wget http://repository.maemo.org/pool/maemo5.0/free/g/glibc/libc6_2.5.1-1eglibc27+0m5_armel.deb && \ |
| 261 | wget http://repository.maemo.org/pool/maemo5.0/free/b/busybox/busybox_1.10.2.legal-1osso30+0m5_armel.deb |
| 262 | |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 263 | # Create our user/group |
| 264 | RUN echo uboot ALL=NOPASSWD: ALL > /etc/sudoers.d/uboot |
| 265 | RUN useradd -m -U uboot |
| 266 | USER uboot:uboot |
| 267 | |
Tom Rini | 866f302 | 2023-03-23 14:57:58 -0400 | [diff] [blame] | 268 | # Populate the cache for pip to use. Get these via wget as the |
| 269 | # COPY / ADD directives don't work as we need them to. |
| 270 | RUN wget -O /tmp/pytest-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/test/py/requirements.txt |
| 271 | RUN wget -O /tmp/sphinx-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/doc/sphinx/requirements.txt |
| 272 | RUN virtualenv -p /usr/bin/python3 /tmp/venv && \ |
| 273 | . /tmp/venv/bin/activate && \ |
| 274 | pip install -r /tmp/pytest-requirements.txt \ |
| 275 | -r /tmp/sphinx-requirements.txt && \ |
| 276 | deactivate && \ |
| 277 | rm -rf /tmp/venv /tmp/pytest-requirements.txt /tmp/sphinx-requirements.txt |
| 278 | |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 279 | # Create the buildman config file |
| 280 | RUN /bin/echo -e "[toolchain]\nroot = /usr" > ~/.buildman |
Tom Rini | 1193428 | 2023-08-25 13:21:26 -0400 | [diff] [blame] | 281 | RUN /bin/echo -e "kernelorg = /opt/gcc-13.2.0-nolibc/*" >> ~/.buildman |
Tom Rini | 7bb1cc3 | 2021-07-02 10:41:58 -0400 | [diff] [blame] | 282 | 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] | 283 | RUN /bin/echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman |
Tom Rini | a643225 | 2021-03-15 13:19:01 -0400 | [diff] [blame] | 284 | RUN /bin/echo -e "\nsandbox = x86_64" >> ~/.buildman |
| 285 | RUN /bin/echo -e "\nx86 = i386" >> ~/.buildman; |
Safae Ouajih | f444939 | 2023-02-06 00:50:21 +0100 | [diff] [blame] | 286 | |
| 287 | # Add mkbootimg tool |
| 288 | RUN git clone https://android.googlesource.com/platform/system/tools/mkbootimg /home/uboot/mkbootimg |
| 289 | ENV PYTHONPATH "${PYTHONPATH}:/home/uboot/mkbootimg" |