Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jun 2019 15:50:35 +0000 (UTC)
From:      Mitchell Horne <mhorne@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r348839 - head/sys/riscv/conf
Message-ID:  <201906091550.x59FoZdl041564@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mhorne
Date: Sun Jun  9 15:50:35 2019
New Revision: 348839
URL: https://svnweb.freebsd.org/changeset/base/348839

Log:
  RISC-V: Clean up some GENERIC options
  
  Some of the config options that are disabled by default seem to be only
  for historical reasons. Enable those that appear to no longer be
  problematic. This includes WITH_CTF, STACK, GEOM_RAID, and re-enabling
  blacklisted kernel modules.
  
  Reviewed by:	markj
  Approved by:	markj (mentor)
  MFC after:	1 week
  Differential Revision:	https://reviews.freebsd.org/D20495

Modified:
  head/sys/riscv/conf/GENERIC

Modified: head/sys/riscv/conf/GENERIC
==============================================================================
--- head/sys/riscv/conf/GENERIC	Sun Jun  9 15:48:36 2019	(r348838)
+++ head/sys/riscv/conf/GENERIC	Sun Jun  9 15:50:35 2019	(r348839)
@@ -22,12 +22,8 @@ cpu		RISCV
 ident		GENERIC
 
 makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
-# makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
+makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
 
-# FIXME: linker error. "--relax and -r may not be used together"
-makeoptions	WITHOUT_MODULES="usb otusfw mwlfw ispfw mwlfw ralfw rtwnfw"
-# makeoptions	NO_MODULES
-
 options 	SCHED_ULE		# ULE scheduler
 options 	PREEMPTION		# Enable kernel thread preemption
 options 	VIMAGE			# Subsystem virtualization, e.g. VNET
@@ -52,11 +48,11 @@ options 	CD9660			# ISO 9660 Filesystem
 options 	PROCFS			# Process filesystem (requires PSEUDOFS)
 options 	PSEUDOFS		# Pseudo-filesystem framework
 options 	GEOM_PART_GPT		# GUID Partition Tables.
-# options 	GEOM_RAID		# Soft RAID functionality.
+options 	GEOM_RAID		# Soft RAID functionality.
 options 	GEOM_LABEL		# Provides labelization
 options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
 options 	KTRACE			# ktrace(1) support
-# options 	STACK			# stack(9) support
+options 	STACK			# stack(9) support
 options 	SYSVSHM			# SYSV-style shared memory
 options 	SYSVMSG			# SYSV-style message queues
 options 	SYSVSEM			# SYSV-style semaphores



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906091550.x59FoZdl041564>