/** * @file identstr.c * display the value of CONFIG_IDENT_STRING as used by U-Boot */ #include "config.h" #include #ifndef CONFIG_IDENT_STRING #define CONFIG_IDENT_STRING "" #endif /** * Entry point for identstr * * @param argc argument count (ignored) * @param argv argument array (ignored) * * @return 0 always */ int main ( int argc, char *argv[] ) { printf("%s\n",CONFIG_IDENT_STRING); return 0; }