Add config fragment support for enabling inline ECC and/or BIST on TI K3 supported platforms.
Signed-off-by: Neha Malcom Francis <[email protected]> --- Typically we do not enable these configs by default but would still like to have the option to start building them in our default build flow for testing. Also there is the added advantage of users being able to see what is needed in case they choose to enable these features. configs/k3_bist.config | 1 + configs/k3_inline_ecc.config | 1 + 2 files changed, 2 insertions(+) create mode 100644 configs/k3_bist.config create mode 100644 configs/k3_inline_ecc.config diff --git a/configs/k3_bist.config b/configs/k3_bist.config new file mode 100644 index 00000000000..671dda1a9dc --- /dev/null +++ b/configs/k3_bist.config @@ -0,0 +1 @@ +CONFIG_K3_BIST=y diff --git a/configs/k3_inline_ecc.config b/configs/k3_inline_ecc.config new file mode 100644 index 00000000000..143c814b41c --- /dev/null +++ b/configs/k3_inline_ecc.config @@ -0,0 +1 @@ +CONFIG_K3_INLINE_ECC=y -- 2.34.1

