[yast-commit] r39862 - in /trunk/storage: libstorage/src/Disk.cc package/yast2-storage.changes
![](https://seccdn.libravatar.org/avatar/0cbed2c4f9cfdb209853a4743dd5705c.jpg?s=120&d=mm&r=g)
Author: fehr Date: Wed Aug 1 11:55:24 2007 New Revision: 39862 URL: http://svn.opensuse.org/viewcvs/yast?rev=39862&view=rev Log: prevent mis-detection of all partitions with boot flag set on GPT as EFI boot partitions (#220839) Modified: trunk/storage/libstorage/src/Disk.cc trunk/storage/package/yast2-storage.changes Modified: trunk/storage/libstorage/src/Disk.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/libstorage/src/Disk.cc?re... ============================================================================== --- trunk/storage/libstorage/src/Disk.cc (original) +++ trunk/storage/libstorage/src/Disk.cc Wed Aug 1 11:55:24 2007 @@ -768,7 +768,8 @@ } if( label == "gpt" ) { - if( TInfo.find( ",boot," ) != string::npos ) + if( TInfo.find( ",boot," ) != string::npos && + TInfo.find( ",fat" ) != string::npos ) { id = Partition::ID_GPT_BOOT; } Modified: trunk/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.cha... ============================================================================== --- trunk/storage/package/yast2-storage.changes (original) +++ trunk/storage/package/yast2-storage.changes Wed Aug 1 11:55:24 2007 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Aug 1 11:54:37 CEST 2007 - fehr@suse.de + +- prevent mis-detection of all partitions with boot flag set on GPT + as EFI boot partitions (#220839) + +------------------------------------------------------------------- Thu Jul 26 14:32:49 CEST 2007 - fehr@suse.de - NFS support should now be working (feature #300779) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
fehr@svn.opensuse.org