git: 9front

Download patch

ref: ba40d7c36f3ba78026b37cfee925d2b690192e40
parent: 269f706e302ae73d8d3705be16ed77bb63c693db
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Mar 22 23:15:58 EDT 2015

boot: bind #c to /dev with MREPL instead of MBEFORE to avoid double entries

--- a/sys/src/9/boot/boot.c
+++ b/sys/src/9/boot/boot.c
@@ -12,7 +12,7 @@
 
 	fmtinstall('r', errfmt);
 
-	bind("#c", "/dev", MBEFORE);
+	bind("#c", "/dev", MREPL);
 	open("/dev/cons", OREAD);
 	open("/dev/cons", OWRITE);
 	open("/dev/cons", OWRITE);
--