From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chin Liang See Date: Mon, 7 Dec 2015 14:25:31 +0800 Subject: [U-Boot] [PATCH 4/6] arm: socfpga: Switch CONFIG_HOSTNAME to CONFIG_SYS_BOARD In-Reply-To: <1449348262-18488-4-git-send-email-marex@denx.de> References: <1449348262-18488-1-git-send-email-marex@denx.de> <1449348262-18488-4-git-send-email-marex@denx.de> Message-ID: <1449469531.2140.6.camel@altera.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Sat, 2015-12-05 at 21:44 +0100, Marek Vasut wrote: > We already have the CONFIG_SYS_BOARD variable, which defines the name > of the board. The value in CONFIG_HOSTNAME is exactly the same and is > thus just a duplicity, so switch it to reuse CONFIG_SYS_BOARD . > > Signed-off-by: Marek Vasut > Cc: Chin Liang See > Cc: Dinh Nguyen > --- > include/configs/socfpga_arria5_socdk.h | 2 -- > include/configs/socfpga_common.h | 4 ++++ > include/configs/socfpga_cyclone5_socdk.h | 2 -- > include/configs/socfpga_de0_nano_soc.h | 2 -- > include/configs/socfpga_mcvevk.h | 2 -- > include/configs/socfpga_sockit.h | 2 -- > include/configs/socfpga_socrates.h | 2 -- > include/configs/socfpga_sr1500.h | 3 --- > 8 files changed, 4 insertions(+), 15 deletions(-) > > diff --git a/include/configs/socfpga_arria5_socdk.h > b/include/configs/socfpga_arria5_socdk.h > index a036856..3d5665d 100644 > --- a/include/configs/socfpga_arria5_socdk.h > +++ b/include/configs/socfpga_arria5_socdk.h > @@ -56,8 +56,6 @@ > #define CONFIG_ENV_OFFSET 512 /* just after > the MBR */ > > /* Extra Environment */ > -#define CONFIG_HOSTNAME socfpga_arria5 > - > #define CONFIG_EXTRA_ENV_SETTINGS \ > "verify=n\0" \ > "loadaddr= " __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ > diff --git a/include/configs/socfpga_common.h > b/include/configs/socfpga_common.h > index 4b2d246..f74c758 100644 > --- a/include/configs/socfpga_common.h > +++ b/include/configs/socfpga_common.h > @@ -69,6 +69,10 @@ > #define CONFIG_CMDLINE_EDITING /* Command > history etc */ > #define CONFIG_SYS_HUSH_PARSER > > +#ifndef CONFIG_SYS_HOSTNAME > +#define CONFIG_SYS_HOSTNAME CONFIG_SYS_BOARD > +#endif > + > I saw the change of hostname for socdk would be "socfpga_cyclone5" to "cyclone5-socdk" and same for other board. Wonder any impact on this change? Thanks Chin Liang