Re: [PATCH v8 1/7] automation: ensure values in EXTRA_FIXED_RANDCONFIG are separated by new line

2024-02-12 Thread Oleksii
On Mon, 2024-02-12 at 09:12 +0100, Michal Orzel wrote: > Hi Oleksii, Hi Michal, > > On 09/02/2024 19:00, Oleksii Kurochko wrote: > > > > > > Kconfig tool expects each configuration to be on a new line. > > > > The current version of the build script puts all of > > ${EXTRA_FIXED_RANDCONFIG} >

Re: [PATCH v8 1/7] automation: ensure values in EXTRA_FIXED_RANDCONFIG are separated by new line

2024-02-12 Thread Michal Orzel
Hi Oleksii, On 09/02/2024 19:00, Oleksii Kurochko wrote: > > > Kconfig tool expects each configuration to be on a new line. > > The current version of the build script puts all of ${EXTRA_FIXED_RANDCONFIG} > in a single line and configs are seperated by spaces. > > As a result, only the first

[PATCH v8 1/7] automation: ensure values in EXTRA_FIXED_RANDCONFIG are separated by new line

2024-02-09 Thread Oleksii Kurochko
Kconfig tool expects each configuration to be on a new line. The current version of the build script puts all of ${EXTRA_FIXED_RANDCONFIG} in a single line and configs are seperated by spaces. As a result, only the first configuration in ${EXTRA_FIXED_RANDCONFIG} will be used. Signed-off-by: Ole