summaryrefslogtreecommitdiff
path: root/sys/modules/splash
Commit message (Collapse)AuthorAgeFilesLines
* MFC: Added support for 1bpp and 4bpp BMP files and PC-98.Yoshihiro Takahashi2000-08-132-68/+127
| | | | Notes: svn path=/stable/4/; revision=64600
* $Id$ -> $FreeBSD$Peter Wemm1999-08-286-6/+6
| | | | Notes: svn path=/head/; revision=50477
* Use the correct value for banksize so splash_pcx works in LFB modes.Dag-Erling Smørgrav1999-06-281-2/+2
| | | | Notes: svn path=/head/; revision=48323
* The second phase of syscons reorganization.Kazutaka YOKOTA1999-06-222-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Split syscons source code into manageable chunks and reorganize some of complicated functions. - Many static variables are moved to the softc structure. - Added a new key function, PREV. When this key is pressed, the vty immediately before the current vty will become foreground. Analogue to PREV, which is usually assigned to the PrntScrn key. PR: kern/10113 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de> - Modified the kernel console input function sccngetc() so that it handles function keys properly. - Reorganized the screen update routine. - VT switching code is reorganized. It now should be slightly more robust than before. - Added the DEVICE_RESUME function so that syscons no longer hooks the APM resume event directly. - New kernel configuration options: SC_NO_CUTPASTE, SC_NO_FONT_LOADING, SC_NO_HISTORY and SC_NO_SYSMOUSE. Various parts of syscons can be omitted so that the kernel size is reduced. SC_PIXEL_MODE Made the VESA 800x600 mode an option, rather than a standard part of syscons. SC_DISABLE_DDBKEY Disables the `debug' key combination. SC_ALT_MOUSE_IMAGE Inverse the character cell at the mouse cursor position in the text console, rather than drawing an arrow on the screen. Submitted by: Nick Hibma (n_hibma@FreeBSD.ORG) SC_DFLT_FONT makeoptions "SC_DFLT_FONT=_font_name_" Include the named font as the default font of syscons. 16-line, 14-line and 8-line font data will be compiled in. This option replaces the existing STD8X16FONT option, which loads 16-line font data only. - The VGA driver is split into /sys/dev/fb/vga.c and /sys/isa/vga_isa.c. - The video driver provides a set of ioctl commands to manipulate the frame buffer. - New kernel configuration option: VGA_WIDTH90 Enables 90 column modes: 90x25, 90x30, 90x43, 90x50, 90x60. These modes are mot always supported by the video card. PR: i386/7510 Submitted by: kbyanc@freedomnet.com and alexv@sui.gda.itesm.mx. - The header file machine/console.h is reorganized; its contents is now split into sys/fbio.h, sys/kbio.h (a new file) and sys/consio.h (another new file). machine/console.h is still maintained for compatibility reasons. - Kernel console selection/installation routines are fixed and slightly rebumped so that it should now be possible to switch between the interanl kernel console (sc or vt) and a remote kernel console (sio) again, as it was in 2.x, 3.0 and 3.1. - Screen savers and splash screen decoders Because of the header file reorganization described above, screen savers and splash screen decoders are slightly modified. After this update, /sys/modules/syscons/saver.h is no longer necessary and is removed. Notes: svn path=/head/; revision=48104
* Print verbose messages when there is error.Kazutaka YOKOTA1999-06-161-2/+21
| | | | | | | Oked by: des Notes: svn path=/head/; revision=47945
* Fixed bogus SRCS definition which broke `make depend'. Plain `make'Bruce Evans1999-04-131-3/+2
| | | | | | | | | | worked accidentally because the rule to generate ${OBJS} from ${SRCS} is sloppy. Fixed style bugs. Notes: svn path=/head/; revision=45647
* PCX loader for pseudo-device splash.Dag-Erling Smørgrav1999-04-123-2/+272
| | | | Notes: svn path=/head/; revision=45617
* Make the splash screen alternate "fade out" and "fade in" action atKazutaka YOKOTA1999-03-291-5/+20
| | | | | | | | | regular intervals, when the module is used as a screen saver. Submitted by: asami Notes: svn path=/head/; revision=45119
* - Don't assume the line length in the video memory is always the same asKazutaka YOKOTA1999-02-051-7/+8
| | | | | | | | | | the screen width. - Store the current video mode information in the `video_adapter' struct. - The size of the `v_offscreensize' field in the VESA mode information block is u_int16, not u_int8. Notes: svn path=/head/; revision=43664
* Oops, one line was accidentally commented out in the previous commit.Kazutaka YOKOTA1999-01-261-3/+1
| | | | Notes: svn path=/head/; revision=43229
* Add VESA mode support. If the VESA support is compiled into the kernelKazutaka YOKOTA1999-01-211-5/+61
| | | | | | | | or the VESA KLD is preloaded by the boot loader, you can load a 256 color BMP file larger than 320x200. Notes: svn path=/head/; revision=42998
* Calculate the number of bitmap colors in the correct way.Kazutaka YOKOTA1999-01-131-2/+2
| | | | | | | The bug found by: Kevin Street <street@iname.com> Notes: svn path=/head/; revision=42623
* Update the pointer into the bitmap correctly. The previous codeKazutaka YOKOTA1999-01-111-2/+2
| | | | | | | | had the pointer off by 4 bytes if the width of the bitmap is a multiple of four. Notes: svn path=/head/; revision=42529
* Add splash screen module. This version has rather limitedKazutaka YOKOTA1999-01-114-0/+510
capabilities, but should be a good start... Well, sort of. It can handle W*ndows 256 color BMP file. (Other color depth probably won't work.) The size of the image must be 320x200 or less. *sigh* Notes: svn path=/head/; revision=42506