From mboxrd@z Thu Jan 1 00:00:00 1970 Message-Id: <200210102028.g9AKSwS27998@zamenhof.cs.utwente.nl> To: 9fans@cse.psu.edu From: Axel Belinfante MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <27992.1034281738.1@zamenhof.cs.utwente.nl> Subject: [9fans] mk in /sys/src/9/bitsy: don't know how to make '/arm/inflate' ??? Date: Thu, 10 Oct 2002 22:28:58 +0200 Topicbox-Message-UUID: 033a2d8a-eacb-11e9-9e20-41e7f4b1d025 I'm preparing to bitsify an ipaq (started Booting101 at step 10). I did: cd /sys/src; objtype=arm; mk install (and created subdirectories /arm/bin/ip/httpd /arm/bin/usb to make that work) Then I did (in another window): cd /sys/src/9/bitsy; mk which gives me the error in the subject. What have I missed? Anything I should especially pay attention to when I continue at step 0 (that's not already mentioned in Booting101)? In addition: I'm tempted to change the following in /sys/src/9/bitsy/paqfiles/cpurc (have a two-slot expensian pack, and non-orinoco wavelan) 86,88c86,105 < if(grep -s WaveLAN/IEEE /dev/pcm0ctl){ < if (~ $debug 1) echo 'configure #l0 wavelan' < echo -n 'configure #l0 wavelan'>/dev/pcm0ctl --- > wavenames=( \ > 'WaveLAN/IEEE' \ > 'TrueMobile 1150' \ > 'Instant Wireless ; Network PC CARD' \ > 'Avaya Wireless PC Card' \ > 'AirLancer MC-11' \ > ) > wavedev='' > wavename='' > for (dev in /dev/pcm?ctl) { > for (name in $wavenames) { > if(grep -s $name $dev){ > wavedev=$dev > wavename=$name > } > } > } > if(! ~ $wavedev ''){ > if (~ $debug 1) echo 'configure #l0 wavelan' "$wavename" $wavedev > echo -n 'configure #l0 wavelan'>$wavedev rc 32901: diff 32902: some and make a similar change to startip in the same directory. Feedback, please... (for starters, basic rc question: can I get rid of ugly \ in wavenames array without having to put all entries on the same line? any trick to avoid this duplication of the wavenames from wavelan.c ?) Thanks, Axel.