shithub: riscv

Download patch

ref: 90b38f03a528f2a1e1b76b69f77bff3cb43b5524
parent: b163f8327ab068912fb620fb1b13ab0d2c65d435
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Mon Jun 18 18:54:16 EDT 2012

inst: pass on kernel parameters to installed plan9.ini

--- a/rc/bin/inst/bootsetup
+++ b/rc/bin/inst/bootsetup
@@ -35,7 +35,7 @@
 			bootfile=9pccpuf
 		if not
 			bootfile=9pcf
-		{
+		@{
 			echo 'bootfile='^$bootfile
 			echo 'bootargs=local!'^$fs
 			if(~ $#nvram 1)
@@ -43,8 +43,12 @@
 			echo 'mouseport='^$mouseport
 			echo 'monitor='^$monitor
 			echo 'vgasize='^$vgasize
-			if(test -f '#ec/*nomp')
-				echo '*nomp=1'
+			cd '#ec'
+			for(i in *){
+				echo -n $"i'='
+				cat $i
+				echo
+			} | grep -v '(apm0|e820|bootfile|bootargs|nvram|mouseport|monitor|vgasize)'
 		} >/tmp/plan9.ini
 	}
 
--