stand: Remove support for FreeBSD 12.2 and earlier

Remove 'pager' shim that was last not supported in FreeBSD 12.2, which
went EOL on March 31, 2022. People have had enough time to upgrade the
boot loader.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh
2025-09-28 00:40:37 -06:00
parent 008d04b297
commit 55025f42f6
-12
View File
@@ -30,18 +30,6 @@ local core = require("core")
local cli = {}
if not pager then
-- shim for the pager module that just doesn't do it.
-- XXX Remove after 12.2 goes EoL.
pager = {
open = function() end,
close = function() end,
output = function(str)
printc(str)
end,
}
end
-- Internal function
-- Parses arguments to boot and returns two values: kernel_name, argstr
-- Defaults to nil and "" respectively.