diff options
author | stanley lieber <stanley.lieber@gmail.com> | 2011-05-04 23:07:07 +0000 |
---|---|---|
committer | stanley lieber <stanley.lieber@gmail.com> | 2011-05-04 23:07:07 +0000 |
commit | 1ed976bd1d5691fd7a96c05b0ea2a0e35526600f (patch) | |
tree | da644593509198a01f2cdc2540db3b366686dc51 | |
parent | 8ad34b160ce6f7cbdbbc4d0ab59d074469cf031b (diff) | |
download | plan9front-1ed976bd1d5691fd7a96c05b0ea2a0e35526600f.tar.xz |
default sysname is cirno.
-rwxr-xr-x | rc/bin/cpurc | 2 | ||||
-rwxr-xr-x | rc/bin/termrc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rc/bin/cpurc b/rc/bin/cpurc index 20ca6382a..b69c42b76 100755 --- a/rc/bin/cpurc +++ b/rc/bin/cpurc @@ -17,7 +17,7 @@ if(test -e /rc/bin/cpurc.local) . /rc/bin/cpurc.local if (~ $#sysname 0 || ~ $sysname '') { - sysname = helix # default + sysname = cirno # default echo -n $sysname >/dev/sysname } prompt=($sysname^'# ' ' ') diff --git a/rc/bin/termrc b/rc/bin/termrc index e13450dde..4a652504a 100755 --- a/rc/bin/termrc +++ b/rc/bin/termrc @@ -29,7 +29,7 @@ if(! test -e /srv/cs && ! test -e /net/cs) ndb/cs -f $NDBFILE sysname=`{cat /dev/sysname} if(~ $#sysname 0 || ~ $sysname ''){ - sysname=gnot # default + sysname=cirno # default echo -n $sysname >/dev/sysname } |