From owner-svn-src-all@FreeBSD.ORG Mon Jun 16 08:49:16 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B8EC0B34; Mon, 16 Jun 2014 08:49:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5B16278D; Mon, 16 Jun 2014 08:49:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G8nGO7075369; Mon, 16 Jun 2014 08:49:16 GMT (envelope-from royger@svn.freebsd.org) Received: (from royger@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5G8nGQ1075368; Mon, 16 Jun 2014 08:49:16 GMT (envelope-from royger@svn.freebsd.org) Message-Id: <201406160849.s5G8nGQ1075368@svn.freebsd.org> From: Roger Pau Monné Date: Mon, 16 Jun 2014 08:49:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267535 - head/sys/x86/isa X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 08:49:16 -0000 Author: royger Date: Mon Jun 16 08:49:16 2014 New Revision: 267535 URL: http://svnweb.freebsd.org/changeset/base/267535 Log: isa: allow ISA bus to attach to xenpv bus This is needed because syscons depends on ISA. Sponsored by: Citrix Systems R&D Approved by: gibbs x86/isa/isa.c: - Allow the ISA bus to attach to xenpv. Modified: head/sys/x86/isa/isa.c Modified: head/sys/x86/isa/isa.c ============================================================================== --- head/sys/x86/isa/isa.c Mon Jun 16 08:48:42 2014 (r267534) +++ head/sys/x86/isa/isa.c Mon Jun 16 08:49:16 2014 (r267535) @@ -241,3 +241,8 @@ isa_release_resource(device_t bus, devic * On this platform, isa can also attach to the legacy bus. */ DRIVER_MODULE(isa, legacy, isa_driver, isa_devclass, 0, 0); + +/* + * Attach the ISA bus to the xenpv bus in order to get syscons. + */ +DRIVER_MODULE(isa, xenpv, isa_driver, isa_devclass, 0, 0);