-
Notifications
You must be signed in to change notification settings - Fork 118
/
GNUmakefile
67 lines (52 loc) · 1.71 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
66
67
# GNUmakefile: Main makefile of the project.
# Code is governed by the GPL-2.0 license.
# Copyright (C) 2021-2022 The Vinix authors.
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:
curl -Lo jinx https://github.com/mintsuki/jinx/raw/f459adb138abff6afc7936f5fd4bc9e24023a495/jinx
chmod +x jinx
.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