aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorvetch <vetch97@gmail.com>2020-01-04 11:26:57 +0100
committervetch <vetch97@gmail.com>2020-01-04 11:26:57 +0100
commit885a097da42317f48cead2d91c0e0240066943a8 (patch)
tree0ee86dbaf5678b32f496b99c48ea81bbd20971f2 /Makefile
parent2d31012739a11724844701d07db12e6e1307925e (diff)
parent814d4a5357d849c4988422d48afa4aaa5432ce78 (diff)
downloadrpi-MMU-example-885a097da42317f48cead2d91c0e0240066943a8.tar.gz
rpi-MMU-example-885a097da42317f48cead2d91c0e0240066943a8.zip
Merge branch 'bob' of https://repo.or.cz/RPi-MMU-example into alice
# Conflicts: # demo_functionality.h # interrupt_vector.S # interrupts.c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index feedd79..1dc3d51 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
-CFLAGS=-mcpu=cortex-a7 -ffreestanding -std=gnu11 -Wall -Wextra -O2 -I.
+CFLAGS=-mcpu=cortex-a7 -ffreestanding -std=gnu11 -Wall -Wextra -I.
ELFFLAGS=-nostdlib -lgcc
ARM_OBJECTS=kernel.o paging.o demo_functionality.o PL0_test.o uart.o loader_stage1.o loader_stage2.o
-KERNEL_STAGE2_OBJECTS=setup.o interrupt_vector.o interrupts.o uart.o demo_functionality.o paging.o ramfs_embeddable.o ramfs.o strings.o io.o atags.o
+KERNEL_STAGE2_OBJECTS=setup.o interrupt_vector.o interrupts.o uart.o demo_functionality.o paging.o ramfs_embeddable.o ramfs.o strings.o io.o atags.o scheduler.o
PL_0_TEST_OBJECTS=PL0_utils.o svc.o PL0_test.o strings.o io.o