diff options
author | Stew Benedict <stewb@mandriva.org> | 2006-02-22 15:12:18 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2006-02-22 15:12:18 +0000 |
commit | 9cb6270ead9ffcb4298e9e97c21855d42432a864 (patch) | |
tree | f64b92776681eea0dfa766485cba2dd0717f3d50 | |
parent | 6af444809e4173472cae634a24446ee9eeef5ce3 (diff) | |
download | drakx-9cb6270ead9ffcb4298e9e97c21855d42432a864.tar drakx-9cb6270ead9ffcb4298e9e97c21855d42432a864.tar.gz drakx-9cb6270ead9ffcb4298e9e97c21855d42432a864.tar.bz2 drakx-9cb6270ead9ffcb4298e9e97c21855d42432a864.tar.xz drakx-9cb6270ead9ffcb4298e9e97c21855d42432a864.zip |
Allow user to modify xbox partitions on non-xbox (thx Pixel)
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index e2c666212..f288dd085 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -468,7 +468,7 @@ sub part_possible_actions { ); if (isEmpty($part)) { if_(!$hd->{readonly}, N_("Create")); - } elsif ($part->{pt_type} == 0xbf) { + } elsif ($part->{pt_type} == 0xbf && detect_devices::is_xbox()) { #- XBox OS partitions, do not allow anything return; } else { |