summaryrefslogtreecommitdiff
path: root/stand
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2025-09-28 00:40:37 -0600
committerWarner Losh <imp@FreeBSD.org>2025-09-28 19:45:00 -0600
commit55025f42f6fa517aaffc902b3d69fc707536907d (patch)
tree34738dc6d97e5b6b093642310711f6aa1e7496a7 /stand
parent008d04b297c700ed386a4e846c1834ade7255043 (diff)
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
Diffstat (limited to 'stand')
-rw-r--r--stand/lua/cli.lua12
1 files changed, 0 insertions, 12 deletions
diff --git a/stand/lua/cli.lua b/stand/lua/cli.lua
index 6832da0a31a5..596e55a8d1d8 100644
--- a/stand/lua/cli.lua
+++ b/stand/lua/cli.lua
@@ -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.