CVSROOT: /cvs Module name: src Changes by: yasu...@cvs.openbsd.org 2015/08/30 04:05:09
Modified files: sys/arch/amd64/amd64: acpi_machdep.c bios.c machdep.c mainbus.c wscons_machdep.c sys/arch/amd64/conf: GENERIC files.amd64 sys/arch/amd64/include: biosvar.h sys/dev/wscons : wsconsio.h Added files: sys/arch/amd64/amd64: efifb.c sys/arch/amd64/include: efifbvar.h Log message: Modify kernel to prepare boot from UEFI. - Add new boot arg "bios_efi_info_t" to pass the paramters from UEFI - Make bios(4) and acpi(4) be able to probe with the parameters from UEFI - Add efifb(8). It uses the framebuffer from UEFI and it will work as a backend of wsdisplay(4) and wsfb (X11 video driver). Disabled by the kernel config for this moment input and ok kettenis