# Build patched QEMU for Debian Buster or Bullseye/Sid inside a container # cd ..; podman build --build-arg REL=bullseye -v `pwd`/packages:/root/packages -f debian/patched-qemu.Dockerfile . ARG REL= FROM debian:$REL ARG REL= WORKDIR /root RUN if [ "$REL" = "buster" -o "$REL" = "bullseye" ]; then \ echo "deb http://deb.debian.org/debian $REL-backports main" >> /etc/apt/sources.list; \ echo >> /etc/apt/preferences; \ echo 'Package: *' >> /etc/apt/preferences; \ echo "Pin: release a=$REL-backports" >> /etc/apt/preferences; \ echo 'Pin-Priority: 500' >> /etc/apt/preferences; \ fi; \ grep '^deb ' /etc/apt/sources.list | perl -pe 's/^deb/deb-src/' >> /etc/apt/sources.list; \ echo 'APT::Install-Recommends false;' >> /etc/apt/apt.conf; \ echo 'APT::Install-Suggests false;' >> /etc/apt/apt.conf RUN apt-get update RUN apt-get -y install qemu fio liburing1 liburing-dev libgoogle-perftools-dev devscripts RUN apt-get -y build-dep qemu RUN apt-get -y build-dep fio # To build a custom version #RUN cp /root/packages/qemu-orig/* /root RUN apt-get --download-only source qemu RUN apt-get --download-only source fio ADD patches/qemu-5.0-vitastor.patch patches/qemu-5.1-vitastor.patch patches/qemu-6.1-vitastor.patch /root/vitastor/patches/ RUN set -e; \ mkdir -p /root/packages/qemu-$REL; \ rm -rf /root/packages/qemu-$REL/*; \ cd /root/packages/qemu-$REL; \ dpkg-source -x /root/qemu*.dsc; \ if ls -d /root/packages/qemu-$REL/qemu-5.0*; then \ D=$(ls -d /root/packages/qemu-$REL/qemu-5.0*); \ cp /root/vitastor/patches/qemu-5.0-vitastor.patch $D/debian/patches; \ echo qemu-5.0-vitastor.patch >> $D/debian/patches/series; \ elif ls /root/packages/qemu-$REL/qemu-6.1*; then \ D=$(ls -d /root/packages/qemu-$REL/qemu-6.1*); \ cp /root/vitastor/patches/qemu-6.1-vitastor.patch $D/debian/patches; \ echo qemu-6.1-vitastor.patch >> $D/debian/patches/series; \ else \ cp /root/vitastor/patches/qemu-5.1-vitastor.patch /root/packages/qemu-$REL/qemu-*/debian/patches; \ P=`ls -d /root/packages/qemu-$REL/qemu-*/debian/patches`; \ echo qemu-5.1-vitastor.patch >> $P/series; \ fi; \ cd /root/packages/qemu-$REL/qemu-*/; \ V=$(head -n1 debian/changelog | perl -pe 's/^.*\((.*?)(~bpo[\d\+]*)?\).*$/$1/')+vitastor1; \ DEBFULLNAME="Vitaliy Filippov " dch -D $REL -v $V 'Plug Vitastor block driver'; \ DEB_BUILD_OPTIONS=nocheck dpkg-buildpackage --jobs=auto -sa; \ rm -rf /root/packages/qemu-$REL/qemu-*/