10028 loader: implement framebuffer console
commit9890ff8357a674572254e0be06b175a1e8eab4b0
authorToomas Soome <tsoome@me.com>
Sat, 1 Dec 2018 20:31:08 +0000 (1 22:31 +0200)
committerHans Rosenfeld <hans.rosenfeld@joyent.com>
Mon, 7 Jan 2019 09:11:18 +0000 (7 10:11 +0100)
tree3b4b3a2b61f0cd74bd99b547f6e87c2688b4e122
parentf33b666290305a2b2c134d23cbd1e70e06bf36fd
10028 loader: implement framebuffer console
10029 common/font: create shared font.c
10030 import pnglite into usr/src/common/pnglite
8918 loader.efi: add vesa edid support
10031 loader: import tem for loader console
10032 loader: implement tem utf-8 support
10033 ficl: add simple gfx words
10034 loader: use term-drawrect for menu frame
10035 loader: add alpha blending for gfx_fb
10036 ficl: add fb-putimage
10037 loader: add illumos.png logo
10038 loader: replace gop and vesa with framebuffer
10039 loader: build rules for new font setup
10040 loader: gfx use GOP Blt() function in visual_io callbacks
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Gergő Mihály Doma <domag02@gmail.com>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
65 files changed:
usr/src/boot/lib/libstand/pager.c
usr/src/boot/sys/boot/Makefile.inc
usr/src/boot/sys/boot/common/bootstrap.h
usr/src/boot/sys/boot/common/console.c
usr/src/boot/sys/boot/common/gfx_fb.c [new file with mode: 0644]
usr/src/boot/sys/boot/common/gfx_fb.h [new file with mode: 0644]
usr/src/boot/sys/boot/common/help.common
usr/src/boot/sys/boot/common/linenoise/linenoise.c
usr/src/boot/sys/boot/common/module.c
usr/src/boot/sys/boot/common/multiboot2.c
usr/src/boot/sys/boot/common/tem.c [new file with mode: 0644]
usr/src/boot/sys/boot/efi/Makefile.inc
usr/src/boot/sys/boot/efi/include/eficon.h
usr/src/boot/sys/boot/efi/libefi/Makefile.com
usr/src/boot/sys/boot/efi/libefi/efi_console.c
usr/src/boot/sys/boot/efi/loader/Makefile.com
usr/src/boot/sys/boot/efi/loader/comconsole.c
usr/src/boot/sys/boot/efi/loader/efi_main.c
usr/src/boot/sys/boot/efi/loader/framebuffer.c
usr/src/boot/sys/boot/efi/loader/main.c
usr/src/boot/sys/boot/forth/Makefile.inc
usr/src/boot/sys/boot/forth/frames.4th
usr/src/boot/sys/boot/forth/illumos.png [new file with mode: 0644]
usr/src/boot/sys/boot/forth/logo-illumos.4th
usr/src/boot/sys/boot/i386/gptzfsboot/zfsboot.c
usr/src/boot/sys/boot/i386/libi386/Makefile
usr/src/boot/sys/boot/i386/libi386/comconsole.c
usr/src/boot/sys/boot/i386/libi386/linux.c
usr/src/boot/sys/boot/i386/libi386/multiboot.c
usr/src/boot/sys/boot/i386/libi386/nullconsole.c
usr/src/boot/sys/boot/i386/libi386/spinconsole.c
usr/src/boot/sys/boot/i386/libi386/vbe.c [new file with mode: 0644]
usr/src/boot/sys/boot/i386/libi386/vbe.h [new file with mode: 0644]
usr/src/boot/sys/boot/i386/libi386/vidconsole.c
usr/src/boot/sys/boot/i386/loader/Makefile
usr/src/boot/sys/boot/i386/loader/chain.c
usr/src/boot/sys/boot/i386/loader/main.c
usr/src/boot/sys/boot/libficl/Makefile.com
usr/src/boot/sys/boot/ofw/common/main.c
usr/src/boot/sys/boot/uboot/common/main.c
usr/src/boot/sys/boot/userboot/userboot/main.c
usr/src/boot/sys/cddl/boot/zfs/zfsimpl.h
usr/src/boot/sys/sys/font.h [new file with mode: 0644]
usr/src/boot/sys/sys/sysmacros.h [new file with mode: 0644]
usr/src/boot/sys/sys/tem.h [new file with mode: 0644]
usr/src/boot/sys/sys/tem_impl.h [new file with mode: 0644]
usr/src/boot/sys/sys/types.h
usr/src/common/ficl/ficlplatform/pager.c
usr/src/common/ficl/loader.c
usr/src/common/ficl/main.c
usr/src/common/ficl/tools.c
usr/src/common/font/font.c [new file with mode: 0644]
usr/src/common/pnglite/THIRDPARTYLICENSE [new file with mode: 0644]
usr/src/common/pnglite/THIRDPARTYLICENSE.descrip [new file with mode: 0644]
usr/src/common/pnglite/pnglite.c [new file with mode: 0644]
usr/src/common/pnglite/pnglite.h [new file with mode: 0644]
usr/src/common/vga/vgasubr.c [moved from usr/src/uts/common/io/vgasubr.c with 87% similarity]
usr/src/lib/libficl/Makefile.com
usr/src/man/man5/loader.5
usr/src/pkg/manifests/system-boot-loader.mf
usr/src/uts/common/Makefile.rules
usr/src/uts/common/sys/consplat.h
usr/src/uts/common/sys/vgareg.h
usr/src/uts/common/sys/vgasubr.h
usr/src/uts/common/sys/visual_io.h