Changed the virt-to-phys debug breakpoint name to break_virtual

Changed l4id_t type to integer to recognise negative id values like L4_ANYTHREAD.
Added an extremely simple script that cleans and builds everything in right order.

Increased boot pmds by one:
This is due to the fact that if the 1MB initial allocation area of the kernel is
not 1MB-aligned, it is ought to be mapped from the middle of one MB to next,
which requires 2 pmds.

	modified:   .gdbinit
	modified:   README
	new file:   buildall.sh
	modified:   include/l4/arch/arm/types.h
	modified:   include/l4/generic/scheduler.h
	modified:   loader/kernel.S
	modified:   loader/main.c
	modified:   loader/mylink.lds
	modified:   loader/start.axf.S
	modified:   src/glue/arm/init.c
	modified:   src/glue/arm/memory.c
	modified:   tasks/fs0/src/bdev.c
	modified:   tasks/mm0/include/kdata.h
	modified:   tasks/mm0/include/vm_area.h
	modified:   tasks/mm0/src/init.c
	modified:   tasks/mm0/src/task.c
	modified:   tools/ksym_to_lds.py
	modified:   tools/l4-qemu
This commit is contained in:
Bahadir Balban
2008-02-04 16:44:11 +00:00
parent cab2e8bdd3
commit 938672f7c9
18 changed files with 114 additions and 80 deletions

View File

@@ -5,7 +5,7 @@ from string import atoi
from os import popen2
from os.path import join
symbols = ['bkpt_phys_to_virt']
symbols = ['break_virtual']
builddir = "build"
loaderdir = "loader"
image = "start.axf"

View File

@@ -1,7 +1,7 @@
cd build
#arm-none-eabi-insight &
qemu-system-arm -S -kernel final.axf -nographic -s -M versatilepb &
sleep 0.5
#/opt/bin/qemu-system-arm -s -kernel final.axf -nographic -m 128 -M versatilepb &
qemu-system-arm -s -kernel final.axf -nographic -m 128 -M versatilepb &
arm-none-eabi-insight ; pkill qemu-system-arm
#arm-none-eabi-gdb ; pkill qemu-system-arm
cd ..