Skip to content
Snippets Groups Projects
Commit 61cf0495 authored by Sjoerd Simons's avatar Sjoerd Simons
Browse files

Clarify unsupported architecture error


Signed-off-by: default avatarSjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: default avatarGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Differential Revision: https://phabricator.apertis.org/D5252
parent dca4b21d
No related branches found
No related tags found
No related merge requests found
...@@ -209,7 +209,7 @@ class Device: ...@@ -209,7 +209,7 @@ class Device:
raise InvalidDeviceError("No image_version file found") raise InvalidDeviceError("No image_version file found")
a = self._exec('uname', '-m') a = self._exec('uname', '-m')
if a not in TargetTriplet.SUPPORTED: if a not in TargetTriplet.SUPPORTED:
raise InvalidDeviceError("Unsupported architecture") raise InvalidDeviceError("Unsupported architecture {}".format(a))
self.version.arch = a self.version.arch = a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment