Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:23:41

0001 /**
0002  * @file
0003  *
0004  * @ingroup RTEMSBSPsI386
0005  *
0006  * @brief Variable for the definition of the default graphical mode to be
0007  *     initialized.
0008  */
0009 
0010 /*
0011  * @brief Allows to enable initialization of specific framebuffer driver (e.g.
0012  * VESA real mode) from an application by setting the value of this variable
0013  * to non null value in user's module. The value of this variable will be then
0014  * updated when linked with an application's object.
0015  *
0016  * Further the value should point to string in the following format:
0017  * "<resX>x<resY>[-<bpp>]" - e.g. "1024x768-32"
0018  * "auto" - select the graphic mode automatically
0019  * "none" / "off" - do not initialize the driver
0020  * the given parameters are used if applicable.
0021  *
0022  * Command line argument "--video=" has priority over this string if
0023  * it is read/implemented by the driver.
0024  */
0025 extern const char * const rtems_fb_default_mode;