From: Andrei Gherzan <agher...@hanoverdisplays.com> Signed-off-by: Andrei Gherzan <agher...@hanoverdisplays.com> --- Makefile.am | 2 +- configure.ac | 18 ++++++++++++++++++ psplash-config.h | 4 ++++ 3 files changed, 23 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am index 3721a6e..3f1cfc2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ bin_PROGRAMS=psplash psplash-write -AM_CFLAGS = $(GCC_FLAGS) -D_GNU_SOURCE -DFONT_HEADER=\"$(FONT_NAME)-font.h\" -DFONT_DEF=$(FONT_NAME)_font +AM_CFLAGS = $(GCC_FLAGS) $(EXTRA_GCC_FLAGS) -D_GNU_SOURCE -DFONT_HEADER=\"$(FONT_NAME)-font.h\" -DFONT_DEF=$(FONT_NAME)_font psplash_SOURCES = psplash.c psplash.h psplash-fb.c psplash-fb.h \ psplash-console.c psplash-console.h \ diff --git a/configure.ac b/configure.ac index 9e78ac0..e2b7f58 100644 --- a/configure.ac +++ b/configure.ac @@ -20,6 +20,24 @@ AC_ARG_WITH([font], [FONT_NAME=radeon]) AC_SUBST([FONT_NAME]) +AC_ARG_ENABLE([startup-msg], + AS_HELP_STRING([--disable-startup-msg], [Disable text banner output on startup]), + [disable_startup_msg=true], + [disable_startup_msg=false]) +AS_IF([test x$disable_startup_msg = xtrue], [ + EXTRA_GCC_FLAGS="$EXTRA_GCC_FLAGS -DPSPLASH_DISABLE_STARTUP_MSG" +]) + +AC_ARG_ENABLE([img-fullscreen], + AS_HELP_STRING([--enable-img-fullscreen], [Enable the logo image in fullscreen mode)]), + [img_fullscreen=true], + [img_fullscreen=false]) +AS_IF([test x$img_fullscreen = xtrue], [ + EXTRA_GCC_FLAGS="$EXTRA_GCC_FLAGS -DPSPLASH_IMG_FULLSCREEN=1" +]) + +AC_SUBST(EXTRA_GCC_FLAGS) + AC_OUTPUT([ Makefile ]) diff --git a/psplash-config.h b/psplash-config.h index 82bb76d..ecbf3df 100644 --- a/psplash-config.h +++ b/psplash-config.h @@ -20,10 +20,14 @@ #define _HAVE_PSPLASH_CONFIG_H /* Text to output on program start; if undefined, output nothing */ +#ifndef PSPLASH_DISABLE_STARTUP_MSG #define PSPLASH_STARTUP_MSG "" +#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 -- 2.17.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#47721): https://lists.yoctoproject.org/g/yocto/message/47721 Mute This Topic: https://lists.yoctoproject.org/mt/68757437/21656 Group Owner: yocto+ow...@lists.yoctoproject.org Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-