git: 55025f42f6fa - main - stand: Remove support for FreeBSD 12.2 and earlier

From: Warner Losh <imp_at_FreeBSD.org>
Date: Mon, 29 Sep 2025 01:48:02 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=55025f42f6fa517aaffc902b3d69fc707536907d

commit 55025f42f6fa517aaffc902b3d69fc707536907d
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2025-09-28 06:40:37 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-09-29 01:45:00 +0000

    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
---
 stand/lua/cli.lua | 12 ------------
 1 file changed, 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.