2020-04-12 15:17:15 +02:00
|
|
|
/*
|
|
|
|
* pslash - a lightweight framebuffer splashscreen for embedded devices.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 MenloSystems GmbH
|
|
|
|
* Author: Olaf Mandel <o.mandel@menlosystems.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAVE_PSPLASH_CONFIG_H
|
|
|
|
#define _HAVE_PSPLASH_CONFIG_H
|
|
|
|
|
|
|
|
/* Text to output on program start; if undefined, output nothing */
|
|
|
|
#ifndef PSPLASH_DISABLE_STARTUP_MSG
|
2020-04-20 14:17:25 +02:00
|
|
|
#define PSPLASH_STARTUP_MSG ""
|
2020-04-12 15:17:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Bool indicating if the image is fullscreen, as opposed to split screen */
|
|
|
|
#ifndef PSPLASH_IMG_FULLSCREEN
|
2020-04-20 14:17:25 +02:00
|
|
|
#define PSPLASH_IMG_FULLSCREEN 1
|
2020-04-12 15:17:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Position of the image split from top edge, numerator of fraction */
|
2020-04-21 09:36:05 +02:00
|
|
|
#define PSPLASH_IMG_SPLIT_NUMERATOR 6
|
2020-04-12 15:17:15 +02:00
|
|
|
|
|
|
|
/* Position of the image split from top edge, denominator of fraction */
|
2020-04-21 09:36:05 +02:00
|
|
|
#define PSPLASH_IMG_SPLIT_DENOMINATOR 7
|
2020-04-12 15:17:15 +02:00
|
|
|
|
|
|
|
#endif
|