Re: [PATCH] build: target: improve UX of CONFIG_TARGET handling

2022-03-30 Thread Piotr Dymacz
Hi Petr, On 29.03.2022 12:55, Petr Štetiar wrote: Piotr Dymacz [2022-03-29 10:10:00]: Hi, It seems I've been misusing 'target' for a long time and now I'm trying to understand how this leads to the same behavior as 'platform' :) comments right above that code states following: # default

Re: [PATCH] build: target: improve UX of CONFIG_TARGET handling

2022-03-29 Thread Petr Štetiar
Piotr Dymacz [2022-03-29 10:10:00]: Hi, > It seems I've been misusing 'target' for a long time and now I'm trying to > understand how this leads to the same behavior as 'platform' :) comments right above that code states following: # defaults to subtarget if subtarget exists and target does n

Re: [PATCH] build: target: improve UX of CONFIG_TARGET handling

2022-03-29 Thread Piotr Dymacz
Hi Petr, On 29.03.2022 08:34, Petr Štetiar wrote: Make it clear, that for `make kernel_{menu,old}config` it's possible to use only following values for CONFIG_TARGET variable: * env * platform * subtarget * subtarget_platform It seems I've been misusing 'target' for a long time and no

[PATCH] build: target: improve UX of CONFIG_TARGET handling

2022-03-28 Thread Petr Štetiar
Make it clear, that for `make kernel_{menu,old}config` it's possible to use only following values for CONFIG_TARGET variable: * env * platform * subtarget * subtarget_platform This should prevent misuse like `make kernel_menuconfig CONFIG_TARGET=bcm2710` etc. Signed-off-by: Petr Štetiar --