Annotation of qemu/roms/seabios/tools/checksum.py, revision 1.1.1.1

1.1       root        1: #!/usr/bin/env python
                      2: # Script to report the checksum of a file.
                      3: #
                      4: # Copyright (C) 2009  Kevin O'Connor <[email protected]>
                      5: #
                      6: # This file may be distributed under the terms of the GNU GPLv3 license.
                      7: 
                      8: import sys
                      9: 
                     10: def main():
                     11:     data = sys.stdin.read()
                     12:     ords = map(ord, data)
                     13:     print "sum=%x\n" % sum(ords)
                     14: 
                     15: if __name__ == '__main__':
                     16:     main()

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.