summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/partitioning_wizard.pm
Commit message (Collapse)AuthorAgeFilesLines
* diskdrake: remove deprecated GtkPaned:handle-size style property (mga#32063)Jani Välimaa2023-07-021-2/+0
|
* When installing on a removable device, suggest an ESP on that device.Martin Whitaker2020-06-161-2/+2
| | | | | We must update the suggestions each time the user selects a different target device.
* partially podify fs::*Thierry Vignaud2020-03-181-5/+23
|
* Force reinitialisation of partition suggestions after wiping disk.Martin Whitaker2017-04-041-1/+1
| | | | | | | | When the "Use entire disk" partitioning solution is chosen in a UEFI install, any existing ESP will be deleted, so we must force the partition suggestions to be updated to ensure we create a new one. (this matches what is done in the diskdrake auto-allocate routine)
* Allow a BIOS boot partition to be located on any disk (mga#20161).Martin Whitaker2017-02-251-1/+1
| | | | | | | This relaxes the rules in fs::any::is_boot_bios_part_needed to allow the BIOS boot partition to be located on any disk, not just the disk containing the root partition. It also ensures that a BIOS boot partition is never forcibly required in a system with non-GPT disks.
* Fix bug in detecting whether a BIOS boot partition is required (mga#19935).Martin Whitaker2017-01-171-1/+1
|
* make warning more explicit about "BBP" purposeRémi Verschelde2016-07-121-1/+1
| | | | (BIOS boot partition, thus fixing mga#18923)
* fix inverted test (mga#18656, mga#18704)Thierry Vignaud2016-06-161-1/+1
|
* update suggestions if needed after erasing diskThierry Vignaud2016-06-111-0/+3
| | | | | | this is incomplete: we need to reread $all_hds else we won't add a Boot BIOS partition to suggestions if there was already one _prior_ to erase the full disk (mga#18656) ...
* add a GRUB_BIOS partitions if needed (mga#18656)Thierry Vignaud2016-06-111-0/+5
|
* init_efi_suggestions -> init_mntpnt_suggestions()Thierry Vignaud2016-06-111-1/+1
| | | | | also take a $all_hds arg instead of $fstab needed for next commit
* check that ESP mount point actually is an ESPThierry Vignaud2016-02-101-1/+4
| | | | fixing grub2 faillure resulting in draklive-install crash (mga#16246)
* prevent a crash (mga#15919)Thierry Vignaud2015-12-251-1/+3
|
* only use current disk when auto partitioning, wiping disk, using free space ↵Pascal Terjan2015-06-031-3/+3
| | | | (mga#16055)
* fix not always suggesting /boot/ESP mount pointMartin Whitaker2015-05-251-0/+7
| | | | | | | | | | | | | thus fixing mga#15689 for live installs The check for whether an ESP needs to be created or not seems to prevent us to suggest a mount point for the existing one in some cases to be reviewed for mga6... diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index f3b9973..b222c07 100644 --- a/perl-install/fs/partitioning_wizard.pm
* fix a crash after "insufficient space" errorThierry Vignaud2015-05-141-1/+1
| | | | | | | | | | | | | | | | | create_display_box gets called twice. The first time, only the $kind parameter has a value, the second time all the parameters (including $button) have values. On the first time through the partitioning step, the second call to create_display_box sets the selected_for_resize flag for my NTFS partition. When returning to the partitioning step, this flag is still set, so the first call to create_display_box executes the block of code that ends with $button->signal_connect('focus-in-event' => sub { ... }); even though it doesn't have a value for $button. (Martin Whitaker, mga#15919)
* perl_checker cleanupsThierry Vignaud2015-05-131-7/+7
|
* Make the resize handler more visible (mga#15728)Pascal Terjan2015-04-221-2/+1
|
* Making the resizing handle widerPascal Terjan2015-04-201-0/+3
|
* Fix ugly separator between partitionsPascal Terjan2015-04-201-6/+1
|
* hide empty space < 2MB, we have such holes due to alignment (mga#15733)Pascal Terjan2015-04-191-1/+3
|
* use the windows partition with the most available space on currentPascal Terjan2015-04-181-5/+22
| | | | + disk, not the last one across all disks (mga#15589)
* suggest max (20G,20%) of the windows partition, previously max (6G,10%)Pascal Terjan2015-04-161-3/+3
|
* use the windows partition with the most available spacePascal Terjan2015-04-161-1/+1
|
* ignore ESP for "use free space on MS"Thierry Vignaud2015-04-131-2/+2
|
* do not offer to select RAID as it result in a crashThierry Vignaud2015-04-031-1/+1
| | | | | rationale: we only show top storage devices which are the ones that work Fix mga#5800
* make sure to check for existing ESP on all disksThierry Vignaud2015-03-301-1/+1
|
* add ESP to suggestion if neededThierry Vignaud2015-03-201-0/+1
|
* use a vertical scrolling bar when neededThierry Vignaud2015-02-191-1/+1
| | | | there might be too much solutions (mga#15272)
* we need /boot/EFI on uefi systemsThomas Backlund2015-01-081-2/+2
|
* hide /boot/efi check for now (mga#13638)Thomas Backlund2014-07-011-1/+1
|
* kill $Id:$ tagsThierry Vignaud2014-06-071-1/+1
| | | | they're obsolete since switching from CVS/SVN to git...
* fix indent after previous commitThierry.Vignaud2014-05-261-1/+1
|
* drop (broken) support for Alpha, PPC, Sparc & most of IA64Thierry.Vignaud2014-05-261-6/+2
| | | | | | | | | | | | | Including Xsun, silo & yaboot support Rationale: it's unused/unmaintained for years and those arches are beyond any hope of being usefull any day... They just got in the way... Part of IA64 support is still kept (eg: support for GPT, EFI, right xorg driver at install, ...) as it might be usefull to extend to other arches Next to consider: Xbox?
* perl_checker cleanup: tag an optional variable as suchThierry Vignaud2013-12-091-5/+5
|
* log partitioning wizard failures (mga#11924)Thierry Vignaud2013-12-091-0/+1
|
* fix a crash in partitioning wizard (mga#11820)Thierry Vignaud2013-12-031-1/+1
|
* fix partionning wizard moving the main window to left (mga#11790)Thierry Vignaud2013-12-021-2/+2
| | | | | | widgets were too wide with gtk3 + oxygen-gtk3 we either have to change the horizontal scrolling policty to 'automatic' (thus having an ugly horizontal scrolling bar) or shrink those widgets
* fix calling "child1_shrink" via package "Gtk3::HPaned" (mga#11797)Thierry Vignaud2013-11-281-4/+2
| | | | fix can't locate object method "child1_shrink" via package "Gtk3::HPaned"
* workaround a gtk+3 segfaultThierry Vignaud2013-11-241-1/+1
|
* revert commit 9186647eThierry Vignaud2013-11-241-2/+0
| | | | we would load *gtk3 even on text install
* Gtk3::ComboBox->new_text => Gtk3::ComboBoxText->newThierry Vignaud2013-11-241-1/+1
|
* use Gtk3 namespace instead of Gtk2Thierry Vignaud2013-11-241-24/+24
|
* use (my|u)gtk3 instead of *tk2Thierry Vignaud2013-11-241-24/+24
|
* fix a crash when reloading partition table (mga#9838)Thierry Vignaud2013-04-231-0/+1
|
* fix losing crypt key when re-reeading partition tables (mga#5661)Thierry Vignaud2013-04-191-0/+5
|
* drop unused parameterThierry Vignaud2013-03-041-1/+1
|
* (display_choices) make logs easier to read in report.bugThierry Vignaud2012-12-111-4/+4
|
* (main) fix 2 three years old perl_checker warningsThierry Vignaud2012-12-111-2/+2
|
* reuse code from hd_gtk, fixes display of "Use free space" solutionPascal Terjan2012-04-241-3/+2
|