9ba760e603
ask to map in oxpcie i/o memory and support serial i/o for it in the kernel. set oxpcie=<address> in boot monitor (retrieve address using pci_debug=1 output). (no sanity checking is done on the address currently.) disabled by default. The change also contains some other minor cleanup (a new serial.h to set register info common to UART and the OXPCIe card, in-kernel memory mapping a little more structured and env_get() to get sysenv variables without knowing about the params_buffer).
22 lines
365 B
Makefile
22 lines
365 B
Makefile
# Makefile for arch-dependent kernel code
|
|
.include <minix.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/arch/${ARCH}
|
|
SRCS+= arch_do_vmctl.c \
|
|
breakpoints.c \
|
|
arch_clock.c \
|
|
debugreg.S \
|
|
do_int86.c \
|
|
do_iopenable.c \
|
|
do_readbios.c \
|
|
do_sdevio.c \
|
|
exception.c \
|
|
i8259.c \
|
|
klib.S \
|
|
memory.c \
|
|
oxpcie.c \
|
|
protect.c \
|
|
arch_system.c \
|
|
apic.c \
|
|
apic_asm.S \
|
|
arch_watchdog.c
|