-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathGNUmakefile
65 lines (51 loc) · 1.64 KB
/
GNUmakefile
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
QEMUFLAGS ?= -M q35,smm=off -m 8G -cdrom vinix.iso -serial stdio -smp 4
.PHONY: all
all:
rm -f vinix.iso
$(MAKE) vinix.iso
vinix.iso: jinx
./build-support/makeiso.sh
.PHONY: debug
debug:
JINX_CONFIG_FILE=jinx-config-debug $(MAKE) all
jinx:
git clone https://codeberg.org/mintsuki/jinx.git jinx-repo
git -C jinx-repo checkout 7a101a39eb061713f9c50ceafa1d713f35f17a3b
mv jinx-repo/jinx ./
rm -rf jinx-repo
.PHONY: run-kvm
run-kvm: vinix.iso
qemu-system-x86_64 -enable-kvm -cpu host $(QEMUFLAGS)
.PHONY: run-hvf
run-hvf: vinix.iso
qemu-system-x86_64 -accel hvf -cpu host $(QEMUFLAGS)
ovmf/ovmf-code-x86_64.fd:
mkdir -p ovmf
curl -Lo $@ https://github.com/osdev0/edk2-ovmf-nightly/releases/latest/download/ovmf-code-x86_64.fd
ovmf/ovmf-vars-x86_64.fd:
mkdir -p ovmf
curl -Lo $@ https://github.com/osdev0/edk2-ovmf-nightly/releases/latest/download/ovmf-vars-x86_64.fd
.PHONY: run-uefi
run-uefi: vinix.iso ovmf/ovmf-code-x86_64.fd ovmf/ovmf-vars-x86_64.fd
qemu-system-x86_64 \
-enable-kvm \
-cpu host \
-drive if=pflash,unit=0,format=raw,file=ovmf/ovmf-code-x86_64.fd,readonly=on \
-drive if=pflash,unit=1,format=raw,file=ovmf/ovmf-vars-x86_64.fd \
$(QEMUFLAGS)
.PHONY: run-bochs
run-bochs: vinix.iso
bochs -f bochsrc
.PHONY: run-lingemu
run-lingemu: vinix.iso
lingemu runvirt -m 8192 --diskcontroller type=ahci,name=ahcibus1 --disk vinix.iso,disktype=cdrom,controller=ahcibus1
.PHONY: run
run: vinix.iso
qemu-system-x86_64 $(QEMUFLAGS)
.PHONY: clean
clean:
rm -rf iso_root sysroot vinix.iso initramfs.tar
.PHONY: distclean
distclean: clean
make -C kernel distclean
rm -rf .jinx-cache jinx builds host-builds host-pkgs pkgs sources ovmf