Re: [PATCH v2] cmd: fdt: skip board specific fixup using env variable

2021-02-25 Thread Tom Rini
On Thu, Feb 04, 2021 at 03:44:04PM +0100, Wasim Khan wrote: > From: Wasim Khan > > Sometimes it is useful to boot OS with already fixed-up > device tree. Check for env variable 'skip_board_fixup' > before calling ft_board_setup(). > Current behaviour is unchanged, additionally user can > set

[PATCH v2] cmd: fdt: skip board specific fixup using env variable

2021-02-04 Thread Wasim Khan
From: Wasim Khan Sometimes it is useful to boot OS with already fixed-up device tree. Check for env variable 'skip_board_fixup' before calling ft_board_setup(). Current behaviour is unchanged, additionally user can set skip_board_fixup to 1 to skip the fixup. Signed-off-by: Wasim Khan ---