mirror of
https://github.com/opnsense/src.git
synced 2026-03-16 07:41:02 -04:00
framebuffer driver, etc. work on FreeBSD/amd64. A significant amount of improvements were done by jkim@ during the recent months to make vesa(4) work better, over the initial code import. This work is based on OpenBSD's x86emu implementation and contributed by paradox <ddkprog yahoo com> and swell.k at gmail com. Hopefully I have stolen all their work to 8-STABLE :) All bugs in this commit are mine, as usual.
11 lines
213 B
Makefile
11 lines
213 B
Makefile
# $FreeBSD$
|
|
|
|
KMOD= x86bios
|
|
SRCS= opt_x86bios.h
|
|
SRCS+= bus_if.h device_if.h pci_if.h
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/x86emu
|
|
.PATH: ${.CURDIR}/../../compat/x86bios
|
|
SRCS+= x86bios.c x86emu.c
|
|
|
|
.include <bsd.kmod.mk>
|