projects
/
microwatt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afbb99c
)
rust_lib_demo: Remove bin2hex.py
author
Anton Blanchard
<anton@linux.ibm.com>
Thu, 16 Apr 2020 07:44:17 +0000
(17:44 +1000)
committer
Anton Blanchard
<anton@ozlabs.org>
Thu, 16 Apr 2020 07:44:17 +0000
(17:44 +1000)
We are using scripts/bin2hex.py, so we can get rid of this copy.
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
rust_lib_demo/bin2hex.py
[deleted file]
patch
|
blob
|
history
diff --git
a/rust_lib_demo/bin2hex.py
b/rust_lib_demo/bin2hex.py
deleted file mode 100755
(executable)
index
af278bc
..0000000
--- a/
rust_lib_demo/bin2hex.py
+++ /dev/null
@@
-1,17
+0,0 @@
-#!/usr/bin/python3
-
-import sys
-import subprocess
-import struct
-
-with open(sys.argv[1], "rb") as f:
- while True:
- word = f.read(8)
- if len(word) == 8:
- print("%016x" % struct.unpack('Q', word));
- elif len(word) == 4:
- print("00000000%08x" % struct.unpack('I', word));
- elif len(word) == 0:
- exit(0);
- else:
- raise Exception("Bad length")