Skip to content

Commit

Permalink
util_version: new helper for displaying version info
Browse files Browse the repository at this point in the history
This is so all utilities can have this flag and not just dtc.

Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  • Loading branch information
vapier authored and Jon Loeliger committed Apr 21, 2013
1 parent 97c122e commit 31be4ce
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 1 addition & 4 deletions dtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
#include "dtc.h"
#include "srcpos.h"

#include "version_gen.h"

/*
* Command line options
*/
Expand Down Expand Up @@ -158,8 +156,7 @@ int main(int argc, char *argv[])
srcfile_add_search_path(optarg);
break;
case 'v':
printf("Version: %s\n", DTC_VERSION);
exit(0);
util_version();
case 'H':
if (streq(optarg, "legacy"))
phandle_format = PHANDLE_LEGACY;
Expand Down
7 changes: 7 additions & 0 deletions util.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

#include "libfdt.h"
#include "util.h"
#include "version_gen.h"

char *xstrdup(const char *s)
{
Expand Down Expand Up @@ -374,3 +375,9 @@ void utilfdt_print_data(const char *data, int len)
printf("]");
}
}

void util_version(void)
{
printf("Version: %s\n", DTC_VERSION);
exit(0);
}
5 changes: 5 additions & 0 deletions util.h
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,9 @@ int utilfdt_decode_type(const char *fmt, int *type, int *size);
*/
void utilfdt_print_data(const char *data, int len);

/**
* Show source version and exit
*/
void util_version(void) __attribute__((noreturn));

#endif /* _UTIL_H */

0 comments on commit 31be4ce

Please sign in to comment.