From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: <200403161453.i2GErwg17569@zamenhof.cs.utwente.nl> To: 9fans@cse.psu.edu Subject: Re: [9fans] Even more bitsy questions In-reply-to: Your message of "Tue, 16 Mar 2004 14:22:30 +0000." References: From: Axel Belinfante Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 16 Mar 2004 15:53:58 +0100 Topicbox-Message-UUID: 3164896a-eacd-11e9-9e20-41e7f4b1d025 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 } } }