comparison packages/redboot/current/cdl/redboot.cdl @ 136:a9ac27ec7abc ecos-sw-2000-11-17

Merge from eCos master repository on 2000-11-17-18:24:25-GMT
author jlarmour
date Fri, 17 Nov 2000 23:16:43 +0000
parents 0ae0bc38e387
children 289bf90c6a9b
comparison
equal deleted inserted replaced
135:3bc2abeae9ff 136:a9ac27ec7abc
72 description "This option enables the building of the Redboot ELF image. 72 description "This option enables the building of the Redboot ELF image.
73 The image may require further relocation or symbol 73 The image may require further relocation or symbol
74 stripping before being converted to a binary image. 74 stripping before being converted to a binary image.
75 This is handled by a rule in the target CDL." 75 This is handled by a rule in the target CDL."
76 76
77 compile printf.c misc_funs.c io.c parse.c ticks.c xyzModem.c 77 compile printf.c misc_funs.c io.c parse.c ticks.c xyzModem.c syscall.c
78 compile -library=libextras.a load.c 78 compile -library=libextras.a load.c
79 79
80 make -priority 320 { 80 make -priority 320 {
81 <PREFIX>/bin/redboot.elf : $(PREFIX)/lib/target.ld $(PREFIX)/lib/vectors.o $(PREFIX)/lib/libtarget.a $(PREFIX)/lib/libextras.a main.o 81 <PREFIX>/bin/redboot.elf : $(PREFIX)/lib/target.ld $(PREFIX)/lib/vectors.o $(PREFIX)/lib/libtarget.a $(PREFIX)/lib/libextras.a main.o
82 @sh -c "mkdir -p $(dir $@)" 82 @sh -c "mkdir -p $(dir $@)"
196 requires CYGSEM_HAL_ROM_MONITOR 196 requires CYGSEM_HAL_ROM_MONITOR
197 calculated 1 197 calculated 1
198 no_define 198 no_define
199 } 199 }
200 200
201 cdl_option CYGSEM_REDBOOT_BSP_SYSCALLS {
202 display "Allow RedBoot to handle GNUPro application 'syscalls'."
203 flavor bool
204 default_value 0
205 description "
206 If this option is enabled then RedBoot will install a syscall handler
207 to support debugging of applications based on GNUPro newlib/bsp."
208 }
201 } 209 }
202 210