diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-12-17 17:01:41 +0100 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-12-17 17:01:41 +0100 |
commit | 7dbdf1ee0a064e9b2c5fedd7bd4e2b67f0532b09 (patch) | |
tree | 1ff297ee593d14151d200ec6e4db30f360dabfd0 /Makefile | |
parent | 37821a7d49e78132e7bdf12e04a9ed339588650c (diff) | |
download | rpi-MMU-example-7dbdf1ee0a064e9b2c5fedd7bd4e2b67f0532b09.tar.gz rpi-MMU-example-7dbdf1ee0a064e9b2c5fedd7bd4e2b67f0532b09.zip |
make things work again on real hw (setting system mode moved to boot.S)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,9 +47,9 @@ qemu-elf : kernel.elf qemu-bin : loader.elf kernel.img pipe_image ./pipe_image --stdout | qemu-system-arm -m 256 -M raspi2 -serial stdio -kernel $< -run-on-rpi : kernel7.img pipe_image +run-on-rpi : kernel.img pipe_image ./pipe_image --stdout | sudo socat FILE:/dev/ttyUSB0,b115200,raw - -# screen /dev/ttyUSB0 115200,cs8,-parenb,-cstopb,-hupcl + screen /dev/ttyUSB0 115200,cs8,-parenb,-cstopb,-hupcl pipe_image : pipe_image.c lib/rs232/rs232.c gcc -Wall -std=gnu99 -O3 $^ -o $@ |