// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-FileCopyrightText: 2014 Sascha Hauer, Pengutronix #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "common.h" #include "common.c" #include "../include/image-metadata.h" #define eprintf(args...) fprintf(stderr, ## args) static void debug(const char *fmt, ...) { va_list ap; if (!imd_command_verbose) return; va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); } int imd_command_setenv(const char *variable_name, const char *value) { fprintf(stderr, "-s option ignored\n"); return -EINVAL; } static inline void read_file_2_free(void *buf) { /* * Can't free() here because buffer might be mmapped. No need * to do anything as we are exitting in a moment anyway. */ } static unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base) { return strtoul(cp, endp, base); } #include "../include/xfuncs.h" #include "../crypto/crc32.c" #include "../common/imd.c" static void usage(const char *prgname) { printf( "Extract metadata from a barebox image\n" "\n" "Usage: %s [OPTIONS] FILE\n" "Options:\n" "-t only show information of \n" "-n for tags with multiple strings only show string \n" "-v Be verbose\n" "-V Verify checksum of FILE\n" "-c Create checksum for FILE and write it to the crc32 tag\n" "\n" "Without options all information available is printed. Valid types are:\n" "release, build, model, of_compatible\n", prgname); } int main(int argc, char *argv[]) { int ret; ret = imd_command(argc, argv); if (ret == -ENOSYS) { usage(argv[0]); exit(1); } if (ret) fprintf(stderr, "%s\n", strerror(-ret)); return ret ? 1 : 0; }