Skip to content

Commit

Permalink
Merge pull request #127 from k0da/bsc922431
Browse files Browse the repository at this point in the history
fix have_ppc_boot to check GPT PReP partitions
  • Loading branch information
jreidinger committed Mar 16, 2015
2 parents b0ac35b + 6aee44d commit 7e7d49e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.17.152
2.17.153
5 changes: 5 additions & 0 deletions package/yast2-storage.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Mon Mar 16 13:13:38 CET 2015 - dvaleev@suse.com

- check for GPT PReP in have_ppc_boot (bsc#922431)
- 2.17.153

-------------------------------------------------------------------
Wed Mar 04 14:55:21 CET 2015 - dvaleev@suse.com

Expand Down
3 changes: 2 additions & 1 deletion storage/src/modules/Storage.ycp
Original file line number Diff line number Diff line change
Expand Up @@ -5506,7 +5506,8 @@ global define map<string,map> SpecialBootHandling( map<string,map> tg )
foreach(map part, disk["partitions"]:[],
``{
if( !have_ppc_boot &&
part["fsid"]:0 == Partitions::fsid_prep_chrp_boot &&
(part["fsid"]:0 == Partitions::fsid_prep_chrp_boot ||
part["fsid"]:0 == Partitions::fsid_gpt_prep) &&
size(part["mount"]:"")==0 && part["create"]:false )
{
have_ppc_boot = true;
Expand Down

0 comments on commit 7e7d49e

Please sign in to comment.