Date: Mon, 19 Feb 2018 22:00:01 +0000 From: Alexander Nasonov <alnsn@yandex.ru> To: Kyle Evans <kevans@FreeBSD.org> Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r329587 - head/stand/lua Message-ID: <20180219220001.GA12274@neva> In-Reply-To: <201802191636.w1JGaTci003687@repo.freebsd.org> References: <201802191636.w1JGaTci003687@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Kyle Evans wrote: > + -- Swap the first two menu items on single user boot > + if (core.isSingleUserBoot()) then > + local multiuser = menu_entries[1]; > + local singleuser = menu_entries[2]; > + > + menu_entries[2] = multiuser; > + menu_entries[1] = singleuser; > + end -- Swap the first two menu items on single user boot if core.isSingleUserBoot() then menu_entries[1], menu_entries[2] = menu_entries[2], menu_entries[1] end -- Alex
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20180219220001.GA12274>