From: Nikita Kiryanov <nikita@compulab.co.il>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V2 12/12] kconfig: add config option for shell prompt
Date: Sun, 2 Aug 2015 11:33:27 +0300 [thread overview]
Message-ID: <20150802083327.GA18433@skynet> (raw)
In-Reply-To: <CAK7LNARgOEJGg_qteXkTTq0LXt2jEOx8oLvO921UdA-H0OJKHw@mail.gmail.com>
On Wed, Jul 29, 2015 at 12:59:00AM +0900, Masahiro Yamada wrote:
> 2015-07-28 16:08 GMT+09:00 Nikita Kiryanov <nikita@compulab.co.il>:
> > Add option to set shell prompt string from menuconfig and migrate
> > boards globally.
> >
> > The migration is done as follows:
> > - Boards that explicitly and unconditionally set CONFIG_SYS_PROMPT had the
> > entry moved to their defconfig files.
> > - Boards that defined some kind of #ifdef logic which selects the
> > CONFIG_SYS_PROMPT (for example qemu-mips) got an #undef CONFIG_SYS_PROMPT
> > right before the #ifdef logic and were left alone.
> > - This change forces CONFIG_SYS_PROMPT to be a per board decision, and thus
> > CONFIG_SYS_PROMPT was removed from all <soc>_common.h and <arch>_common.h
> > files. This results in a streamlined default value across platforms, and
> > includes the following files: spear-common, sunxi-common, mv-common,
> > ti_armv7_common, tegra-common, at91-sama5_common, and zynq-common.
> > - Boards that relied on <arch/soc>_common.h values of CONFIG_SYS_PROMPT were
> > not updated in their respective defconfig files under the assumption that
> > since they did not explicitly define a value, they're fine with whatever
> > the default is.
> > - On the other hand, boards that relied on a value defined in some
> > <boards>_common.h file such as woodburn_common, rpi-common,
> > bur_am335x_common, ls2085a_common, siemens_am33x_common, and
> > omap3_evm_common, had their values moved to the respective defconfig files.
> > - The define V_PROMPT was removed, since it is not used anywhere except for
> > assigning a value for CONFIG_SYS_PROMPT.
> >
> > Cc: Tom Rini <trini@konsulko.com>
> > Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
> > Cc: Stefano Babic <sbabic@denx.de>
> > Cc: Igor Grinberg <grinberg@compulab.co.il>
> > Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
> > ---
> > Changes in V2:
> > - Migrate boards globally (compile tested with buildman on arm and
> > powerpc)
> > - Change default value to "=> "
> > - V_PROMPT define removed as part of the migration
> >
>
> > diff --git a/configs/T1023RDB_NAND_defconfig b/configs/T1023RDB_NAND_defconfig
> > index 3ee42d6..af44f87 100644
> > --- a/configs/T1023RDB_NAND_defconfig
> > +++ b/configs/T1023RDB_NAND_defconfig
> > @@ -6,3 +6,4 @@ CONFIG_SYS_EXTRA_OPTIONS="PPC_T1023,T1023RDB,RAMBOOT_PBL,SPL_FSL_PBL,NAND"
> > # CONFIG_CMD_IMLS is not set
> > # CONFIG_CMD_FLASH is not set
> > CONFIG_SPI_FLASH=y
> > +CONFIG_SYS_PROMPT="=> "
>
>
> This is the same as the default. It should not appear in a defconfig.
I'll take care of it in a V3...
>
> It is not sorted by savedefconfig, either.
>
> tools/moveconfig.py exists to do such things automatically.
OK I'll use it next time.
>
> --
> Best Regards
> Masahiro Yamada
>
next prev parent reply other threads:[~2015-08-02 8:33 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-23 14:19 [U-Boot] [PATCH 00/12] cm-fx6 and kconfig updates Nikita Kiryanov
2015-07-23 14:19 ` [U-Boot] [PATCH 01/12] arm: mx6: cm-fx6: map HDMI to IPU1 DI0 explicitly Nikita Kiryanov
2015-07-23 17:54 ` Nikolay Dimitrov
2015-07-26 8:48 ` Nikita Kiryanov
2015-07-26 13:32 ` Nikolay Dimitrov
2015-07-26 17:04 ` Igor Grinberg
2015-08-02 8:53 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 02/12] arm: mx6: cm-fx6: make it possible to not init display Nikita Kiryanov
2015-08-02 8:53 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 03/12] arm: mx6: cm-fx6: add support for displaytype env var Nikita Kiryanov
2015-07-26 17:27 ` Igor Grinberg
2015-08-02 8:53 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 04/12] arm: mx6: cm-fx6: setup hdmi only on hdmi enable Nikita Kiryanov
2015-07-26 17:28 ` Igor Grinberg
2015-08-02 8:53 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 05/12] arm: mx6: cm-fx6: move CMD configs to defconfig Nikita Kiryanov
2015-07-26 17:29 ` Igor Grinberg
2015-08-02 8:53 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 06/12] arm: mx6: cm-fx6: move cm-fx6 target under ARCH_MX6 Nikita Kiryanov
2015-07-26 17:31 ` Igor Grinberg
2015-08-02 8:54 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 07/12] arm: mx6: kconfig: don't select CPU_V7 per board Nikita Kiryanov
2015-08-02 8:54 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 08/12] arm: mx6: usb: kconfig: add USB_EHCI_MX6 kconfig option Nikita Kiryanov
2015-07-23 15:01 ` Marek Vasut
2015-07-26 8:17 ` Nikita Kiryanov
2015-07-26 9:36 ` Stefano Babic
2015-07-26 10:35 ` Marek Vasut
2015-07-26 10:50 ` Stefano Babic
2015-07-27 10:35 ` Nikita Kiryanov
2015-07-26 17:35 ` Igor Grinberg
2015-08-02 8:54 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 09/12] usb: kconfig: usb keyboard kconfig Nikita Kiryanov
2015-07-23 15:01 ` Marek Vasut
2015-07-26 8:18 ` Nikita Kiryanov
2015-07-26 17:37 ` Igor Grinberg
2015-08-02 8:54 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 10/12] usb: kconfig: create a menu for usb Nikita Kiryanov
2015-07-23 15:01 ` Marek Vasut
2015-07-23 14:19 ` [U-Boot] [PATCH 11/12] sf: kconfig: add kconfig options for spi flashes Nikita Kiryanov
2015-07-26 17:37 ` Igor Grinberg
2015-08-02 8:54 ` Stefano Babic
2015-07-23 14:19 ` [U-Boot] [PATCH 12/12] kconfig: add config option for shell prompt Nikita Kiryanov
2015-07-23 21:21 ` Tom Rini
2015-07-24 2:05 ` Masahiro Yamada
2015-07-26 8:44 ` Nikita Kiryanov
2015-07-28 7:08 ` [U-Boot] [PATCH V2 " Nikita Kiryanov
2015-07-28 15:59 ` Masahiro Yamada
2015-08-02 8:33 ` Nikita Kiryanov [this message]
2015-08-02 8:53 ` Stefano Babic
2015-08-02 11:40 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150802083327.GA18433@skynet \
--to=nikita@compulab.co.il \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox