blob: 84ecc580d84cf0dc7a2ec37249591fe180660990 [file] [log] [blame]
Nico Huberc0b52db2022-12-15 12:42:32 +00001FROM debian:bullseye
2
Nico Huberc0b52db2022-12-15 12:42:32 +00003RUN \
4 useradd -p locked -m mani && \
5 apt-get -qq update && \
6 apt-get -qq upgrade && \
7 apt-get -qqy install git python-is-python3 python3-pexpect \
8 python3-distutils genisoimage qemu-system && \
9 apt-get clean
10
11RUN git clone https://github.com/gson1703/anita.git
12RUN cd anita && python setup.py install
13
14ARG DISK_SIZE=1G
15ARG INSTALL_MEM=128M
Nico Huber3ddd6032022-12-11 17:23:22 +000016ARG INST_IMG=http://ftp.de.netbsd.org/pub/NetBSD/NetBSD-7.1/amd64/
Nico Huberc0b52db2022-12-15 12:42:32 +000017USER mani
18RUN cd && mkdir .ccache && chown mani:mani .ccache && \
19 anita --sets kern-GENERIC,modules,base,etc,comp \
20 --disk-size ${DISK_SIZE} --memory-size=${INSTALL_MEM} \
21 install ${INST_IMG} && \
22 rm -rf work-*/download
23
24ARG EXTRA_PKG=""
25ARG RUNTIME_MEM=128M
26ARG ORIGIN=https://review.coreboot.org/flashrom-stable.git
Nico Huber3ddd6032022-12-11 17:23:22 +000027ARG PKG_PATH=http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/7.1/All
Nico Huberc0b52db2022-12-15 12:42:32 +000028RUN cd && anita --persist --memory-size=${RUNTIME_MEM} --run \
29"echo 'dhcpcd' >init && \
30 echo 'export PKG_PATH=${PKG_PATH}' >>init && \
31 . ./init && \
Nico Huber76afdac2022-12-11 17:22:19 +000032 pkg_add gmake git-base ccache pkg-config \
33 pciutils libusb1 libusb-compat libftdi \
Nico Huberc0b52db2022-12-15 12:42:32 +000034 ${EXTRA_PKG} && \
35 git config --global --add http.sslVerify false && \
36 git clone ${ORIGIN} flashrom" \
37 boot ${INST_IMG}
38
39RUN cd && dd if=/dev/zero bs=1M count=64 of=cache.img && \
Nico Huberea88f212022-12-11 17:19:36 +000040 anita --vmm-args \
41 '-drive file=cache.img,index=1,media=disk,format=raw' \
42 --persist \
Nico Huberc0b52db2022-12-15 12:42:32 +000043 --memory-size=${RUNTIME_MEM} --run \
44"if [ \$(uname -m) = i386 -o \$(uname -m) = amd64 ]; then \
45 bdev=wd1d; \
46 else \
47 bdev=wd1c; \
48 fi; \
49 newfs -I \${bdev} && \
50 mkdir .ccache && \
51 mount /dev/\${bdev} .ccache && \
52 ccache -M 60M && \
53 umount .ccache && \
54 echo 'manitest() {' >>init && \
55 echo ' fsck -y -t ffs /dev/'\${bdev} >>init && \
56 echo ' mount /dev/'\${bdev}' ~/.ccache' >>init && \
57 echo ' (cd ~/flashrom && eval \" \$*\")' >>init && \
58 echo ' ret=\$?' >>init && \
59 echo ' umount ~/.ccache' >>init && \
60 echo ' return \$ret' >>init && \
61 echo '}' >>init" \
62 boot ${INST_IMG} && \
63 gzip cache.img
64
65COPY anita-wrapper.sh /home/mani/mani-wrapper.sh
66ENV INST_IMG ${INST_IMG}
67ENV MEM_SIZE ${RUNTIME_MEM}
68ENTRYPOINT ["/bin/sh", "/home/mani/mani-wrapper.sh"]