# bash$ make check RUNTESTFLAGS="--target_board=remote-gdbserver-on-localhost"
load_generic_config "gdbserver"
-
-# The default compiler for this target.
-set_board_info compiler "[find_gcc]"
-
-process_multilib_options ""
+load_board_description "gdbserver-base"
# The sshd should be running on localhost and ssh key should be
# correctly set up that you ssh to localhost without having to type
# We will be using the standard GDB remote protocol
set_board_info gdb_protocol "remote"
-# Test the copy of gdbserver in the build directory, of an absolute path.
-set_board_info gdb_server_prog "[pwd]/../gdbserver/gdbserver"
-
# Use techniques appropriate to a stub
set_board_info use_gdb_stub 1
# This gdbserver can only run a process once per session.
set_board_info gdb,do_reload_on_run 1
-# gdbserver does not intercept target file operations and perform them
-# on the host.
-set_board_info gdb,nofileio 1
-
# There's no support for argument-passing (yet).
set_board_info noargs 1
set_board_info exit_is_reliable 1
-
-# The predefined TSVs in GDBserver.
-set_board_info gdb,predefined_tsv "\\\$trace_timestamp"
-
-set GDBFLAGS "${GDBFLAGS} -ex \"set auto-connect-native-target off\""
-
-proc ${board}_download { board src dest } {
- if { [file pathtype $src] == "relative" } {
- return [file join [pwd] $src]
- } else {
- return $src
- }
-}
-
-proc ${board}_upload {dest srcfile args} {
- return $srcfile
-}
-
-proc ${board}_file { dest op args } {
- if { $op == "delete" } {
- return 0
- }
- return [eval [list standard_file $dest $op] $args]
-}