From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] partition question From: Richard Miller <9fans@hamnavoe.com> Date: Wed, 2 Feb 2005 10:44:35 +0000 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 3c4dd2e0-eace-11e9-9e20-41e7f4b1d025 Some sd partitions are set up as a side effect of the bootstrap process. Look at mbrpart() in /sys/src/boot/pc/part.c, which is called for each sd while probing for possible boot devices. The comment says /* * Fetch the first dos and all plan9 partitions out of the MBR partition table. * We return -1 if we did not find a plan9 partition. */ That's why termrc does further probing, to find any extra partitions besides the above. To do the same for a CPU server, you would have to add something to the local cpurc. -- Richard