33 lines
839 B
Bash
33 lines
839 B
Bash
bind -a $HOME/cmd/rc /cmd
|
|
bind -a $HOME/cmd/$CPUTYPE /cmd
|
|
bind -c tmp /tmp
|
|
if(! syscall create /tmp/xxx 1 0666 >[2]/dev/null)
|
|
ramfs # in case we're running off a cd
|
|
font = /lib/font/bit/fixed/unicode.6x13.font
|
|
switch($SERVICE){
|
|
case terminal
|
|
plumber
|
|
echo -n accelerated > '#m/mousectl'
|
|
echo -n 'res 3' > '#m/mousectl'
|
|
prompt=('term% ' ' ')
|
|
fn term%{ $* }
|
|
exec rio -i riostart
|
|
case cpu
|
|
if (test -e /mnt/term/mnt/wsys) { # rio already running
|
|
bind -a /mnt/term/mnt/wsys /dev
|
|
if(test -w /dev/label)
|
|
echo -n $SYSNAME > /dev/label
|
|
}
|
|
bind /mnt/term/dev/cons /dev/cons
|
|
bind /mnt/term/dev/consctl /dev/consctl
|
|
bind -a /mnt/term/dev /dev
|
|
prompt=('cpu% ' ' ')
|
|
fn cpu%{ $* }
|
|
if (! test -e /mnt/term/mnt/wsys) { # cpu call from drawterm
|
|
font=/lib/font/bit/fixed/unicode.6x13.font
|
|
exec rio
|
|
}
|
|
case con
|
|
prompt=('cpu% ' ' ')
|
|
}
|