diff --git a/buildroot-external/package/mycroft-splash/base-images/psplash-bar.png b/buildroot-external/package/mycroft-splash/base-images/psplash-bar.png index 56e1d86c..f16371a9 100644 Binary files a/buildroot-external/package/mycroft-splash/base-images/psplash-bar.png and b/buildroot-external/package/mycroft-splash/base-images/psplash-bar.png differ diff --git a/buildroot-external/package/mycroft-splash/base-images/psplash-poky.png b/buildroot-external/package/mycroft-splash/base-images/psplash-poky.png index 72750920..fa4f8237 100644 Binary files a/buildroot-external/package/mycroft-splash/base-images/psplash-poky.png and b/buildroot-external/package/mycroft-splash/base-images/psplash-poky.png differ diff --git a/buildroot-external/package/mycroft-splash/mycroft-splash.mk b/buildroot-external/package/mycroft-splash/mycroft-splash.mk index d2aa88d7..e85e6b4f 100644 --- a/buildroot-external/package/mycroft-splash/mycroft-splash.mk +++ b/buildroot-external/package/mycroft-splash/mycroft-splash.mk @@ -26,6 +26,7 @@ endef define MYCROFT_SPLASH_CHANGE_IMAGE cp $(BR2_EXTERNAL_MYCROFTOS_PATH)/package/mycroft-splash/psplash-colors.h $(@D) + cp $(BR2_EXTERNAL_MYCROFTOS_PATH)/package/mycroft-splash/psplash-config.h $(@D) cp $(BR2_EXTERNAL_MYCROFTOS_PATH)/package/mycroft-splash/base-images/* $(@D)/base-images/ endef diff --git a/buildroot-external/package/mycroft-splash/psplash-config.h b/buildroot-external/package/mycroft-splash/psplash-config.h new file mode 100644 index 00000000..74d048a5 --- /dev/null +++ b/buildroot-external/package/mycroft-splash/psplash-config.h @@ -0,0 +1,30 @@ +/* + * pslash - a lightweight framebuffer splashscreen for embedded devices. + * + * Copyright (c) 2014 MenloSystems GmbH + * Author: Olaf Mandel + * + * 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 +#define PSPLASH_STARTUP_MSG "Booting MycroftOS" +#endif + +/* Bool indicating if the image is fullscreen, as opposed to split screen */ +#ifndef PSPLASH_IMG_FULLSCREEN +#define PSPLASH_IMG_FULLSCREEN 0 +#endif + +/* Position of the image split from top edge, numerator of fraction */ +#define PSPLASH_IMG_SPLIT_NUMERATOR 5 + +/* Position of the image split from top edge, denominator of fraction */ +#define PSPLASH_IMG_SPLIT_DENOMINATOR 6 + +#endif