Re: [PATCH 3/7] Kconfig: Escape variables to make in default strings

2020-02-26 Thread Tom Rini
On Wed, Feb 26, 2020 at 11:35:18AM +0900, Masahiro Yamada wrote: > On Tue, Feb 25, 2020 at 3:05 AM Tom Rini wrote: > > > > We have some variables that need to include a variable to pass to make > > to evaluate later, typically ARCH and BOARDDIR, to find a file to use. > > The way we're doing this

Re: [PATCH 3/7] Kconfig: Escape variables to make in default strings

2020-02-25 Thread Masahiro Yamada
On Tue, Feb 25, 2020 at 3:05 AM Tom Rini wrote: > > We have some variables that need to include a variable to pass to make > to evaluate later, typically ARCH and BOARDDIR, to find a file to use. > The way we're doing this today isn't correct but works. With an update > to Kconfig we will need to

[PATCH 3/7] Kconfig: Escape variables to make in default strings

2020-02-24 Thread Tom Rini
We have some variables that need to include a variable to pass to make to evaluate later, typically ARCH and BOARDDIR, to find a file to use. The way we're doing this today isn't correct but works. With an update to Kconfig we will need to escape these properly, so do so. Cc: Masahiro Yamada Sig