| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
we now display "<device> (RAID level)" (eg: 'md0 (RAID1)')
(actually we were displaying "mdX" since two previous commits but all
released installers were displaying "")
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(thus fixing installer not offering to upgrade RAID installs)
rationale: udev starts raids early but fails because modules (especially
personality ones) are not yet loaded; thus raids remains inactive
("md: personality for level 1 is not loaded!")
regression introduced when swtiching to udev and including its rules
since it works smoothly with rescue, I suspect the cause is
in 60-persistent-storage.rules which is included in installer
but not in rescue
|
|
|
|
| |
(needed for next commit)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
with Mageia.
This commit consitsts of the following subversion commits:
------------------------------------------------------------------------
r431 | dmorgan | 2011-02-06 01:58:02 +0000 (Sun, 06 Feb 2011) | 1 line
Add drakx structure on the SVN
------------------------------------------------------------------------
r432 | dmorgan | 2011-02-06 01:59:38 +0000 (Sun, 06 Feb 2011) | 1 line
Import cleaned advertising
------------------------------------------------------------------------
r446 | dmorgan | 2011-02-06 22:37:08 +0000 (Sun, 06 Feb 2011) | 1 line
Import Clean perl-install
------------------------------------------------------------------------
r448 | dmorgan | 2011-02-06 23:02:36 +0000 (Sun, 06 Feb 2011) | 1 line
Add cleaned files
------------------------------------------------------------------------
r449 | dmorgan | 2011-02-06 23:03:52 +0000 (Sun, 06 Feb 2011) | 1 line
Import cleaned kernel
------------------------------------------------------------------------
r450 | dmorgan | 2011-02-06 23:23:30 +0000 (Sun, 06 Feb 2011) | 1 line
Import cleaned tools
------------------------------------------------------------------------
r451 | dmorgan | 2011-02-07 00:01:56 +0000 (Mon, 07 Feb 2011) | 1 line
Import stage1
------------------------------------------------------------------------
r473 | dmorgan | 2011-02-07 11:20:50 +0000 (Mon, 07 Feb 2011) | 1 line
Import images
------------------------------------------------------------------------
r497 | ennael | 2011-02-09 21:02:06 +0000 (Wed, 09 Feb 2011) | 2 lines
readd missing file
------------------------------------------------------------------------
r502 | pterjan | 2011-02-09 23:30:32 +0000 (Wed, 09 Feb 2011) | 1 line
Import rescue
------------------------------------------------------------------------
r603 | ennael | 2011-02-24 13:32:54 +0000 (Thu, 24 Feb 2011) | 2 lines
import cleaned rescue for Mageia
------------------------------------------------------------------------
r2061 | tv | 2011-10-20 20:32:19 +0100 (Thu, 20 Oct 2011) | 1 line
import (cleaned) doc
------------------------------------------------------------------------
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- switch to ext4 by default
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
(after rename raid5&raid6 -> raid456)
|
|
|
|
|
|
| |
o write mdadm.conf when it is modified (#32360)
(a nicer fix would be to write it when needed, not so soon, but it's harder)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
1.12.0),
it needs option "-v" to keep previous behaviour
|
| |
|
|
|
|
|
|
| |
- remove unneeded "use xxx"
- add some "use xxx" (nb: not completly needed because some other modules may do it)
|
| |
|
| |
|
|
|
|
|
|
|
| |
{isFormatted} flag
(no big deal though, it happened because raid::new() was creating a new raid with an already active md name)
|
| |
|
|
|
|
| |
devices, stopping them
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
> > the only problem with auto=yes is that it ignores the minor number
> > specified and always uses the first avaliable minor number, so you might
> > find /dev/md2 with minor 0, /proc/mdstat will call it based on minor
> > number. This is going to get really confusing for users.
> > I was planning to fix this in upstream source, but i have not been able
> > to find time to do it yet.
>
> ok, i fixed that in mdadm-1.8.0-2mdk
> there is a new option (auto=dev) that will create the device file with
> the correct minor number based on the device name.
> so please put auto=dev instead of auto=yes in the /etc/mdadm.conf
>
please hold the auto=dev change, the mdadm author feel this should be
the default behaviour for auto=yes, so i will upload a new
mdadm-1.9.0-0pre1.1mdk with fully working auto as soon as i return to
italy (this weekend i believe)
|
| |
|
| |
|
|
|
|
|
|
| |
- use option "auto=yes" in mdadm.conf to ensure mdadm will create /dev/mdX devices when needed
(those are not there when using udev and neither kernel raid autostart nor initrd created the raid)
|
|
|
|
|
|
|
|
| |
progress of format
- create fs::format::wait_message() which creates a $wait_message valid to give to fs::format::part
- fs::format::mke2fs() format while parsing the output to display the progress
|
| |
|
| |
|
| |
|
|
|
|
| |
was an error)
|
|
|
|
|
| |
(as requested by Luca Berra on cooker)
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
- create mdadm.conf instead of raidtab
- internal {raids} is no more indexed by X for mdX, and so don't have holes anymore
- internal {chunk-size} is now a number in KiB
- internal {raid} is the raid device name, not the number
- various cleanup for raid detection
|