diff options
| author | Christian Lamparter | 2023-07-15 19:33:41 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2023-07-15 20:17:42 +0000 |
| commit | 62496e9a1a0470ee7a4a7719073824defa81cb8c (patch) | |
| tree | 40f2173016ebde65f1d00bc8b629f9197f952816 | |
| parent | b32a4bc33f0d604b2f1e9c7768b5e456d312b63a (diff) | |
| download | openwrt-62496e9a1a0470ee7a4a7719073824defa81cb8c.tar.gz | |
armsr: v8: fix NVMEM_IMX_OCOTP_ELE build error
there's a new symbol NVMEM_IMX_OCOTP_ELE that needs to be defined.
otherwise the build will fail:
| i.MX On-Chip OTP Controller support (NVMEM_IMX_OCOTP_ELE) [N/m/y/?] (NEW)
| make[6]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1
| make[5]: *** [Makefile:628: syncconfig] Error 2
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
| -rw-r--r-- | target/linux/armsr/armv8/config-5.15 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/armsr/armv8/config-5.15 b/target/linux/armsr/armv8/config-5.15 index 54dd78a8aa..6b8b735059 100644 --- a/target/linux/armsr/armv8/config-5.15 +++ b/target/linux/armsr/armv8/config-5.15 @@ -286,6 +286,7 @@ CONFIG_NR_CPUS=64 CONFIG_NVIDIA_CARMEL_CNP_ERRATUM=y # CONFIG_NVMEM_IMX_IIM is not set CONFIG_NVMEM_IMX_OCOTP=y +CONFIG_NVMEM_IMX_OCOTP_ELE=y CONFIG_NVMEM_IMX_OCOTP_SCU=y # CONFIG_NVMEM_LAYERSCAPE_SFP is not set CONFIG_NVMEM_ROCKCHIP_EFUSE=y |