Author: kevans
Date: Wed Feb 21 14:07:53 2018
New Revision: 329709
URL: https://svnweb.freebsd.org/changeset/base/329709

Log:
  lualoader: Don't autodetect kernels if 'kernels' is explicitly set

Modified:
  head/stand/lua/core.lua

Modified: head/stand/lua/core.lua
==============================================================================
--- head/stand/lua/core.lua     Wed Feb 21 14:05:13 2018        (r329708)
+++ head/stand/lua/core.lua     Wed Feb 21 14:07:53 2018        (r329709)
@@ -188,7 +188,7 @@ end
 
 function core.kernelList()
        local k = loader.getenv("kernel")
-       local v = loader.getenv("kernels") or ""
+       local v = loader.getenv("kernels")
 
        local kernels = {}
        local unique = {}
@@ -199,12 +199,18 @@ function core.kernelList()
                unique[k] = true
        end
 
-       for n in v:gmatch("([^; ]+)[; ]?") do
-               if unique[n] == nil then
-                       i = i + 1
-                       kernels[i] = n
-                       unique[n] = true
+       if v ~= nil then
+               for n in v:gmatch("([^; ]+)[; ]?") do
+                       if unique[n] == nil then
+                               i = i + 1
+                               kernels[i] = n
+                               unique[n] = true
+                       end
                end
+
+               -- We will not automatically detect kernels to be displayed if
+               -- loader.conf(5) explicitly set 'kernels'.
+               return kernels
        end
 
        -- Automatically detect other bootable kernel directories using a
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to