svn commit: r338157 - in head/sys: arm64/conf conf

Oleksandr Tymoshenko gonzo at FreeBSD.org
Tue Aug 21 21:30:20 UTC 2018


Author: gonzo
Date: Tue Aug 21 21:30:19 2018
New Revision: 338157
URL: https://svnweb.freebsd.org/changeset/base/338157

Log:
  Add muge(4) to the arm64 GENERIC kernel
  
  muge(4) is the USB ethernet adapter that is used in RPi 3B+. Shipping it
  in GENERIC kernel allows using NFS root out of the box instead of either
  building custom kernel or modifying loader.conf for early loading of if_muge.ko
  
  No objections:	emaste

Modified:
  head/sys/arm64/conf/GENERIC
  head/sys/conf/files

Modified: head/sys/arm64/conf/GENERIC
==============================================================================
--- head/sys/arm64/conf/GENERIC	Tue Aug 21 21:08:58 2018	(r338156)
+++ head/sys/arm64/conf/GENERIC	Tue Aug 21 21:30:19 2018	(r338157)
@@ -188,6 +188,7 @@ device		ukbd			# Keyboard
 device		umass			# Disks/Mass storage - Requires scbus and da
 
 # USB ethernet support
+device		muge
 device		smcphy
 device		smsc
 

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Tue Aug 21 21:08:58 2018	(r338156)
+++ head/sys/conf/files	Tue Aug 21 21:30:19 2018	(r338157)
@@ -3298,6 +3298,7 @@ dev/usb/net/if_cue.c		optional cue
 dev/usb/net/if_ipheth.c		optional ipheth
 dev/usb/net/if_kue.c		optional kue
 dev/usb/net/if_mos.c		optional mos
+dev/usb/net/if_muge.c		optional muge
 dev/usb/net/if_rue.c		optional rue
 dev/usb/net/if_smsc.c		optional smsc
 dev/usb/net/if_udav.c		optional udav


More information about the svn-src-all mailing list