You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-boot/raspberrypi-mkimage/files/raspberrypi-mkimage-0_p2012...

12 lines
236 B

--- mkimage/imagetool-uncompressed.py
+++ mkimage/imagetool-uncompressed.py
@@ -46,7 +47,7 @@
f = open(args.bootimage, "wb")
for m in mem:
- f.write(chr(m))
+ f.write(chr(m).encode('latin1'))
f.write(kernel_image)
f.close()