blob: 2624d6c31bbf7143f523ba656ee7a9eaaadf556f [file] [log] [blame]
Nico Huberc0b52db2022-12-15 12:42:32 +00001FROM debian:bullseye
2
3ARG PKG_PATH=http://cdn.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/7.1/All
4ARG INST_IMG=http://ftp.de.netbsd.org/pub/NetBSD/NetBSD-7.1/amd64/
5
6RUN \
7 useradd -p locked -m mani && \
8 apt-get -qq update && \
9 apt-get -qq upgrade && \
10 apt-get -qqy install git python-is-python3 python3-pexpect \
11 python3-distutils genisoimage qemu-system && \
12 apt-get clean
13
14RUN git clone https://github.com/gson1703/anita.git
15RUN cd anita && python setup.py install
16
17ARG DISK_SIZE=1G
18ARG INSTALL_MEM=128M
19USER mani
20RUN cd && mkdir .ccache && chown mani:mani .ccache && \
21 anita --sets kern-GENERIC,modules,base,etc,comp \
22 --disk-size ${DISK_SIZE} --memory-size=${INSTALL_MEM} \
23 install ${INST_IMG} && \
24 rm -rf work-*/download
25
26ARG EXTRA_PKG=""
27ARG RUNTIME_MEM=128M
28ARG ORIGIN=https://review.coreboot.org/flashrom-stable.git
29RUN cd && anita --persist --memory-size=${RUNTIME_MEM} --run \
30"echo 'dhcpcd' >init && \
31 echo 'export PKG_PATH=${PKG_PATH}' >>init && \
32 . ./init && \
33 pkg_add gmake git-base ccache pciutils libusb1 libusb-compat libftdi \
34 ${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"]