summaryrefslogtreecommitdiffstats
path: root/bsps/i386/pc386/include/bsp/fb_default_mode.h
blob: a71e379ce5d0d402c9dec8a016af479f886c0c9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @file
 *
 * @ingroup i386_pc386
 *
 * @brief Variable for the definition of the default graphical mode to be
 *     initialized.
 */

/*
 * @brief Allows to enable initialization of specific framebuffer driver (e.g.
 * VESA real mode) from an application by setting the value of this variable
 * to non null value in user's module. The value of this variable will be then
 * updated when linked with an application's object.
 *
 * Further the value should point to string in the following format:
 * "<resX>x<resY>[-<bpp>]" - e.g. "1024x768-32"
 * "auto" - select the graphic mode automatically
 * "none" / "off" - do not initialize the driver
 * the given parameters are used if applicable.
 *
 * Command line argument "--video=" has priority over this string if
 * it is read/implemented by the driver.
 */
extern const char * const rtems_fb_default_mode;