git: 9front

Download patch

ref: 8bbc6b260915019b8f31c3a22ae4c50f4e69653a
parent: d45cf2617fd6ed9a3074a1a7e51083f1a25e43ae
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Aug 31 12:06:21 EDT 2025

inst: don't copy *acpi=0x... into plan9.ini

This variable comes from efi boot-loader,
and should not be hard-coded in plan9.ini
by default.

--- a/rc/bin/inst/bootsetup
+++ b/rc/bin/inst/bootsetup
@@ -56,7 +56,7 @@
 				echo -n $"i'='
 				cat $i
 				echo
-			} | grep -v '(apm0|e820|bootfile|bootargs|bootscreen|nvram|mouseport|monitor|vgasize|cdboot)'
+			} | grep -v '^(\*acpi=0x|\*bootscreen=|\*e820=|apm0=|bootfile=|bootargs=|cdboot=|nvram=|mouseport=|monitor=|vgasize=)'
 		} >/tmp/plan9.ini
 	}
 
--