summaryrefslogtreecommitdiff
path: root/env
diff options
context:
space:
mode:
authorDavid Lechner <[email protected]>2026-03-26 17:59:28 -0500
committerTom Rini <[email protected]>2026-04-08 11:07:07 -0600
commitd72c2b63da5c004bb41855577d4fd783598b004a (patch)
treebf0633bb54dd8b0aaa8015b4de46a9e246fe1798 /env
parent83223d4f86980f09fdf341b64f69e03313cac14b (diff)
env: scsi: document requirements for ENV_IS_IN_SCSI
Expand the Kconfig help for ENV_IS_IN_SCSI to explain the other required config options when this option is enabled. Signed-off-by: David Lechner <[email protected]>
Diffstat (limited to 'env')
-rw-r--r--env/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/env/Kconfig b/env/Kconfig
index ffaf16c581c..9eb941b74a4 100644
--- a/env/Kconfig
+++ b/env/Kconfig
@@ -293,6 +293,23 @@ config ENV_IS_IN_SCSI
Define this if you have an SCSI device which you want to use for the
environment.
+ - CONFIG_ENV_SIZE:
+
+ The size of the partition where the environment is stored in bytes. Must
+ be a multiple of the partition block size.
+
+ - CONFIG_ENV_SCSI_HW_PARTITION:
+
+ Specifies which SCSI partition the environment is stored in. If not
+ set, defaults to partition 0, the user area. Common values might be
+ 1 (first SCSI boot partition), 2 (second SCSI boot partition). Ignored
+ if CONFIG_ENV_SCSI_PART_UUID is set to non-empty string.
+
+ - CONFIG_ENV_SCSI_PART_UUID:
+
+ UUID of the SCSI partition where the environment is stored.
+
+
config ENV_RANGE
hex "Length of the region in which the environment can be written"
depends on ENV_IS_IN_NAND