Lines Matching refs:tmp

148 RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
149 cd /tmp/grub && \
218 rm -rf /tmp/grub
220 RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \
221 cd /tmp/qemu && \
228 rm -rf /tmp/qemu
231 RUN git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git /tmp/tf-a && \
232 cd /tmp/tf-a/ && \
246 rm -rf /tmp/tf-a
252 …s://github.com/pengutronix/genimage/releases/download/v14/genimage-14.tar.xz | tar -C /tmp -xJ && \
253 cd /tmp/genimage-14 && \
257 rm -rf /tmp/genimage-14
260 RUN git clone https://github.com/stefanberger/libtpms /tmp/libtpms && \
261 cd /tmp/libtpms && \
267 rm -rf /tmp/libtpms
270 RUN git clone https://github.com/stefanberger/swtpm /tmp/swtpm && \
271 cd /tmp/swtpm && \
276 rm -rf /tmp/swtpm
279 RUN mkdir /tmp/trace && \
280 …git clone https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git /tmp/trace/libtraceevent …
281 cd /tmp/trace/libtraceevent && \
284 git clone https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git /tmp/trace/libtracefs && \
285 cd /tmp/trace/libtracefs && \
288 git clone https://github.com/rostedt/trace-cmd.git /tmp/trace/trace-cmd && \
289 cd /tmp/trace/trace-cmd && \
292 rm -rf /tmp/trace
295 RUN wget -O - https://coreboot.org/releases/coreboot-25.03.tar.xz | tar -C /tmp -xJ && \
296 cd /tmp/coreboot-25.03 && \
307 rm -rf /tmp/coreboot-25.03
316 RUN wget -O /tmp/pytest-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/test/py/…
317 RUN wget -O /tmp/sphinx-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/doc/sphi…
318 RUN wget -O /tmp/binman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/bi…
319 RUN wget -O /tmp/buildman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/…
320 RUN wget -O /tmp/patman-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/tools/pa…
321 RUN wget -O /tmp/u_boot_pylib-requirements.txt https://source.denx.de/u-boot/u-boot/-/raw/master/to…
322 RUN python3 -m venv /tmp/venv && \
323 . /tmp/venv/bin/activate && \
324 pip install -r /tmp/pytest-requirements.txt \
325 -r /tmp/sphinx-requirements.txt \
326 -r /tmp/binman-requirements.txt \
327 -r /tmp/buildman-requirements.txt \
328 -r /tmp/patman-requirements.txt \
329 -r /tmp/u_boot_pylib-requirements.txt && \
331 rm -rf /tmp/venv /tmp/*-requirements.txt