aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/2021-12-02-toying-with-virtio/Makefile
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2022-04-17 00:00:05 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2022-04-17 00:00:05 +0200
commit9bdc2b4fec2f5d11c9648916f362206d31ab6e0d (patch)
treefa06a961c280a0a40167efcf42f5c09ec4c59f45 /content/2021-12-02-toying-with-virtio/Makefile
parent0730e22f17dbbdcc8559d743494b20d5ca782b35 (diff)
downloadblog-9bdc2b4fec2f5d11c9648916f362206d31ab6e0d.tar.gz
blog-9bdc2b4fec2f5d11c9648916f362206d31ab6e0d.zip
virtio: add script and make target to build ext2 device
Diffstat (limited to 'content/2021-12-02-toying-with-virtio/Makefile')
-rw-r--r--content/2021-12-02-toying-with-virtio/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/content/2021-12-02-toying-with-virtio/Makefile b/content/2021-12-02-toying-with-virtio/Makefile
index 4009862..d4286af 100644
--- a/content/2021-12-02-toying-with-virtio/Makefile
+++ b/content/2021-12-02-toying-with-virtio/Makefile
@@ -6,6 +6,7 @@ help:
@echo "Build targets:"
@echo "* init - Build busybox based initramfs."
@echo "* kernel - Build minimal linux kernel."
+ @echo " ext2 - Build minimal ext2 fs as virtio blkdev backend (uses sudo)."
@echo " clean - Cleanup downloads & builds."
@echo ""
@echo "Run targets:"
@@ -27,6 +28,9 @@ kernel:
init:
./build_initramfs.sh
+ext2:
+ ./build_ext2.sh
+
run:
qemu-system-x86_64 \
-nographic \
@@ -38,7 +42,7 @@ run:
-device virtio-serial-pci \
-device virtconsole,chardev=vcon,name=console.0 \
-chardev socket,id=vcon,ipv4=on,host=localhost,port=2222,server,telnet=on,wait=off \
- -drive format=raw,if=virtio,file=rootfs.ext2 \
+ -drive format=raw,if=virtio,file=blk.ext2 \
-nic user,model=virtio-net-pci
vcon:
@@ -48,6 +52,7 @@ clean:
$(RM) initramfs.cpio.gz
$(RM) -r busybox-*
$(RM) -r linux-$(VER)*
+ $(RM) blk.ext2
docker:
DOCKER_BUILDKIT=1 docker build --build-arg UID=$(shell id -u) -t virtio-dev .