GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
LOADER.LUA(8) FreeBSD System Manager's Manual LOADER.LUA(8)

loader.luabootloader Lua binding module

The built-in Lua bindings for the FreeBSD boot loaders using the Lua interpreter are available via the loader table.

The loader table is always available in Lua scripts. There is no need to require it like other loader-specific modules.

The following variables are provided by the Lua interpreter in the loader table:

The target's hw.machine sysctl(8) value.
The target's hw.machine_arch sysctl(8) value. Some boot loaders are 32-bit applications that then load a 64-bit kernel. In these cases, machine_arch represents the 32-bit architecture, not the 64-bit architecture.
The current lua loading path.
The version of the boot program.

The following functions are exported in the loader table.

(usec)
Delay for usec microseconds.
()
Returns the error string from the last command to fail.
(argc, argv)
Like () but the arguments are already parsed onto the stack.
(status)
Exit the boot loader back to the firmware with a status of status. The interpretation of this value is firmware specific.
(str)
Execute the loader builtin command str as if it were typed by the user. This will first try to execute str as Lua. If that fails, it will attempt to execute it as a cli command, including those defined by the cli.lua(8) mechanism. If that fails, it will attempt to execute it as a builtin command and return the same values as perform().
(str)
Parses the command str into its words and return those words on the stack.
(name)
Obtains the value of the environment variable name.
(cmd)
returns true if commmand is present in the interpreter as a builtin. Otherwise it returns nil and an error string. It does not check the “cli” table to see if a user defined command has been created.
(feature)
returns true if the feature is enabled. Otherwise it returns nil and an error string.
perform(str)
Execute the loader builtin command str. Returns the result of the command, one of the following values:
loader.CMD_OK
The command completed successfully.
loader.CMD_WARN
The command was successful, but the user stopped its output prematurely.
loader.CMD_ERROR
The command did not complete successfully. Use command_error to retrieve the error.
loader.CMD_CRIT
The command returned a critical error that was already printed.
loader.CMD_FATAL
The command determined continuation was not possible and the loader panicked. In practice, though, () does not return.
(str)
Outputs the string using the loader's () function. This function is also available globally as printc().
(name, value)
Insert or reset the environment variable name into the loader's environment list. If no environment variable with this name exists, one is created. If one exists, its value is replaced.
()
Returns the loader's notion of time, in seconds since 1970. The value of loader's notion varies somewhat between different loading environments.
(name)
Removes the environment variable name from the loader's environment list.

The functions (), (), (), (), (), (), and () have moved to the gfx table. They remain in the loader table for a transition period and are documented in gfx.lua(8).

In addition, the Lua interpreters start with the file /boot/lua/loader.lua when they start to boot the system. The default one will fixup the screen, load the configuration files, check for a password, and then load the menu or load the kernel file and then return. If autoboot is enabled, the loaded files will boot.

loader.conf(5), core.lua(8), gfx.lua(8), loader(8), sysctl(8)

The loader.lua man page was written by Warner Losh <imp@FreeBSD.org>.

command() and perform() should return a tuple when there's CMD_ERROR or worse.

March 29, 2025 FreeBSD 14.3-RELEASE

Search for    or go to Top of page |  Section 8 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.