Mercurial > flash_v2
comparison packages/hal/common/current/cdl/debugging.cdl @ 76:435cced73e2f ecos-v1_3_1-release
eCos v1.3.1 merged from eCos master repository on 2000-03-27-23:22:51-BST
| author | jlarmour |
|---|---|
| date | Tue, 28 Mar 2000 14:10:45 +0000 |
| parents | |
| children | 59d97b6ba612 |
comparison
equal
deleted
inserted
replaced
| 75:41bf073c0c32 | 76:435cced73e2f |
|---|---|
| 1 # ==================================================================== | |
| 2 # | |
| 3 # debugging.cdl | |
| 4 # | |
| 5 # HAL debugging configuration data | |
| 6 # | |
| 7 # ==================================================================== | |
| 8 #####COPYRIGHTBEGIN#### | |
| 9 # | |
| 10 # ------------------------------------------- | |
| 11 # The contents of this file are subject to the Red Hat eCos Public License | |
| 12 # Version 1.1 (the "License"); you may not use this file except in | |
| 13 # compliance with the License. You may obtain a copy of the License at | |
| 14 # http://www.redhat.com/ | |
| 15 # | |
| 16 # Software distributed under the License is distributed on an "AS IS" | |
| 17 # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the | |
| 18 # License for the specific language governing rights and limitations under | |
| 19 # the License. | |
| 20 # | |
| 21 # The Original Code is eCos - Embedded Configurable Operating System, | |
| 22 # released September 30, 1998. | |
| 23 # | |
| 24 # The Initial Developer of the Original Code is Red Hat. | |
| 25 # Portions created by Red Hat are | |
| 26 # Copyright (C) 1998, 1999, 2000 Red Hat, Inc. | |
| 27 # All Rights Reserved. | |
| 28 # ------------------------------------------- | |
| 29 # | |
| 30 #####COPYRIGHTEND#### | |
| 31 # ==================================================================== | |
| 32 ######DESCRIPTIONBEGIN#### | |
| 33 # | |
| 34 # Author(s): jskov | |
| 35 # Original data: nickg,jskov,jlarmour | |
| 36 # Contributors: | |
| 37 # Date: 1999-07-02 | |
| 38 # | |
| 39 #####DESCRIPTIONEND#### | |
| 40 # | |
| 41 # ==================================================================== | |
| 42 | |
| 43 cdl_interface CYGINT_HAL_DEBUG_GDB_STUBS { | |
| 44 display "Support for GDB stubs" | |
| 45 description " | |
| 46 The HAL implements GDB stubs for the target." | |
| 47 } | |
| 48 | |
| 49 cdl_option CYGDBG_HAL_DEBUG_GDB_INCLUDE_STUBS { | |
| 50 display "Include GDB stubs in HAL" | |
| 51 active_if CYGINT_HAL_DEBUG_GDB_STUBS | |
| 52 default_value 0 | |
| 53 description " | |
| 54 This option causes a set of GDB stubs to be included into the | |
| 55 system. On some target systems the GDB support will be | |
| 56 provided by other means, for example by a ROM monitor. On | |
| 57 other targets, especially when building a ROM-booting system, | |
| 58 the necessary support has to go into the target library | |
| 59 itself." | |
| 60 } | |
| 61 | |
| 62 cdl_interface CYGINT_HAL_DEBUG_GDB_STUBS_BREAK { | |
| 63 display "Support for external break support in GDB stubs" | |
| 64 description " | |
| 65 The HAL implements external break (or asynchronous interrupt) | |
| 66 in the GDB stubs for the target." | |
| 67 } | |
| 68 | |
| 69 cdl_option CYGDBG_HAL_DEBUG_GDB_BREAK_SUPPORT { | |
| 70 display "Include GDB external break support for stubs" | |
| 71 active_if CYGINT_HAL_DEBUG_GDB_STUBS_BREAK | |
| 72 requires CYGDBG_HAL_DEBUG_GDB_INCLUDE_STUBS | |
| 73 default_value 0 | |
| 74 description " | |
| 75 This option causes the GDB stub to add a serial interrupt handler | |
| 76 which will listen for GDB break packets. This lets you stop the | |
| 77 target asynchronously when using GDB, usually by hitting Control+C | |
| 78 or pressing the STOP button. This option differs from | |
| 79 CYGDBG_HAL_DEBUG_GDB_CTRLC_SUPPORT in that it is used when | |
| 80 GDB stubs are present." | |
| 81 } | |
| 82 | |
| 83 cdl_option CYGDBG_HAL_DEBUG_GDB_CTRLC_SUPPORT { | |
| 84 display "Include GDB external break support when no stubs" | |
| 85 requires !CYGDBG_HAL_DEBUG_GDB_BREAK_SUPPORT | |
| 86 default_value 1 | |
| 87 description " | |
| 88 This option adds an interrupt handler for the GDB serial line | |
| 89 which will listen for GDB break packets. This lets you stop the | |
| 90 target asynchronously when using GDB, usually by hitting Control+C | |
| 91 or pressing the STOP button. This option differs from | |
| 92 CYGDBG_HAL_DEBUG_GDB_BREAK_SUPPORT in that it is used when the GDB | |
| 93 stubs are NOT present." | |
| 94 } | |
| 95 | |
| 96 cdl_option CYGDBG_HAL_DEBUG_GDB_THREAD_SUPPORT { | |
| 97 display "Include GDB multi-threading debug support" | |
| 98 requires CYGDBG_KERNEL_DEBUG_GDB_THREAD_SUPPORT | |
| 99 default_value CYGDBG_KERNEL_DEBUG_GDB_THREAD_SUPPORT | |
| 100 description " | |
| 101 This option enables some extra HAL code which is needed | |
| 102 to support multi-threaded source level debugging." | |
| 103 } |
