9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Axel Belinfante <Axel.Belinfante@cs.utwente.nl>
To: 9fans@cse.psu.edu
Subject: Re: [9fans] Even more bitsy questions
Date: Tue, 16 Mar 2004 15:53:58 +0100	[thread overview]
Message-ID: <200403161453.i2GErwg17569@zamenhof.cs.utwente.nl> (raw)
In-Reply-To: Your message of "Tue, 16 Mar 2004 14:22:30 +0000." <BAY8-F113UbDBRArVc4000146c1@hotmail.com>

I do not have many answers, but I do have a question:

does susend/resume work for you?
If so, what bootloader version do you use? (what bitsy type?)
For me it only works if I resume within 30 seconds or so.
(my bitsy kernel is old, however)


> 2/ With the bitsy hooked up to the serial port and Plan9 running,
> I can only import keyboard text and look at debugging info,
> how can I make it so that I can send files via Xmodem or set up a
> PPP connection for net access?
> or perhaps have shell access to the bitsy?
> (Or whatever you Plan9 users call it)

Searching the archive might help; in the past there
have been discussions about using an external keyboard,
that may have some relevance.

> 3/ How can I get a PCMCIA HDD working? I have a CF sleeve but
> it works as a PCMCIA sleeve and can be used with those modules,
> so how could I get it working?

I use a script startsd
(original at /n/sources/nemo/sys/src/9/bitsy/paqfiles)

#!/bin/rc
names=(\
	'MK5002MPL' \
	'MK2001MPL' \
)
dev=''
name=''
for (d in /dev/pcm?ctl) {
	for (n in $names) {
		if(grep -s $n $d){
			name=$n
			dev=$d
			echo -n 'configure #SC ata 1'>$d
			bind -a '#S' /dev
			disk/fdisk -p /dev/sdC0/data >/dev/sdC0/ctl
			disk/prep -p /dev/sdC0/plan9 >/dev/sdC0/ctl
			disk/kfs -f /dev/sdC0/fs
			mount /srv/kfs /n/kfs
		}
	}
}




      parent reply	other threads:[~2004-03-16 14:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-16 14:22 w0rd 2 th3
2004-03-16 14:42 ` Fco.J.Ballesteros
2004-03-16 14:53 ` Axel Belinfante [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200403161453.i2GErwg17569@zamenhof.cs.utwente.nl \
    --to=axel.belinfante@cs.utwente.nl \
    --cc=9fans@cse.psu.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).