mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
loader: ficl: restore isvirtualized?
This word was accidentally removed when gfx bindings were made optional
to remove some overhead not needed for all loaders. This one isn't
graphics related, so we can safely restore it without irritating anyone.
Reported by: sjg
Reviewed by: adrian, imp
Fixes: 9c8bf69a53 ("loader: Only create gfx 4th bindings when [...]")
This commit is contained in:
parent
991ed10e39
commit
354fb783e6
1 changed files with 3 additions and 0 deletions
|
|
@ -864,6 +864,9 @@ void ficlCompilePlatform(FICL_SYSTEM *pSys)
|
|||
dictAppendWord(dp, "ccall", ficlCcall, FW_DEFAULT);
|
||||
dictAppendWord(dp, "uuid-from-string", ficlUuidFromString, FW_DEFAULT);
|
||||
dictAppendWord(dp, "uuid-to-string", ficlUuidToString, FW_DEFAULT);
|
||||
#ifndef TESTMAIN
|
||||
dictAppendWord(dp, "isvirtualized?", ficlIsvirtualizedQ, FW_DEFAULT);
|
||||
#endif
|
||||
|
||||
SET_FOREACH(fnpp, X4th_compile_set)
|
||||
(*fnpp)(pSys);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue