From owner-cvs-all@FreeBSD.ORG Tue Oct 10 07:26:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93FF516A415; Tue, 10 Oct 2006 07:26:54 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CA6643D55; Tue, 10 Oct 2006 07:26:54 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9A7QsP2097974; Tue, 10 Oct 2006 07:26:54 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9A7Qs8V097973; Tue, 10 Oct 2006 07:26:54 GMT (envelope-from bde) Message-Id: <200610100726.k9A7Qs8V097973@repoman.freebsd.org> From: Bruce Evans Date: Tue, 10 Oct 2006 07:26:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/ddb db_command.c src/sys/sparc64/sparc64 db_interface.c src/sys/powerpc/powerpc db_interface.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Oct 2006 07:26:54 -0000 bde 2006-10-10 07:26:54 UTC FreeBSD src repository Modified files: sys/ddb db_command.c sys/sparc64/sparc64 db_interface.c sys/powerpc/powerpc db_interface.c Log: The powerpc and sparc64 MD `reboot' commands should never have existed since they just duplicated the MI `reset' command. Instead of removing them, make `reboot' an MI alias for `reboot' since this gives a better way of killing the `r' alias for `reset'. Remove the `registers' command that was used to kill the alias. Turn the powerpc and sparc64 MD `halt' command into an MI command. A copy of sparc64/db_interface.c grew in sun4v just after I found the extra reboot commands. It has not been changed, and is now not identical. Duplicated commands come out duplicated in ddb's online help, but cause large problems when used (e.g., on i386's with 2 halt's and an hwatch, typing h doesn' give the expected message about an ambiguous command, but hangs like the halt command or a looping parseri would). Revision Changes Path 1.71 +10 -1 src/sys/ddb/db_command.c 1.6 +0 -14 src/sys/powerpc/powerpc/db_interface.c 1.11 +0 -11 src/sys/sparc64/sparc64/db_interface.c