commit | 9dc5ad8e6be0a393734f15283cc883d37642d1f9 | [log] [tgz] |
---|---|---|
author | Varadarajan Narayanan <quic_varada@quicinc.com> | Tue May 13 14:47:08 2025 +0530 |
committer | Tom Rini <trini@konsulko.com> | Thu May 29 18:35:50 2025 -0600 |
tree | 1ba7df7e91d6f91f1133b18bce50436da1e1357e | |
parent | 5308c80956cdeaf3b18be47646524202d25e29ee [diff] [blame] |
env: Add support for storing env variables in SCSI devices Allow SCSI to be able to store environment variables. Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com> Acked-by: Casey Connolly <casey.connolly@linaro.org>
diff --git a/env/env.c b/env/env.c index dbaeedc..7a9c96b 100644 --- a/env/env.c +++ b/env/env.c
@@ -46,6 +46,9 @@ #ifdef CONFIG_ENV_IS_IN_MMC ENVL_MMC, #endif +#ifdef CONFIG_ENV_IS_IN_SCSI + ENVL_SCSI, +#endif #ifdef CONFIG_ENV_IS_IN_NAND ENVL_NAND, #endif