ba49a155b5
This patch introduces a framebuffer to Minix. It's written for the ARM port of Minix, but has an architectural split that separates the hardware dependent part from the non-hardware dependent part. Futhermore, this driver was developed using a screen that has a native resolution of 1024x600 pixels and having lack of support for obtaining EDID from the screen. Consequently, it uses a hardcoded resolution of 1024x600. The driver uses an interface based on the Linux ioctl API, but supports only a very limited subset.
11 lines
306 B
Makefile
11 lines
306 B
Makefile
|
|
INCSDIR= /usr/include/sys
|
|
|
|
# Minix specific system headers
|
|
INCS= elf64.h elf_common.h elf_core.h elf_generic.h \
|
|
ioc_block.h ioc_disk.h ioc_fb.h ioc_fbd.h ioc_file.h ioc_memory.h \
|
|
ioc_net.h ioc_sound.h ioc_tape.h ioc_tty.h \
|
|
kbdio.h \
|
|
procfs.h statfs.h svrctl.h video.h vm.h
|
|
|
|
.include <bsd.kinc.mk>
|