From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 34663 invoked by alias); 24 Aug 2015 14:22:22 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 34471 invoked by uid 89); 24 Aug 2015 14:22:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 24 Aug 2015 14:22:17 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 207A58E68D for ; Mon, 24 Aug 2015 14:22:16 +0000 (UTC) Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t7OEMElE031538 for ; Mon, 24 Aug 2015 10:22:15 -0400 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [PATCH 0/2] Delete the remaining ROM monitor targets Date: Mon, 24 Aug 2015 14:22:00 -0000 Message-Id: <1440426134-16743-1-git-send-email-palves@redhat.com> X-SW-Source: 2015-08/txt/msg00667.txt.bz2 Patch #1 needs a NEWS review, patch #2 needs a GDB manual review. I was going to push forward with a gnulib update today, but I stumbled on: m32r-rom.o: In function `m32r_upload_command': /home/pedro/gdb/mygit/build-mingw/gdb/../../src/gdb/m32r-rom.c:467: undefined reference to `__imp_gethostname_used_without_requesting_gnulib_module_gethostname' collect2: error: ld returned 1 exit status m32r-rom.c is the only file under gdb/ that references gethostname. And it turns out that I had already proposed removing that file, for another reason, see https://sourceware.org/ml/gdb/2015-07/msg00011.html. So this series deletes the remaining ROM monitor targets from the tree, thus avoiding importing gnulib's gethostname for now. Pedro Alves (2): Delete the remaining ROM monitor targets gdb manual: Remove references to deleted targets gdb/Makefile.in | 3 +- gdb/NEWS | 9 + gdb/configure.tgt | 30 +- gdb/dbug-rom.c | 176 ---- gdb/dink32-rom.c | 179 ---- gdb/doc/gdb.texinfo | 403 +-------- gdb/dsrec.c | 316 ------- gdb/m32r-rom.c | 634 ------------- gdb/microblaze-rom.c | 192 ---- gdb/monitor.c | 2417 -------------------------------------------------- gdb/monitor.h | 261 ------ gdb/ppcbug-rom.c | 224 ----- gdb/srec.h | 35 - 13 files changed, 29 insertions(+), 4850 deletions(-) delete mode 100644 gdb/dbug-rom.c delete mode 100644 gdb/dink32-rom.c delete mode 100644 gdb/dsrec.c delete mode 100644 gdb/m32r-rom.c delete mode 100644 gdb/microblaze-rom.c delete mode 100644 gdb/monitor.c delete mode 100644 gdb/monitor.h delete mode 100644 gdb/ppcbug-rom.c delete mode 100644 gdb/srec.h -- 1.9.3