comparison packages/hal/arm/sa11x0/assabet/current/cdl/hal_arm_sa11x0_assabet.cdl @ 115:6ed91473a1cd ecos-sw-2000-08-21

Merge from eCos master repository on 2000-08-21-22:40:54-BST
author jlarmour
date Fri, 25 Aug 2000 17:32:38 +0000
parents 84e4bde58b26
children 77cec8369160
comparison
equal deleted inserted replaced
114:5ad2b71d525e 115:6ed91473a1cd
298 implementations of ROM monitor. 298 implementations of ROM monitor.
299 \"GDB_stubs\" provides support when GDB stubs are included in 299 \"GDB_stubs\" provides support when GDB stubs are included in
300 the ROM monitor or boot ROM." 300 the ROM monitor or boot ROM."
301 } 301 }
302 302
303 cdl_component CYGPKG_REDBOOT_HAL_OPTIONS {
304 display "Redboot HAL options"
305 flavor none
306 no_define
307 parent CYGPKG_REDBOOT
308 active_if CYGPKG_REDBOOT
309 description "
310 This option lists the target's requirements for a valid Redboot
311 configuration."
312
313 cdl_option CYGDAT_REDBOOT_CONSOLE_DEV {
314 display "Serial port for default console"
315 flavor data
316 default_value { "\"/dev/ser1\"" }
317 description "
318 This option selects the physical device to use as the default
319 console device for Redboot."
320
321 }
322
323 cdl_option CYGBLD_BUILD_REDBOOT_BIN {
324 display "Build Redboot ROM binary image"
325 active_if CYGBLD_BUILD_REDBOOT
326 default_value 1
327 no_define
328 description "This option enables the conversion of the Redboot ELF
329 image to a binary image suitable for ROM programming."
330
331 make -priority 325 {
332 <PREFIX>/bin/redboot.bin : <PREFIX>/bin/redboot.elf
333 $(OBJCOPY) --strip-debug $< $(@:.bin=.img)
334 $(OBJCOPY) -O srec $< $(@:.bin=.srec)
335 $(OBJCOPY) -O binary $< $@
336 }
337 }
338 }
339
303 } 340 }