From b7f3b6d5e6f3664d270873d0f4eb99ed2a1fdd69 Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Thu, 22 Feb 1996 09:11:16 +0000 Subject: * config/m68k/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}, m68knbsd-nat.c: New files, support for NetBSD/m68k. * configure.in (m68k-*-netbsd*): New config. * configure: Regenerated. --- gdb/config/m68k/.Sanitize | 4 ++++ gdb/config/m68k/nbsd.mh | 5 +++++ gdb/config/m68k/nm-nbsd.h | 21 +++++++++++++++++++++ gdb/config/m68k/tm-nbsd.h | 41 +++++++++++++++++++++++++++++++++++++++++ gdb/config/m68k/xm-nbsd.h | 21 +++++++++++++++++++++ 5 files changed, 92 insertions(+) create mode 100644 gdb/config/m68k/nbsd.mh create mode 100644 gdb/config/m68k/nm-nbsd.h create mode 100644 gdb/config/m68k/tm-nbsd.h create mode 100644 gdb/config/m68k/xm-nbsd.h (limited to 'gdb/config') diff --git a/gdb/config/m68k/.Sanitize b/gdb/config/m68k/.Sanitize index 3fce6e1..36f41fb 100644 --- a/gdb/config/m68k/.Sanitize +++ b/gdb/config/m68k/.Sanitize @@ -47,6 +47,8 @@ m68klynx.mt m68kv4.mh m68kv4.mt monitor.mt +nbsd.mh +nbsd.mt news.mh news.mt news1000.mh @@ -57,6 +59,7 @@ nm-dpx2.h nm-hp300bsd.h nm-hp300hpux.h nm-m68klynx.h +nm-nbsd.h nm-news.h nm-sun2.h nm-sun3.h @@ -86,6 +89,7 @@ tm-isi.h tm-m68kv4.h tm-mac.h tm-monitor.h +tm-nbsd.h tm-news.h tm-os68k.h tm-st2000.h diff --git a/gdb/config/m68k/nbsd.mh b/gdb/config/m68k/nbsd.mh new file mode 100644 index 0000000..2e7fe61 --- /dev/null +++ b/gdb/config/m68k/nbsd.mh @@ -0,0 +1,5 @@ +# Host: Motorola m68k running NetBSD +XDEPFILES= +NATDEPFILES= infptrace.o inftarg.o fork-child.o corelow.o m68knbsd-nat.o +XM_FILE= xm-nbsd.h +NAT_FILE= nm-nbsd.h diff --git a/gdb/config/m68k/nm-nbsd.h b/gdb/config/m68k/nm-nbsd.h new file mode 100644 index 0000000..ce22c4d --- /dev/null +++ b/gdb/config/m68k/nm-nbsd.h @@ -0,0 +1,21 @@ +/* Native-dependent definitions for Motorola m68k running NetBSD, for GDB. + Copyright 1996 Free Software Foundation, Inc. + +This file is part of GDB. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* Get generic NetBSD native definitions. */ +#include "nm-nbsd.h" diff --git a/gdb/config/m68k/tm-nbsd.h b/gdb/config/m68k/tm-nbsd.h new file mode 100644 index 0000000..9a1d579 --- /dev/null +++ b/gdb/config/m68k/tm-nbsd.h @@ -0,0 +1,41 @@ +/* Macro definitions for i386 running under NetBSD. + Copyright 1994 Free Software Foundation, Inc. + +This file is part of GDB. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#ifndef TM_NBSD_H +#define TM_NBSD_H + +#include +#include + +/* Define BPT_VECTOR if it is different than the default. + This is the vector number used by traps to indicate a breakpoint. */ + +#define BPT_VECTOR 0x2 + +/* Address of end of stack space. */ +#define STACK_END_ADDR USRSTACK + +/* For NetBSD, sigtramp is 32 bytes before STACK_END_ADDR. */ +#define SIGTRAMP_START (STACK_END_ADDR - 32) +#define SIGTRAMP_END (STACK_END_ADDR) + +#include "m68k/tm-m68k.h" +#include "tm-nbsd.h" + +#endif /* TM_NBSD_H */ diff --git a/gdb/config/m68k/xm-nbsd.h b/gdb/config/m68k/xm-nbsd.h new file mode 100644 index 0000000..aa28e19 --- /dev/null +++ b/gdb/config/m68k/xm-nbsd.h @@ -0,0 +1,21 @@ +/* Parameters for execution on a Motorola m68k running NetBSD, for GDB. + Copyright 1996 Free Software Foundation, Inc. + +This file is part of GDB. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +/* Get generic NetBSD host definitions. */ +#include "xm-nbsd.h" -- cgit v1.1