Re: [PATCH] cmd: CONFIG_CMD_SAVES depends on CONFIG_CMD_LOADS

2023-07-08 Thread Tom Rini
On Sun, Jun 25, 2023 at 04:24:47PM +0800, suny...@nj.iscas.ac.cn wrote: > From: Ying Sun > > CONFIG_CMD_SAVES is used to enable support for the "saveenv" command > and is only implemented in cmd/load.c > when "#if defined(CONFIG_CMD_LOADS)" is met. > > It is recommended to add dependency constr

Re: [PATCH] cmd: CONFIG_CMD_SAVES depends on CONFIG_CMD_LOADS

2023-06-26 Thread Simon Glass
On Sun, 25 Jun 2023 at 09:25, wrote: > > From: Ying Sun > > CONFIG_CMD_SAVES is used to enable support for the "saveenv" command > and is only implemented in cmd/load.c > when "#if defined(CONFIG_CMD_LOADS)" is met. > > It is recommended to add dependency constraints to its definition. > Prevents

[PATCH] cmd: CONFIG_CMD_SAVES depends on CONFIG_CMD_LOADS

2023-06-25 Thread sunying
From: Ying Sun CONFIG_CMD_SAVES is used to enable support for the "saveenv" command and is only implemented in cmd/load.c when "#if defined(CONFIG_CMD_LOADS)" is met. It is recommended to add dependency constraints to its definition. Prevents "saveenv" command from not being supported when "CONF