我想知道是否可以对 NOR 存储使用 fastboot flash/erase 命令。我正在使用一个 imx6 处理器和一个 NOR 存储。目前“cmd_fastboot.c”文件中的“rx_process_flash”函数支持三种存储类型。
CONFIG_FASTBOOT_STORAGE_MMC
CONFIG_FASTBOOT_STORAGE_NAND
CONFIG_FASTBOOT_STORAGE_SATA
但是,NOR 存储没有 CONFIG 类型。从主机发送 fastboot flash 命令会导致来自 U-Boot 控制台的以下响应。
Not support flash command for current device 0
send: FAILfailed to flash device
fastboot 是否提供对 NOR 闪存的支持?为了支持 NOR 存储的 fastboot,我需要在 U-Boot 配置文件中进行哪些修改?
此致,