aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/2021-12-02-toying-with-virtio/Makefile
blob: 78e9258127f434edb2631f367a4e84613a475146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
VER := 5.15.6

all: kernel init

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:"
	@echo "  run        - Boot into the initramfs (qemu)."
	@echo "  vcon       - Attach to guest virtio console."
	@echo "               This needs an already running guest VM and must be"
	@echo "               executed in the same domain as the 'run' target"
	@echo "               (docker or host)."
	@echo "               Login as 'root' user, no passwd required."
	@echo ""
	@echo "Docker targets:"
	@echo "  docker     - Build and start the docker container."
	@echo "  attach     - Start an additional bash in the container."
	@echo "               This needs an already running container."

# -- BUILD TARGETS --------------------------------------------------------------

kernel:
	./build_kernel.sh

init:
	./build_initramfs.sh

ext2:
	./build_ext2.sh

# -- RUN TARGETS ----------------------------------------------------------------

run:
	qemu-system-x86_64                                            \
	  -nographic                                                  \
	  -cpu host                                                   \
	  -enable-kvm                                                 \
	  -kernel ./linux-$(VER)/arch/x86/boot/bzImage                \
	  -append "earlyprintk=ttyS0 console=ttyS0 root=/dev/ram0 ro" \
	  -initrd ./initramfs.cpio.gz                                 \
	  -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=blk.ext2 \
	  -nic user,model=virtio-net-pci

vcon:
	telnet -4 localhost 2222

# -- CLEAN TARGET ---------------------------------------------------------------

clean:
	$(RM) initramfs.cpio.gz
	$(RM) -r busybox-*
	$(RM) -r linux-$(VER)*
	$(RM) blk.ext2

# -- DOCKER TARGETS -------------------------------------------------------------

docker podman:
	$(MAKE) build-$@
	$@ run --name virtio -it --rm -v $(PWD):/develop --device /dev/kvm virtio-dev

build-docker:
	DOCKER_BUILDKIT=1 docker build -f Dockerfile --build-arg UID=$(shell id -u) -t virtio-dev .
build-podman:
	podman build -t virtio-dev .

attach-docker attach-podman:
attach-%:
	$* exec -it virtio bash