Skip to content

Commit

Permalink
Merge pull request #448 from yast/ppc_gpt
Browse files Browse the repository at this point in the history
do not complain for ppc and gpt when nothing is activated
  • Loading branch information
jreidinger committed Jul 11, 2017
2 parents e5369b7 + e89b447 commit 0d751c2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/modules/BootSupportCheck.rb
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,9 @@ def check_activate_partition

# there is already activate flag
disk = Yast::BootStorage.mbr_disk

# do not activate for ppc and GPT see bsc#983194
return true if Arch.ppc64 && disk.gpt?
if disk.partition_table
legacy_boot = disk.partition_table.partition_legacy_boot_flag_supported?

Expand Down

0 comments on commit 0d751c2

Please sign in to comment.