Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 May 2016 23:36:30 -0700
From:      Adrian Chadd <adrian.chadd@gmail.com>
To:        Ian Lepore <ian@freebsd.org>
Cc:        "src-committers@freebsd.org" <src-committers@freebsd.org>,  "svn-src-all@freebsd.org" <svn-src-all@freebsd.org>,  "svn-src-head@freebsd.org" <svn-src-head@freebsd.org>
Subject:   Re: svn commit: r300815 - head/sys/modules
Message-ID:  <CAJ-Vmonq6_jcTj4Mkwy6QZ4fL67VT6SQdd3x3kG=YuRSRyYYXA@mail.gmail.com>
In-Reply-To: <201605270114.u4R1EZdu013521@repo.freebsd.org>
References:  <201605270114.u4R1EZdu013521@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
It used to build on mips (that's what I used for the platform in the
first place); what happened?


-a


On 26 May 2016 at 18:14, Ian Lepore <ian@freebsd.org> wrote:
> Author: ian
> Date: Fri May 27 01:14:35 2016
> New Revision: 300815
> URL: https://svnweb.freebsd.org/changeset/base/300815
>
> Log:
>   Only build gpio modules on armv6, until it's known that they can be built
>   succesfully on other arches.
>
> Modified:
>   head/sys/modules/Makefile
>
> Modified: head/sys/modules/Makefile
> ==============================================================================
> --- head/sys/modules/Makefile   Fri May 27 01:07:48 2016        (r300814)
> +++ head/sys/modules/Makefile   Fri May 27 01:14:35 2016        (r300815)
> @@ -125,7 +125,7 @@ SUBDIR=     \
>         geom \
>         ${_glxiic} \
>         ${_glxsb} \
> -       gpio \
> +       ${_gpio} \
>         hatm \
>         hifn \
>         hme \
> @@ -733,6 +733,10 @@ _cfi=              cfi
>  _cpsw=         cpsw
>  .endif
>
> +.if ${MACHINE_ARCH} == "armv6"
> +_gpio=         gpio
> +.endif
> +
>  .if ${MACHINE_CPUARCH} == "powerpc"
>  _agp=          agp
>  _an=           an
>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAJ-Vmonq6_jcTj4Mkwy6QZ4fL67VT6SQdd3x3kG=YuRSRyYYXA>