summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 16.7516.75Thierry Vignaud2015-03-303-1/+5
|
* relax checks for ESPThierry Vignaud2015-03-303-1/+3
| | | | | | - match ESP even if already mounted - drop checking if !recovery, it's useless as isESP() and isRecovery() checks for different partition types, etc
* fix getting ESP with "use free space"Thierry Vignaud2015-03-303-1/+5
| | | | make sure to not override /boot/EFI mount point with /media/win_X
* make sure to check for existing ESP on all disksThierry Vignaud2015-03-303-1/+3
|
* try to detect recovery partitions on GPTThierry Vignaud2015-03-304-0/+29
|
* (isRecovery) move "Compaq diagnostics" test hereThierry Vignaud2015-03-302-1/+2
| | | | | | | | (needed for next commit) should have been done in commit 4b06a8a57d52b7d5447a1b487b8d33e36b4121b7 added in commit c2ef4a362e13249d8a774c7c5b7d0a8ab5df7d11
* better fix for too corrupted partition tableThierry Vignaud2015-03-303-1/+6
|
* Update NEWS for reverted patchRémi Verschelde2015-03-301-0/+3
|
* Revert "Revert "work around scrollbar issues during package install""Rémi Verschelde2015-03-301-0/+1
| | | | | | | This reverts commit b79658e0019ed214bd3ca27705a373895c67e16b. As stated in 04cfaf0, the second patch for mga#13894 was not doing the job perfectly so we revert to the first patch.
* Revert "better fix for the scrollbar in the package installation details window"Rémi Verschelde2015-03-301-2/+1
| | | | | | | | This reverts commit ff785ad67f69650b978704b7d2043389e0067222. The "better fix" has been tested and though it does a good job at letting the user go back in the history, it does not keep track of the latest entry perfectly. More work needs to be done on this to have a clean solution.
* 16.7416.74Thierry Vignaud2015-03-273-1/+5
|
* fix retrieving ntfs partitions s/ntfs/ntfs-3g/Thierry Vignaud2015-03-273-0/+4
|
* really fix retrieving swap partition typeThierry Vignaud2015-03-273-1/+7
| | | | Thomas rushed to push before I run perl_checker... :-(
* 16.7316.73Thomas Backlund2015-03-273-1/+5
|
* fix creating RAID devices (mga#15400)Thierry Vignaud2015-03-273-0/+4
| | | | | regression fixed by reverting a line from commit 329701ba075af74ae6d7f857f62c35c942c24486
* fix failing to read partition table (mga#13592, mga#15272)Thierry Vignaud2015-03-273-1/+4
| | | | | | this is making it more readable regarding: "I cannot read the partition table of device XXX, it is too corrupted" (mga#13592, mga#15272, mga#15472)
* fix fs_type returned by libparted for swapsThierry Vignaud2015-03-273-2/+3
|
* log which type is unknownThierry Vignaud2015-03-272-2/+2
|
* fix tagging LVM/raid as "linux filesystem" with GPTThierry Vignaud2015-03-274-2/+16
|
* fix tagging ntfs-3g as "linux filesystem" with GPTThierry Vignaud2015-03-273-0/+3
| | | | libparted needs it to be named like this in order to put the right
* fix tagging swap as "linux filesystem" with GPTThierry Vignaud2015-03-273-0/+3
| | | | | libparted needs it to be named like this in order to put the right GUID...
* fix retrieving LVM/RAID partition typeThierry Vignaud2015-03-273-0/+9
| | | | simimar to commit ee22664bcb1fdedece15e07d047ba86f3d791ee6
* make it more genericThierry Vignaud2015-03-272-3/+5
| | | | just bind the libparted function (needed for next commit)
* extract mapping string to flagThierry Vignaud2015-03-271-6/+11
| | | | needed for next commit
* tell users to ignore Gtk3 warningsThierry Vignaud2015-03-262-0/+3
|
* 16.7216.72Anne Nicolas2015-03-262-1/+5
|
* fix a crash in auto install (mga#15573)Thierry Vignaud2015-03-261-1/+1
| | | | bug introduced in commit 7ed5bd23d63bd4031f2a2f3055b0d0a19a65906d
* 16.7116.71Thierry Vignaud2015-03-253-1/+5
|
* add bug IDThierry Vignaud2015-03-252-2/+2
|
* perl_checker cleanupThierry Vignaud2015-03-251-1/+1
|
* preselect grub2-efi under UEFIThierry Vignaud2015-03-252-0/+3
|
* reuse is_uefi()Thierry Vignaud2015-03-251-1/+1
|
* log which partition we fail to addThierry Vignaud2015-03-253-2/+4
|
* set proper GUID to ESP partitions with GPT layoutThierry Vignaud2015-03-254-1/+37
|
* fix retrieving ESP partition typeThierry Vignaud2015-03-254-1/+30
| | | | | | | | | ESP are the only partitions we're detecting through their pt_type (modulo 0x12 which was Compaq Diagnostic & unlikely to be found on GPT...) However GPT has no equivalent to pt_type But we can test for ESP flag
* fix indentThierry Vignaud2015-03-251-3/+3
| | | | | done separatly in order to have a better history for simplify then introducing new API
* use a proper interface between parted/perl worldsThierry Vignaud2015-03-252-33/+19
| | | | | | | | | | | | | create directly the hash in XS instead of instead of sprintf()ing it into a string which was then parsed in perl in order to actually create the hash this fixes several issues: - due to adding some fields to the string under if (), we could silently have ignored some partitions - this also simplifies adding further fields
* further simplifyThierry Vignaud2015-03-251-3/+5
|
* simplify (needed for next commit)Thierry Vignaud2015-03-251-4/+4
|
* fix retrieving partitionThierry Vignaud2015-03-251-2/+2
| | | | | | | needed for next commit also we were passing '' as fs_type to c::disk_add_partition() $part was undef since commit 9e6b327ca2b1f46db62e0811fabf0a6cf0b114a7
* kill sparc leftoverThierry Vignaud2015-03-251-7/+0
|
* previous change impact installer tooThierry Vignaud2015-03-251-0/+3
|
* - bump max_nb() to 131 to cover mdadm managed imsm and ddf1 biosThomas Backlund2015-03-222-1/+4
| | | | fakeraids (containers defaults to >= 127 and partitions <=126)
* fix wrong renaming of mandrake_firsttime serviceThomas Backlund2015-03-212-2/+2
|
* 16.7016.70Rémi Verschelde2015-03-212-1/+3
|
* better fix for the scrollbar in the package installation details windowRémi Verschelde2015-03-212-1/+5
| | | | patch by Martin Whitaker (mga#13894)
* Revert "work around scrollbar issues during package install"Rémi Verschelde2015-03-211-1/+0
| | | | | | A better fix has been proposed by Martin Whitaker and will be pushed afterwards. This reverts commit 8f16c5d8220e5d9b7bb2e5439061752eea348d76.
* 16.6916.69Thomas Backlund2015-03-203-1/+11
|
* fix initial display in diskdrake (Martin Whitaker, mga#13679)Thomas Backlund2015-03-201-0/+1
|
* - work around scrollbar issues during package installThomas Backlund2015-03-201-0/+1
| | | | (Martin Whitaker, mga#13894)