ref: be4a222a1abf3c813cb12e86c9795220d0ccc252
parent: 886e194637421f6eb0e33bf853046677d30a4448
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sat Dec 13 00:29:51 EST 2014
kernel: generate dummy bootscreeninit() function when building without vga device
--- a/sys/src/9/port/mkdevc
+++ b/sys/src/9/port/mkdevc
@@ -166,6 +166,9 @@
for(i = 0; i < nvgacur; i++)
printf "\t&%scur,\n", vgacur[i];
printf "\tnil,\n};\n\n";
+ } else {+ if(objtype ~ "(386|amd64)")
+ printf "void bootscreeninit(void)\n{\n}\n\n";}
if(nip){--
⑨