aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2019-10-11 18:53:13 +0200
committerWojtek Kosior <kwojtus@protonmail.com>2019-10-11 18:53:13 +0200
commitb452b0edbc784722c25014a20f554737d64ba758 (patch)
treeae8cb96f362241070cbe53f1eab0ac818093cfe7 /Makefile
parente056312b52faf9eff2a88b1c751fb06824263b14 (diff)
downloadrpi-MMU-example-b452b0edbc784722c25014a20f554737d64ba758.tar.gz
rpi-MMU-example-b452b0edbc784722c25014a20f554737d64ba758.zip
use bootloader in qemu
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6ced357..2fbb0aa 100644
--- a/Makefile
+++ b/Makefile
@@ -41,8 +41,8 @@ loader.img : loader.elf
qemu-elf : kernel.elf
qemu-system-arm -m 256 -M raspi2 -serial stdio -kernel $^
-qemu-bin : kernel7.img
- qemu-system-arm -m 256 -M raspi2 -serial stdio -kernel $^
+qemu-bin : loader.img kernel7.img pipe_image
+ ./pipe_image | qemu-system-arm -m 256 -M raspi2 -serial stdio -kernel $<
qemu-loader : loader.img
qemu-system-arm -m 256 -M raspi2 -serial stdio -kernel $^