1
0
Fork 0
out-of-tree/tools/qemu-debian-img/bootstrap.sh

10 lines
429 B
Bash
Raw Normal View History

#!/bin/sh -eux
2019-02-06 06:29:08 +00:00
cd $(dirname $(realpath $0))
docker build -t gen-ubuntu2004-image .
docker run --privileged -v $(pwd):/shared -t gen-ubuntu2004-image
RUN="docker run -v $(pwd):/shared -t gen-ubuntu2004-image"
2020-05-30 12:05:24 +00:00
$RUN sh -c 'chmod 644 /boot/vmlinuz && cp /boot/vmlinuz /shared/ubuntu2004.vmlinuz'
$RUN sh -c 'cp /boot/initrd.img /shared/ubuntu2004.initrd'
2020-05-30 12:31:27 +00:00
$RUN sh -c 'cp $(find /lib/modules -name test_bpf.ko) /shared/ubuntu2004.ko'