[yast-commit] r66277 - in /branches/SuSE-Code-11-SP2-Branch/storage: package/yast2-storage.changes storage/src/modules/StorageProposal.ycp
Author: fehr Date: Wed Oct 5 18:19:34 2011 New Revision: 66277 URL: http://svn.opensuse.org/viewcvs/yast?rev=66277&view=rev Log: fix invalid proposal on EFI system where GPT disklabel creation is enforced (bnc#709334) Modified: branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/StorageProposal.ycp Modified: branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes?rev=66277&r1=66276&r2=66277&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/package/yast2-storage.changes Wed Oct 5 18:19:34 2011 @@ -1,7 +1,9 @@ ------------------------------------------------------------------- Wed Oct 5 16:50:39 CEST 2011 - fehr@suse.de -- remove options "users,gid=users" from vfat fstab options for +- fix invalid proposal on EFI system where GPT disklabel creation + is enforced (bnc#709334) +- remove options "users,gid=users" from vfat fstab entries for /boot (bnc#722299) ------------------------------------------------------------------- Modified: branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/StorageProposal.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/StorageProposal.ycp?rev=66277&r1=66276&r2=66277&view=diff ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/StorageProposal.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/storage/storage/src/modules/StorageProposal.ycp Wed Oct 5 18:19:34 2011 @@ -3046,6 +3046,8 @@ if( NeedNewDisklabel(target[s]:$[]) ) { target[s,"disklabel"] = "gpt"; + target[s,"orig_label"] = target[s,"label"]:"msdos"; + target[s,"label"] = "gpt"; target[s,"del_ptable"] = true; } target[s,"partitions"] = @@ -3803,6 +3805,8 @@ if( NeedNewDisklabel(target[s]:$[]) ) { target[s,"disklabel"] = "gpt"; + target[s,"orig_label"] = target[s,"label"]:"msdos"; + target[s,"label"] = "gpt"; target[s,"del_ptable"] = true; } target[s,"partitions"] = -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
fehr@svn2.opensuse.org