Re: [U-Boot] [PATCH] pxe: Allow use of environment variables in append string

2014-08-04 Thread Hans de Goede
Hi, On 08/01/2014 09:07 PM, Stephen Warren wrote: > On 08/01/2014 03:21 AM, Hans de Goede wrote: >> Use run_command("setenv bootargs append>") so that environment >> variables (e.g. $console) can be used in append strings. > > I'm slightly worried that this changes the semantics of the append lin

Re: [U-Boot] [PATCH] pxe: Allow use of environment variables in append string

2014-08-01 Thread Stephen Warren
On 08/01/2014 03:21 AM, Hans de Goede wrote: Use run_command("setenv bootargs append>") so that environment variables (e.g. $console) can be used in append strings. I'm slightly worried that this changes the semantics of the append line in the PXE/extlinux config file. Namely, you suddenly hav

[U-Boot] [PATCH] pxe: Allow use of environment variables in append string

2014-08-01 Thread Hans de Goede
Use run_command("setenv bootargs append>") so that environment variables (e.g. $console) can be used in append strings. Signed-off-by: Hans de Goede --- common/cmd_pxe.c | 23 --- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/common/cmd_pxe.c b/common/cmd_pxe