git: 9front

Download patch

ref: 19b7d4d985ce0f671343bbed5cedd96439731ed5
parent: 6e38cd3ef70abd8194b5891be3a7c9865ef32b53
author: stanley lieber <stanley.lieber@gmail.com>
date: Wed May 4 19:07:07 EDT 2011

default sysname is cirno.

--- a/rc/bin/cpurc
+++ b/rc/bin/cpurc
@@ -17,7 +17,7 @@
 	. /rc/bin/cpurc.local
 
 if (~ $#sysname 0 || ~ $sysname '') {
-	sysname = helix			# default
+	sysname = cirno			# default
 	echo -n $sysname >/dev/sysname
 }
 prompt=($sysname^'# ' '	')
--- a/rc/bin/termrc
+++ b/rc/bin/termrc
@@ -29,7 +29,7 @@
 	ndb/cs -f $NDBFILE
 sysname=`{cat /dev/sysname}
 if(~ $#sysname 0 || ~ $sysname ''){
-	sysname=gnot			# default
+	sysname=cirno			# default
 	echo -n $sysname >/dev/sysname
 }
 
--