1
0
Fork 0
forked from len0rd/rockbox

hwstub: don't put revision in the protocol, it's specific to the implementation

Change-Id: I1311a22da41fe977f1613f1e313a864baa03027c
This commit is contained in:
Amaury Pouly 2014-08-05 18:18:17 +02:00
parent 43ca127ebf
commit dd05dc76a4
4 changed files with 8 additions and 13 deletions

View file

@ -66,8 +66,8 @@ end
if not hwstub.options.quiet then
print("information")
print(" hwstub")
print(" version: " .. string.format("%d.%d.%d", hwstub.host.version.major,
hwstub.host.version.minor, hwstub.host.version.revision))
print(" version: " .. string.format("%d.%d", hwstub.host.version.major,
hwstub.host.version.minor))
print(" device")
print(" version: " .. string.format("%d.%d.%d", hwstub.dev.version.major,
hwstub.dev.version.minor, hwstub.dev.version.revision))