svn commit: r329327 - head/tools/boot

Kyle Evans kevans at FreeBSD.org
Thu Feb 15 17:56:46 UTC 2018


Author: kevans
Date: Thu Feb 15 17:56:45 2018
New Revision: 329327
URL: https://svnweb.freebsd.org/changeset/base/329327

Log:
  Build loader before installing it in lua-img.sh
  
  Slightly more foolproof when all you're wanting to do is quickly get off the
  ground with testing the lua loader.

Modified:
  head/tools/boot/lua-img.sh

Modified: head/tools/boot/lua-img.sh
==============================================================================
--- head/tools/boot/lua-img.sh	Thu Feb 15 17:47:43 2018	(r329326)
+++ head/tools/boot/lua-img.sh	Thu Feb 15 17:56:45 2018	(r329327)
@@ -20,6 +20,7 @@ mkdir -p ${dir}
 mtree -deUW -f etc/mtree/BSD.root.dist -p ${dir}
 mtree -deUW -f etc/mtree/BSD.usr.dist -p ${dir}/usr
 cd stand
+make MK_LOADER_LUA=yes MK_FORTH=no
 make install DESTDIR=${dir} NO_ROOT=t MK_LOADER_LUA=yes MK_FORTH=no MK_INSTALL_AS_USER=yes
 mkdir -p ${dir}/boot/kernel
 cp /boot/kernel/kernel ${dir}/boot/kernel


More information about the svn-src-all mailing list