From 9d7d044d693dbefabf943b07cc29584f5cc4297b Mon Sep 17 00:00:00 2001 From: Johannes Krampf Date: Sun, 12 Jan 2014 11:19:22 -0500 Subject: build: Be explicit that we want integers when dividing for python3 compat. Signed-off-by: Johannes Krampf --- scripts/buildrom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/buildrom.py') diff --git a/scripts/buildrom.py b/scripts/buildrom.py index f2228ab..36de14e 100755 --- a/scripts/buildrom.py +++ b/scripts/buildrom.py @@ -32,10 +32,10 @@ def main(): # Check if a pci header is present pcidata = ord(data[24:25]) + (ord(data[25:26]) << 8) if pcidata != 0: - data = data[:pcidata + 16] + chr(count/512) + chr(0) + data[pcidata + 18:] + data = data[:pcidata + 16] + chr(int(count/512)) + chr(0) + data[pcidata + 18:] # Fill in size field; clear checksum field - data = data[:2] + chr(count/512) + data[3:6] + "\0" + data[7:] + data = data[:2] + chr(int(count/512)) + data[3:6] + "\0" + data[7:] # Checksum rom newsum = (256 - checksum(data)) & 0xff -- cgit v1.1