1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef NVM_SOURCE
- #define NVM_SOURCE
- #include "../nvm/nvm.h"
- char const * nvm_platforms [NVM_PLATFORMS] =
- {
- "INT6000",
- "INT6300",
- "INT6400",
- "AR7400",
- "AR7420"
- };
- char const * nvm_imagetypes [NVM_IMAGETYPES] =
- {
- "Generic Image",
- "Synopsis Configuration",
- "Denali Configuration",
- "Denali Applet",
- "Runtime Firmware",
- "OAS Client",
- "Custom Image",
- "Memory Control Applet",
- "Power Management Applet",
- "OAS Client IP Stack",
- "OAS Client TR069",
- "SoftLoader",
- "Flash Layout",
- "Unknown13",
- "Chain Manifest",
- "Runtime Parameters",
- "Custom Module In Scratch",
- "Custom Module Update Applet"
- };
- #endif
|