Re: [U-Boot] [PATCH] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-02-02 Thread Masahiro Yamada
2018-02-01 0:21 GMT+09:00 Alexey Brodkin : > Hi Masahiro-san, > > On Thu, 2018-02-01 at 00:18 +0900, Masahiro Yamada wrote: >> 2018-01-31 1:28 GMT+09:00 Alexey Brodkin : >> > Hi MAsahiro-san, Tom, >> > >> > On Wed, 2018-01-31 at 01:23 +0900, Masahiro Yamada wrote: >> > > 2018-01-31 0:23 GMT+09:00 A

Re: [U-Boot] [PATCH] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-01-31 Thread Alexey Brodkin
Hi Masahiro-san, On Thu, 2018-02-01 at 00:18 +0900, Masahiro Yamada wrote: > 2018-01-31 1:28 GMT+09:00 Alexey Brodkin : > > Hi MAsahiro-san, Tom, > > > > On Wed, 2018-01-31 at 01:23 +0900, Masahiro Yamada wrote: > > > 2018-01-31 0:23 GMT+09:00 Alexey Brodkin : > > > > > > > > > > Please feel fr

Re: [U-Boot] [PATCH] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-01-31 Thread Masahiro Yamada
2018-01-31 1:28 GMT+09:00 Alexey Brodkin : > Hi MAsahiro-san, Tom, > > On Wed, 2018-01-31 at 01:23 +0900, Masahiro Yamada wrote: >> 2018-01-31 0:23 GMT+09:00 Alexey Brodkin : >> > >> Please feel free to include historical reason: >> >> This ifneq conditional was added for Blackfin because it did no

Re: [U-Boot] [PATCH] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-01-30 Thread Alexey Brodkin
Hi MAsahiro-san, Tom, On Wed, 2018-01-31 at 01:23 +0900, Masahiro Yamada wrote: > 2018-01-31 0:23 GMT+09:00 Alexey Brodkin : > > > Please feel free to include historical reason: > > This ifneq conditional was added for Blackfin because it did not use > CONFIG_SYS_TEXT_BASE. > See. > https://urld

Re: [U-Boot] [PATCH] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-01-30 Thread Masahiro Yamada
2018-01-31 0:23 GMT+09:00 Alexey Brodkin : > CONFIG_SYS_TEXT_BASE must be set anyways and then it is used in many > places in the same Makefile without any checks so there's no point in > keeping this check araound just in one place. > > Signed-off-by: Alexey Brodkin > Cc: Tom Rini > --- > Makef

[U-Boot] [PATCH] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-01-30 Thread Alexey Brodkin
CONFIG_SYS_TEXT_BASE must be set anyways and then it is used in many places in the same Makefile without any checks so there's no point in keeping this check araound just in one place. Signed-off-by: Alexey Brodkin Cc: Tom Rini --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/M