From owner-svn-src-head@freebsd.org Thu May 10 09:37:52 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1551FFC0107; Thu, 10 May 2018 09:37:52 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA3706CA96; Thu, 10 May 2018 09:37:51 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9B2EC1E960; Thu, 10 May 2018 09:37:51 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4A9bpAv073030; Thu, 10 May 2018 09:37:51 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4A9bpT5073028; Thu, 10 May 2018 09:37:51 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201805100937.w4A9bpT5073028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Thu, 10 May 2018 09:37:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333455 - head/sys/arm64/conf X-SVN-Group: head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: head/sys/arm64/conf X-SVN-Commit-Revision: 333455 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 May 2018 09:37:52 -0000 Author: manu Date: Thu May 10 09:37:50 2018 New Revision: 333455 URL: https://svnweb.freebsd.org/changeset/base/333455 Log: arm64: Add ALT_BREAK_TO_DEBUGGER to GENERIC It is useful to enter kdb with an escape sequence. While here move the USB_DEBUG with the others debug options and define nooptions USB_DEBUG for GENERIC-NODEBUG Modified: head/sys/arm64/conf/GENERIC head/sys/arm64/conf/GENERIC-NODEBUG Modified: head/sys/arm64/conf/GENERIC ============================================================================== --- head/sys/arm64/conf/GENERIC Thu May 10 09:32:59 2018 (r333454) +++ head/sys/arm64/conf/GENERIC Thu May 10 09:37:50 2018 (r333455) @@ -90,6 +90,8 @@ options INVARIANT_SUPPORT # Extra sanity checks of in options WITNESS # Enable checks to detect deadlocks and cycles options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones +options ALT_BREAK_TO_DEBUGGER # Enter debugger on keyboard escape sequence +options USB_DEBUG # enable debug msgs # SoC support options SOC_ALLWINNER_A64 @@ -162,7 +164,6 @@ device uart_snps device pl011 # USB support -options USB_DEBUG # enable debug msgs device aw_ehci # Allwinner EHCI USB interface (USB 2.0) device aw_usbphy # Allwinner USB PHY device dwcotg # DWC OTG controller Modified: head/sys/arm64/conf/GENERIC-NODEBUG ============================================================================== --- head/sys/arm64/conf/GENERIC-NODEBUG Thu May 10 09:32:59 2018 (r333454) +++ head/sys/arm64/conf/GENERIC-NODEBUG Thu May 10 09:37:50 2018 (r333455) @@ -37,4 +37,4 @@ nooptions WITNESS_SKIPSPIN nooptions BUF_TRACKING nooptions DEADLKRES nooptions FULL_BUF_TRACKING - +nooptions USB_DEBUG