Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030353AbWAaGxj (ORCPT ); Tue, 31 Jan 2006 01:53:39 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1030351AbWAaGxj (ORCPT ); Tue, 31 Jan 2006 01:53:39 -0500 Received: from smtpout.mac.com ([17.250.248.72]:2521 "EHLO smtpout.mac.com") by vger.kernel.org with ESMTP id S1030292AbWAaGxi (ORCPT ); Tue, 31 Jan 2006 01:53:38 -0500 In-Reply-To: <20060131032438.GB8920@kroah.com> References: <43DEB4B8.5040607@zytor.com> <20060131032133.GA8920@kroah.com> <20060131032438.GB8920@kroah.com> Mime-Version: 1.0 (Apple Message framework v746.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Cc: "H. Peter Anvin" , Neil Brown , linux-raid@vger.kernel.org, klibc list , Linux Kernel Mailing List Content-Transfer-Encoding: 7bit From: Kyle Moffett Subject: Re: [klibc] Exporting which partitions to md-configure Date: Tue, 31 Jan 2006 01:53:32 -0500 To: Greg KH X-Mailer: Apple Mail (2.746.2) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2724 Lines: 71 On Jan 30, 2006, at 22:24, Greg KH wrote: > Oh, an example of it working: > # vol_id /dev/sda3 > ID_FS_USAGE=filesystem > ID_FS_TYPE=ext3 > ID_FS_VERSION=1.0 > ID_FS_UUID=9d2efd53-6b5a-4f84-86cc-def71269b7ca > ID_FS_LABEL= > ID_FS_LABEL_SAFE= > # vol_id -t /dev/sda3 > ext3 > # vol_id -u /dev/sda3 > 9d2efd53-6b5a-4f84-86cc-def71269b7ca That shows filesystem information, but not at all the partition table information. If I look at my mac partition table (this is using the apple-provided tool under OS X, but it's the same using the Linux tool), for example: hc6524e32:~ kyle$ sudo -H /usr/sbin/pdisk -l /dev/disk1 Partition map (with 512 byte blocks) on '/dev/disk1' #: type name length base ( size ) 1: Apple_partition_map Apple 63 @ 1 2: Apple_Bootstrap bootstrap 1600 @ 64 3: Apple_UNIX_SVR2 linux_boot 1048576 @ 1664 (512.0M) 4: Apple_UNIX_SVR2 linux_swap 2097152 @ 1050240 ( 1.0G) 5: Apple_UNIX_SVR2 linux_lvm 241051200 @ 3147392 (114.9G) 6: Apple_Boot eXternal booter 262144 @ 244198592 (128.0M) 7: Apple_RAID Apple_RAID_OfflineV2_Untitled_2 243936432 @ 244460736 (116.3G) Device block size=512, Number of Blocks=488397168 (232.9G) DeviceType=0x0, DeviceId=0x0 Now obviously linux_boot, linux_swap, and linux_lvm are not _actually_ Apple_UNIX_SVR2, but that's the type stored in the partition map. They also have partition map labels "linux_*", but they do *not* have ext3 volume labels. In fact, linux_boot is one slice of a RAID1 of 3 drives, linux_swap is one slice of a RAID5 of 3 drives, and linux_lvm is one slice of a RAID5 of 3 drives that alltogether make an LVM PV. If I examine each of those partitions individually, I get a lot of other information that is totally unrelated to that stored in the partition table. It would be nice to be able to change the type of linux_* from Apple_UNIX_SVR2 to Linux_RAID (Max length is 31 characters), and have my userspace tools be able to detect that and do useful things with it and the pmap label. Cheers, Kyle Moffett -- If you don't believe that a case based on [nothing] could potentially drag on in court for _years_, then you have no business playing with the legal system at all. -- Rob Landley - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/