Author: snwint Date: Thu Mar 31 12:35:50 2011 New Revision: 63686
URL: http://svn.opensuse.org/viewcvs/yast?rev=63686&view=rev Log: - fix detection of other linux partitions (bnc #675224)
Modified: branches/SuSE-Linux-11_4-Branch/bootloader/MAINTAINER branches/SuSE-Linux-11_4-Branch/bootloader/VERSION branches/SuSE-Linux-11_4-Branch/bootloader/package/yast2-bootloader.changes branches/SuSE-Linux-11_4-Branch/bootloader/src/modules/BootGRUB.ycp
Modified: branches/SuSE-Linux-11_4-Branch/bootloader/MAINTAINER URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_4-Branch/bootloa... ============================================================================== --- branches/SuSE-Linux-11_4-Branch/bootloader/MAINTAINER (original) +++ branches/SuSE-Linux-11_4-Branch/bootloader/MAINTAINER Thu Mar 31 12:35:50 2011 @@ -1 +1 @@ -Jozef Uhliarik juhliarik@suse.cz +Steffen Winterfeldt snwint@suse.de
Modified: branches/SuSE-Linux-11_4-Branch/bootloader/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_4-Branch/bootloa... ============================================================================== --- branches/SuSE-Linux-11_4-Branch/bootloader/VERSION (original) +++ branches/SuSE-Linux-11_4-Branch/bootloader/VERSION Thu Mar 31 12:35:50 2011 @@ -1 +1 @@ -2.20.1 +2.20.2
Modified: branches/SuSE-Linux-11_4-Branch/bootloader/package/yast2-bootloader.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_4-Branch/bootloa... ============================================================================== --- branches/SuSE-Linux-11_4-Branch/bootloader/package/yast2-bootloader.changes (original) +++ branches/SuSE-Linux-11_4-Branch/bootloader/package/yast2-bootloader.changes Thu Mar 31 12:35:50 2011 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Thu Mar 31 12:12:40 CEST 2011 - snwint@suse.de + +- fix detection of other linux partitions (bnc #675224) + +------------------------------------------------------------------- Tue Feb 22 11:30:20 UTC 2011 - jreidinger@novell.com
- during probe of partitions don't try to mount encrypted one
Modified: branches/SuSE-Linux-11_4-Branch/bootloader/src/modules/BootGRUB.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Linux-11_4-Branch/bootloa... ============================================================================== --- branches/SuSE-Linux-11_4-Branch/bootloader/src/modules/BootGRUB.ycp (original) +++ branches/SuSE-Linux-11_4-Branch/bootloader/src/modules/BootGRUB.ycp Thu Mar 31 12:35:50 2011 @@ -148,8 +148,8 @@ y2milestone ("Other primaries: %1", others);
// get list of all Linux Partitions on all real disks except encrypted ones ( as we don't know password and bootloader cannot boot from it directly) - list<map> other_l = (list<map>)filter( map p, Storage::GetOtherLinuxPartitions(), - ``(p["enc_type"]:`none!=`none)); + list<map> other_l = (list<map>)filter( map p, (list<map>)Storage::GetOtherLinuxPartitions(), + ``(p["enc_type"]:`none==`none)); y2milestone ("Other linux parts: %1", other_l);
list<string> destroyed_partitions
yast-commit@lists.opensuse.org