aboutsummaryrefslogtreecommitdiff
path: root/scripts/checksum.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-08-17 10:13:14 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-08-17 10:23:46 -0400
commitb942ce0a03a8b83c4b52e8af5d649b3661034a2d (patch)
treed0625ea547ceba4b857d8ddc1502c5f33c60c3fb /scripts/checksum.py
parent915f64aee37159d21760d44cdc5778220468fe0b (diff)
downloadseabios-hppa-b942ce0a03a8b83c4b52e8af5d649b3661034a2d.zip
seabios-hppa-b942ce0a03a8b83c4b52e8af5d649b3661034a2d.tar.gz
seabios-hppa-b942ce0a03a8b83c4b52e8af5d649b3661034a2d.tar.bz2
Rename tools/ directory to scripts/ directory.
It's common for other projects (eg, QEMU, Linux) to put build scripts into a "scripts/" directory. There's no reason for SeaBIOS to be different, so rename the "tools/" directory to "scripts/". Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/checksum.py')
-rwxr-xr-xscripts/checksum.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/checksum.py b/scripts/checksum.py
new file mode 100755
index 0000000..8c7665d
--- /dev/null
+++ b/scripts/checksum.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+# Script to report the checksum of a file.
+#
+# Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net>
+#
+# This file may be distributed under the terms of the GNU GPLv3 license.
+
+import sys
+
+def main():
+ data = sys.stdin.read()
+ ords = map(ord, data)
+ print "sum=%x\n" % sum(ords)
+
+if __name__ == '__main__':
+ main()