5015779a6f
If a non-string buffer was passed to execfile, then it would be passed as a non-null-terminated char* to mp_lexer_new_from_file. This changes mp_lexer_new_from_file to take a qstr instead (as in almost all cases a qstr will be created from this input anyway to set the `__file__` attribute on the module). This now makes execfile require a string (not generic buffer) argument, which is probably a good fix to make anyway. Fixes issue #12522. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> |
||
---|---|---|
.. | ||
Makefile | ||
README.md | ||
head.S | ||
main.c | ||
mpconfigport.h | ||
mphalport.h | ||
powerpc.lds | ||
qstrdefsport.h | ||
uart_lpc_serial.c | ||
uart_lpc_serial.h | ||
uart_potato.c | ||
uart_potato.h | ||
unistd.h |
README.md
The PowerPC port that runs on microwatt and qemu
This port is intended to be a minimal MicroPython port that runs in QEMU, microwatt simulator with ghdl or microwatt on Xilinx FPGA with potato UART.
Building
By default the port will be built with the potato uart for microwatt:
$ make
To instead build for a machine with LPC serial, such as QEMU powernv:
$ make UART=lpc_serial
Cross compilation for POWERPC
If you need to cross compilers you'll want to grab a powerpc64le compiler (not powerpc or powerpc64).
On Ubuntu (18.04) you'll want:
$ apt install gcc-powerpc64le-linux-gnu
(Use CROSS_COMPILE=powerpc64le-linux-gnu-)
If your distro doesn't have cross compilers, you can get cross compilers here:
- https://toolchains.bootlin.com/ (use CROSS_COMPILE=powerpc64le-buildroot-linux-gnu-)
(Avoid musl libc as it defines __assert_fail() differently to glibc which breaks the micropython powerpc code)
Then do:
$ make CROSS_COMPILE=<compiler prefix>
Building will produce the build/firmware.bin file which can be used QEMU or microwatt.
To run in QEMU use:
$ ./qemu-system-ppc64 -M powernv -cpu POWER9 -nographic -bios build/firmware.bin