summaryrefslogtreecommitdiff
path: root/utils/hwstub/tools/init.lua
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-08-05 18:18:17 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2014-09-07 17:45:28 +0200
commitdd05dc76a45718ad327d3fec69c259b873c39154 (patch)
tree827055a4545f1c370a6ccafc84d19deb2cdb5f73 /utils/hwstub/tools/init.lua
parent43ca127ebfe9766c84a0456dbac5cafd5f4cb451 (diff)
downloadrockbox-dd05dc76a45718ad327d3fec69c259b873c39154.tar.gz
rockbox-dd05dc76a45718ad327d3fec69c259b873c39154.zip
hwstub: don't put revision in the protocol, it's specific to the implementation
Change-Id: I1311a22da41fe977f1613f1e313a864baa03027c
Diffstat (limited to 'utils/hwstub/tools/init.lua')
-rw-r--r--utils/hwstub/tools/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/hwstub/tools/init.lua b/utils/hwstub/tools/init.lua
index 3c60abf806..1fe0e0d734 100644
--- a/utils/hwstub/tools/init.lua
+++ b/utils/hwstub/tools/init.lua
@@ -66,8 +66,8 @@ end
66if not hwstub.options.quiet then 66if not hwstub.options.quiet then
67 print("information") 67 print("information")
68 print(" hwstub") 68 print(" hwstub")
69 print(" version: " .. string.format("%d.%d.%d", hwstub.host.version.major, 69 print(" version: " .. string.format("%d.%d", hwstub.host.version.major,
70 hwstub.host.version.minor, hwstub.host.version.revision)) 70 hwstub.host.version.minor))
71 print(" device") 71 print(" device")
72 print(" version: " .. string.format("%d.%d.%d", hwstub.dev.version.major, 72 print(" version: " .. string.format("%d.%d.%d", hwstub.dev.version.major,
73 hwstub.dev.version.minor, hwstub.dev.version.revision)) 73 hwstub.dev.version.minor, hwstub.dev.version.revision))