From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <7dedbdaa54d28296bbde790313eade88@tombob.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] tip o' the day Date: Tue, 8 Feb 2005 12:08:49 +0000 From: Robert Raschke In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 42136906-eace-11e9-9e20-41e7f4b1d025 To build a kernel as a mere mortal user (a bit too long for the one line restriction): mkdir -p $home/src/kernel/ ^ (pc boot ip port) for (i in pc boot ip port) { bind -c $home/src/kernel/$i $home/src/kernel/$i bind -a /sys/src/9/$i $home/src/kernel/$i } cd $home/src/kernel/pc mk 'CONF=pccpuf' The only thing that irks me with this ever so slightly, is the fact that in order to make actual changes to existing files in /sys/..., I need to copy them into my own directory before doing the binding. Robby