* [PATCH] (reformated) Allow board specific fancy banner
@ 2010-12-26 21:40 Franck JULLIEN
2010-12-27 6:43 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-29 11:36 ` Uwe Kleine-König
0 siblings, 2 replies; 4+ messages in thread
From: Franck JULLIEN @ 2010-12-26 21:40 UTC (permalink / raw)
To: barebox
This time I used git to send the email. I think I get it right.
However, I didn't find how to put this file in the thread we were later...
I don't think it is possible since those emails didn't have ID's to use with
the In-Reply-To option (right ?).
---
common/Kconfig | 6 ++++++
common/console.c | 10 ++++++++++
2 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/common/Kconfig b/common/Kconfig
index 617f640..d46c8fc 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -248,6 +248,12 @@ config HUSH_FANCY_PROMPT
Allow to set PS1 from the command line. PS1 can have several escaped commands
like \h for CONFIG_BOARDINFO or \w for the current working directory.
+config BOARD_BANNER
+ bool
+ prompt "allow a board specific fancy banner"
+ help
+ Allow to define a custom board banner (you must define BOARD_BANNER in your config.h)
+
config HUSH_GETOPT
bool
depends on SHELL_HUSH
diff --git a/common/console.c b/common/console.c
index 82786f2..8a830e3 100644
--- a/common/console.c
+++ b/common/console.c
@@ -46,7 +46,17 @@ EXPORT_SYMBOL(console_list);
static void display_banner (void)
{
printf (RELOC("\n\n%s\n\n"), RELOC_VAR(version_string));
+#ifdef CONFIG_BOARD_BANNER
+#ifdef BOARD_BANNER
+ printf(RELOC(BOARD_BANNER));
+#else
+#define VT100_YELLOW "\033[1;33m"
+#define VT100_RESET "\033[1;0m"
+ printf(RELOC("Board: " VT100_YELLOW CONFIG_BOARDINFO VT100_RESET "\n"));
+#endif
+#else
printf(RELOC("Board: " CONFIG_BOARDINFO "\n"));
+#endif
}
static int __early_initdata initialized = 0;
--
1.7.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] (reformated) Allow board specific fancy banner
2010-12-26 21:40 [PATCH] (reformated) Allow board specific fancy banner Franck JULLIEN
@ 2010-12-27 6:43 ` Jean-Christophe PLAGNIOL-VILLARD
[not found] ` <AANLkTik6kuBviOejiXT_6eU2ZiaagDDMJy2Fsgc_6dk_@mail.gmail.com>
2010-12-29 11:36 ` Uwe Kleine-König
1 sibling, 1 reply; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2010-12-27 6:43 UTC (permalink / raw)
To: Franck JULLIEN; +Cc: barebox
On 22:40 Sun 26 Dec , Franck JULLIEN wrote:
> This time I used git to send the email. I think I get it right.
> However, I didn't find how to put this file in the thread we were later...
> I don't think it is possible since those emails didn't have ID's to use with
> the In-Reply-To option (right ?).
>
> ---
> common/Kconfig | 6 ++++++
> common/console.c | 10 ++++++++++
> 2 files changed, 16 insertions(+), 0 deletions(-)
>
> diff --git a/common/Kconfig b/common/Kconfig
> index 617f640..d46c8fc 100644
> --- a/common/Kconfig
> +++ b/common/Kconfig
> @@ -248,6 +248,12 @@ config HUSH_FANCY_PROMPT
> Allow to set PS1 from the command line. PS1 can have several escaped commands
> like \h for CONFIG_BOARDINFO or \w for the current working directory.
>
> +config BOARD_BANNER
> + bool
> + prompt "allow a board specific fancy banner"
> + help
> + Allow to define a custom board banner (you must define BOARD_BANNER in your config.h)
> +
> config HUSH_GETOPT
> bool
> depends on SHELL_HUSH
> diff --git a/common/console.c b/common/console.c
> index 82786f2..8a830e3 100644
> --- a/common/console.c
> +++ b/common/console.c
> @@ -46,7 +46,17 @@ EXPORT_SYMBOL(console_list);
> static void display_banner (void)
> {
> printf (RELOC("\n\n%s\n\n"), RELOC_VAR(version_string));
> +#ifdef CONFIG_BOARD_BANNER
> +#ifdef BOARD_BANNER
> + printf(RELOC(BOARD_BANNER));
> +#else
> +#define VT100_YELLOW "\033[1;33m"
> +#define VT100_RESET "\033[1;0m"
> + printf(RELOC("Board: " VT100_YELLOW CONFIG_BOARDINFO VT100_RESET "\n"));
why not define it in the Kconfig simply?
I'm sorry but I do not see why we can not do it in the defconfig
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] (reformated) Allow board specific fancy banner
[not found] ` <AANLkTik6kuBviOejiXT_6eU2ZiaagDDMJy2Fsgc_6dk_@mail.gmail.com>
@ 2010-12-28 6:33 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 0 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2010-12-28 6:33 UTC (permalink / raw)
To: Franck JULLIEN; +Cc: barebox
> > diff --git a/common/console.c b/common/console.c
> > index 82786f2..8a830e3 100644
> > --- a/common/console.c
> > +++ b/common/console.c
> > @@ -46,7 +46,17 @@ EXPORT_SYMBOL(console_list);
> > static void display_banner (void)
> > {
> > printf (RELOC("\n\n%s\n\n"), RELOC_VAR(version_string));
> > +#ifdef CONFIG_BOARD_BANNER
> > +#ifdef BOARD_BANNER
> > + printf(RELOC(BOARD_BANNER));
> > +#else
> > +#define VT100_YELLOW "\033[1;33m"
> > +#define VT100_RESET "\033[1;0m"
> > + printf(RELOC("Board: " VT100_YELLOW CONFIG_BOARDINFO VT100_RESET
> "\n"));
> why not define it in the Kconfig simply?
>
> I'm sorry but I do not see why we can not do it in the defconfig
>
> Best Regards,
> J.
>
> We could do it in the arch/_the_arch_/Kconfig with depends on _your_board_
> but I don't think that the better/more generic way. Moreover, if we ask
> for the banner in Kconfig (with a string entry), fancy escape code and/or
> carriage return will be hard to enter manually.
> This is for example what I use for my neek board:
> #define BOARD_BANNER "\e[1;32m\
> ****************************************\n\
> * Altera NEEK board *\n\
> ****************************************\
> \e[0m\n\n"
> However, if you want I could manage to use the Kconfig way.....
> Best regards,
so define completely the banner in the config.h
no VT100.... in the console.c as diferrent boards will have different colour
and something like this will be better
#ifndef CONFIG_BOARD_BANNER
#undef CONFIG_BOARD_BANNER_TEXT
#define CONFIG_BOARD_BANNER_TEXT "Board: " CONFIG_BOARDINFO "\n"
#endif
printf(RELOC(CONFIG_BOARD_BANNER_TEXT));
please keep CONFIG_xxxx for the macro even in the config.h
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] (reformated) Allow board specific fancy banner
2010-12-26 21:40 [PATCH] (reformated) Allow board specific fancy banner Franck JULLIEN
2010-12-27 6:43 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2010-12-29 11:36 ` Uwe Kleine-König
1 sibling, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2010-12-29 11:36 UTC (permalink / raw)
To: Franck JULLIEN; +Cc: barebox
On Sun, Dec 26, 2010 at 10:40:52PM +0100, Franck JULLIEN wrote:
> This time I used git to send the email. I think I get it right.
> However, I didn't find how to put this file in the thread we were later...
> I don't think it is possible since those emails didn't have ID's to use with
> the In-Reply-To option (right ?).
--in-reply-to 'AANLkTik+7KJrf3H6ZW3i9pA115p2Gn=k=CXYHg5YJwRY@mail.gmail.com'
would have been the correct option.
And please put such infomal text after the tripple dash below, otherwise
it will end up in the commit log.
> ---
> common/Kconfig | 6 ++++++
> common/console.c | 10 ++++++++++
> 2 files changed, 16 insertions(+), 0 deletions(-)
>
> diff --git a/common/Kconfig b/common/Kconfig
> index 617f640..d46c8fc 100644
> --- a/common/Kconfig
> +++ b/common/Kconfig
> @@ -248,6 +248,12 @@ config HUSH_FANCY_PROMPT
> Allow to set PS1 from the command line. PS1 can have several escaped commands
> like \h for CONFIG_BOARDINFO or \w for the current working directory.
>
> +config BOARD_BANNER
> + bool
> + prompt "allow a board specific fancy banner"
> + help
> + Allow to define a custom board banner (you must define BOARD_BANNER in your config.h)
The patch below seems to handle a missing BOARD_BANNER just fine, so
maybe s/must/can/.
Best regards
Uwe
> +
> config HUSH_GETOPT
> bool
> depends on SHELL_HUSH
> diff --git a/common/console.c b/common/console.c
> index 82786f2..8a830e3 100644
> --- a/common/console.c
> +++ b/common/console.c
> @@ -46,7 +46,17 @@ EXPORT_SYMBOL(console_list);
> static void display_banner (void)
> {
> printf (RELOC("\n\n%s\n\n"), RELOC_VAR(version_string));
> +#ifdef CONFIG_BOARD_BANNER
> +#ifdef BOARD_BANNER
> + printf(RELOC(BOARD_BANNER));
> +#else
> +#define VT100_YELLOW "\033[1;33m"
> +#define VT100_RESET "\033[1;0m"
> + printf(RELOC("Board: " VT100_YELLOW CONFIG_BOARDINFO VT100_RESET "\n"));
> +#endif
> +#else
> printf(RELOC("Board: " CONFIG_BOARDINFO "\n"));
> +#endif
> }
>
> static int __early_initdata initialized = 0;
> --
> 1.7.1
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-29 11:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-26 21:40 [PATCH] (reformated) Allow board specific fancy banner Franck JULLIEN
2010-12-27 6:43 ` Jean-Christophe PLAGNIOL-VILLARD
[not found] ` <AANLkTik6kuBviOejiXT_6eU2ZiaagDDMJy2Fsgc_6dk_@mail.gmail.com>
2010-12-28 6:33 ` Jean-Christophe PLAGNIOL-VILLARD
2010-12-29 11:36 ` Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox