Graphics (#13)

Virtual Terminals
This commit is contained in:
Jeremy Soller 2016-10-07 20:18:05 -06:00 committed by GitHub
parent 0d1afaa016
commit b49211f24e
23 changed files with 459 additions and 239 deletions

View file

@ -64,6 +64,11 @@ else
ifneq ($(kvm),no)
QEMUFLAGS+=-enable-kvm -cpu host
endif
ifeq ($(net),no)
QEMUFLAGS+=-net none
else
QEMUFLAGS+=-net nic,model=e1000 -net user -net dump,file=$(KBUILD)/network.pcap
endif
ifeq ($(storage),usb)
QEMUFLAGS+=-device usb-ehci,id=flash_bus -drive id=flash_drive,file=$(KBUILD)/harddrive.bin,format=raw,if=none -device usb-storage,drive=flash_drive,bus=flash_bus.0
else
@ -226,6 +231,7 @@ filesystem/bin/%: schemes/%/Cargo.toml schemes/%/src/** $(BUILD)/libstd.rlib
rm $@.d
drivers: \
filesystem/bin/e1000d \
filesystem/bin/ps2d \
filesystem/bin/vesad