svn commit: r329782 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Thu Feb 22 01:31:05 UTC 2018


Author: kevans
Date: Thu Feb 22 01:31:05 2018
New Revision: 329782
URL: https://svnweb.freebsd.org/changeset/base/329782

Log:
  lualoader: Unbreak 'boot [kernel]' by including config

Modified:
  head/stand/lua/cli.lua

Modified: head/stand/lua/cli.lua
==============================================================================
--- head/stand/lua/cli.lua	Thu Feb 22 01:30:03 2018	(r329781)
+++ head/stand/lua/cli.lua	Thu Feb 22 01:31:05 2018	(r329782)
@@ -26,7 +26,8 @@
 -- $FreeBSD$
 --
 
-local core = require('core')
+local config = require("config")
+local core = require("core")
 
 local cli = {}
 


More information about the svn-src-all mailing list