From owner-svn-src-all@freebsd.org Wed Oct 21 19:16:49 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7913A1B4C6; Wed, 21 Oct 2015 19:16:49 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-ig0-x236.google.com (mail-ig0-x236.google.com [IPv6:2607:f8b0:4001:c05::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 94C9217C7; Wed, 21 Oct 2015 19:16:49 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by igbhv6 with SMTP id hv6so45019731igb.0; Wed, 21 Oct 2015 12:16:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=uI94NHpH8r+QGjxiRjHzy+DpZp3H3s8VlWCMHy92ruw=; b=SB7xpXNQEhGQvp49tB3eX3kAkcv3Ll3T+Z146FYOF0TaDLZdm8CJTsQX3RmfkzPXcs tC1ZeUiN5e4ZmvtHMNQa2j2hZjB1+bNkQRTBh0CLkj7mmpMl+CG1Npo8liH7GPVEE6rd HD1yvSZlBuQAgJP/vrpgooA9U8HJ7JSg5PIicn8XOcamNMoEsaxaZtL6JiMBopEUxnzb 7oa8/+p3ye+Zt8D+EOBHW0EKfo+L00RoqtzV0LzjFPT6FShqj2D/4Gr4i38lzbpUCMhj 93f3IA8V5khuaFKP9l7duuYNHYH7moVaYnZ8LBDGdpkP7BHTq4/Zje7YKviDAd6xMXrw OCTg== X-Received: by 10.50.117.5 with SMTP id ka5mr5227721igb.58.1445455008919; Wed, 21 Oct 2015 12:16:48 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.158.75 with HTTP; Wed, 21 Oct 2015 12:16:29 -0700 (PDT) In-Reply-To: <201510211830.t9LIUgWt061526@repo.freebsd.org> References: <201510211830.t9LIUgWt061526@repo.freebsd.org> From: Ed Maste Date: Wed, 21 Oct 2015 15:16:29 -0400 X-Google-Sender-Auth: rGZnBNGSInLYOIH34IRr1mjntM4 Message-ID: Subject: Re: svn commit: r289710 - in head/sys/modules: i2c/iicbb uart To: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Wed, 21 Oct 2015 19:16:49 -0000 On 21 October 2015 at 14:30, Ed Maste wrote: > Author: emaste > Date: Wed Oct 21 18:30:42 2015 > New Revision: 289710 > URL: https://svnweb.freebsd.org/changeset/base/289710 > > Log: > Build ofw_bus_if.h for modules that need it on arm64 Module Makefile build rules for ofw_bus_if.h are a bit of a mess; some modules build it unconditionally while others build it only on certain archs. There are a large number of different combinations of sparc64, mips, powerpc, arm, and aarch64. This is true for a number of other arch-specific module Makefile support. Should we have MK_* knobs to control these cases -- e.g. MK_OFW (MK_FDT?) here? That would at least move the arch-specific tests to a common location.