From owner-svn-src-all@freebsd.org Sun Oct 7 12:57:44 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E650A10C216B; Sun, 7 Oct 2018 12:57:43 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: from mail-wr1-f46.google.com (mail-wr1-f46.google.com [209.85.221.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 722DE83F05; Sun, 7 Oct 2018 12:57:43 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: by mail-wr1-f46.google.com with SMTP id a2-v6so10822638wrc.13; Sun, 07 Oct 2018 05:57:43 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=35+ytME7CvlSNKRUHdIewsnkz5PyySw22kSIqgU9O/g=; b=srcBqWzh/oxG4Ztbg/uNcNHb91Lp0axwIjrtu1YOfNSOn4MvXN9hSLi3766t+5BjNt tSf/lQJgs7dInZmF2NIQOfKQbo+iOc6e5OkFNwPAkaaYlTExyqDTYeLw3t880qEyoZjS K2KpluX5v7JORGgA7NUoswknngeYAgZElWYqdDMyG5/eRVFzFXx7iPzvexwuBk+YiVPb aRVJWiL4lLPMZQnfsCUJqv/hZQDDTjidPT7vNTUV1OovS/4pWe/8XP98d9viERi2AmwU n7n3KhzLccEcj0icp2Sw5TyWa6pwEDfanVy/KxAzn4zPsdfLfmjLlQeOJPtkHFD0A7hm giBw== X-Gm-Message-State: ABuFfojOEJ0ehoeg9zOpCByANIObFSc9Q2MEX8V/luM7jj0iiDOp4j2i iWhsHOiPbThlYvMtNKZkPu0oikJ+x95Bxg== X-Google-Smtp-Source: ACcGV62kE79eEoQswad8S3zuSq4XHMqGS58DCwAy1h2s1W5hg4MIdmbPjHXQ5wio43GHciLJi9fCiA== X-Received: by 2002:adf:a144:: with SMTP id r4-v6mr13298374wrr.169.1538916744477; Sun, 07 Oct 2018 05:52:24 -0700 (PDT) Received: from e5500 (x4db37188.dyn.telefonica.de. [77.179.113.136]) by smtp.gmail.com with ESMTPSA id u76-v6sm14776429wmd.10.2018.10.07.05.52.23 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 07 Oct 2018 05:52:24 -0700 (PDT) Date: Sun, 7 Oct 2018 14:52:19 +0200 From: Mateusz Piotrowski <0mp@FreeBSD.org> To: Kyle Evans Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r339218 - in head: . stand/defaults stand/lua Message-ID: <20181007145219.36e54ed3@e5500> In-Reply-To: <201810070153.w971rhEq035600@repo.freebsd.org> References: <201810070153.w971rhEq035600@repo.freebsd.org> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; i386-portbld-freebsd11.1) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.27 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: Sun, 07 Oct 2018 12:57:44 -0000 On Sun, 7 Oct 2018 01:53:43 +0000 (UTC) Kyle Evans wrote: >Author: kevans >Date: Sun Oct 7 01:53:43 2018 >New Revision: 339218 >URL: https://svnweb.freebsd.org/changeset/base/339218 > >Log: > lualoader: Create a module blacklist, add DRM modules to it > > This is a step in the process of easing migration into the new world order > of DRM drivers. Strongly encourage users towards loading DRM modules via > rc.conf(5) instead of loader.conf(5) by failing the load from loader(8). > Users so inclined may wipe out the blacklist via module_blacklist="" in > loader.conf(5), and it is expected that these modules will eventually be > removed from the blacklist. They may still be loaded as dependencies of > other modules or explicitly via the loader prompt, but this should not be a > major problem. > > Approved by: re (rgrimes) > Relnotes: yes > Differential Revision: https://reviews.freebsd.org/D16914 > >Modified: > head/UPDATING > head/stand/defaults/loader.conf > head/stand/defaults/loader.conf.5 > head/stand/lua/config.lua > > [...] > >Modified: head/stand/defaults/loader.conf.5 >============================================================================== >--- head/stand/defaults/loader.conf.5 Sun Oct 7 00:40:56 2018 (r339217) >+++ head/stand/defaults/loader.conf.5 Sun Oct 7 01:53:43 2018 (r339218) >@@ -23,7 +23,7 @@ > .\" SUCH DAMAGE. > .\" > .\" $FreeBSD$ >-.Dd August 28, 2018 >+.Dd October 6, 2018 > .Dt LOADER.CONF 5 > .Os > .Sh NAME >@@ -147,6 +147,15 @@ If a password is set, the user must provide specified > If set to > .Dq YES , > module names will be displayed as they are loaded. >+.It Ar module_blacklist >+Blacklist of modules. >+Modules specified in the blacklist may not be loaded automatically with a >+.Ar *_load >+directive, but they may be loaded directly at the >+.Xr loader 8 >+prompt. >+Blacklisted modules may still be loaded indirectly as dependencies of other >+moduled. Do you think that the users might benefit from adding a note about the default set of modules included in the list? Something like: Default: .Dq drm drm2 radeonkms i915kms amdgpu .