svn commit: r280795 - head/sys/mips/conf

John Baldwin jhb at freebsd.org
Mon Mar 30 16:40:24 UTC 2015


On Saturday, March 28, 2015 11:02:00 PM Adrian Chadd wrote:
> Author: adrian
> Date: Sat Mar 28 23:01:59 2015
> New Revision: 280795
> URL: https://svnweb.freebsd.org/changeset/base/280795
> 
> Log:
>   Remove the second MODULES_OVERRIDE; add if_vlan to the list.
> 
> Modified:
>   head/sys/mips/conf/AR933X_BASE
> 
> Modified: head/sys/mips/conf/AR933X_BASE
> ==============================================================================
> --- head/sys/mips/conf/AR933X_BASE	Sat Mar 28 21:39:42 2015	(r280794)
> +++ head/sys/mips/conf/AR933X_BASE	Sat Mar 28 23:01:59 2015	(r280795)
> @@ -20,8 +20,7 @@ files		"../atheros/files.ar71xx"
>  hints		"AR933X_BASE.hints"
>  
>  makeoptions	DEBUG=-g		#Build kernel with gdb(1) debug symbols
> -makeoptions	MODULES_OVERRIDE="random gpio ar71xx if_gif if_gre if_bridge bridgestp usb wlan wlan_xauth wlan_acl wlan_wep wlan_tkip wlan_ccmp wlan_rssadapt wlan_amrr hwpmc ipfw"
> -makeoptions	MODULES_OVERRIDE=""
> +makeoptions	MODULES_OVERRIDE="random gpio ar71xx if_gif if_vlan if_gre if_bridge bridgestp usb wlan wlan_xauth wlan_acl wlan_wep wlan_tkip wlan_ccmp wlan_rssadapt wlan_amrr hwpmc ipfw"

Note that you can use += with makeoptions to wrap long lines, e.g.

makeoptions	MODULES_OVERRIDE="foo bar baz"
makeoptions	MODULES_OVERRIDE+="qux quux quuux"

This might be more readable.

-- 
John Baldwin


More information about the svn-src-head mailing list