|
|
@@ -2722,6 +2722,7 @@ static struct image_partition_entry make_soft_version(
|
|
|
.year_lo = bcd(tm->tm_year%100),
|
|
|
.month = bcd(tm->tm_mon+1),
|
|
|
.day = bcd(tm->tm_mday),
|
|
|
+ .rev = htonl(rev),
|
|
|
|
|
|
.compat_level = htonl(info->soft_ver_compat_level)
|
|
|
};
|
|
|
@@ -3411,6 +3412,7 @@ static int firmware_info(const char *input)
|
|
|
|
|
|
printf("Version: %d.%d.%d\n", s->version_major, s->version_minor, s->version_patch);
|
|
|
printf("Date: %02x%02x-%02x-%02x\n", s->year_hi, s->year_lo, s->month, s->day);
|
|
|
+ printf("Revision: %d\n", ntohl(s->rev));
|
|
|
} else {
|
|
|
printf("Failed to parse data\n");
|
|
|
}
|