I'm receiving an error on a customer's system, runtime OI 3.72, using rdkinstall to process an upgrade. The error is Line 1, RDKMODULEINSTALL, VARIABLE EXCEEDS MAXIMUM SIZE. Any help will be greatly appreciated.
Glenn,
Most likely this is due to a SYSREPOS record being very close to 64K. Usually a routine that you have included in many other routines will have field position 5 (SYSREP_SUPER$) with the repository entity names of all these routines. When you attempt to load this entity with RDKInstall the variable that holds this information can exceed 64K.
You can manually edit this record, remove these entities, and then re-deploy.
Don, pretty close, the problem turned out to be a 65536 byte dictionary record in one of the customer's files, which file was being updated in the RDK run. I'm glad to know about the sysrepos - I'll need to check for that. Thanks