Date: Thu, 22 Feb 2018 01:31:05 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329782 - head/stand/lua Message-ID: <201802220131.w1M1V5D3041136@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 = {}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802220131.w1M1V5D3041136>