Other Parts Discussed in Thread: SYSCONFIG
AM273x NZN.
SysConfig past 1.12 seems no longer support custom variable flash1.name.
In the past we have used *.syscfg script like
/**
* Write custom configuration values to the imported modules.
*/
flash1.name = "W25Q128J";
flash1.$name = "CONFIG_FLASH0";
flash1.peripheralDriver.$name = "CONFIG_QSPI0";
flash1.peripheralDriver.dmaEnable = true;
flash1.peripheralDriver.MSS_QSPI["0"].$assign = "ball.B2";
flash1.peripheralDriver.MSS_QSPI["1"].$assign = "ball.A2";
which resulted in creating includes with variable name containing this.
now, sysconfig 1.14 and 1.15 writes in *.syscfg:
flash1.name = scripting.invalidAssignment("W25Q128J", "a backwards compatibility discrepancy");
and simp[ly disallows anything but standard GD25B64C
How to specify this custom flash name?

