Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 150427 Details for
Bug 230268
RFE: Support RAID10 in kickstart installs
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fixes for current raid10-related code
anaconda-raid10-fixes.patch (text/plain), 3.15 KB, created by
Paul P Komkoff Jr
on 2007-03-19 19:58:12 UTC
(
hide
)
Description:
Fixes for current raid10-related code
Filename:
MIME Type:
Creator:
Paul P Komkoff Jr
Created:
2007-03-19 19:58:12 UTC
Size:
3.15 KB
patch
obsolete
>Index: partRequests.py >=================================================================== >RCS file: /usr/local/CVS/anaconda/partRequests.py,v >retrieving revision 1.70 >diff -u -r1.70 partRequests.py >--- partRequests.py 28 Feb 2007 16:14:48 -0000 1.70 >+++ partRequests.py 19 Mar 2007 18:26:02 -0000 >@@ -623,7 +623,7 @@ > raidmems = [] > for member in self.raidmembers: > raidmems.append(partitions.getRequestByID(member).device) >- self.dev = fsset.RAIDDevice(int(self.raidlevel[-1:]), >+ self.dev = fsset.RAIDDevice(int(self.raidlevel[4:]), > raidmems, minor = self.raidminor, > spares = self.raidspares, > existing = self.preexist, >Index: raid.py >=================================================================== >RCS file: /usr/local/CVS/anaconda/raid.py,v >retrieving revision 1.32 >diff -u -r1.32 raid.py >--- raid.py 2 Mar 2007 16:29:25 -0000 1.32 >+++ raid.py 19 Mar 2007 18:26:02 -0000 >@@ -26,9 +26,10 @@ > if not l.startswith("Personalities"): > continue > for tok in l.split(): >- for lev in ("RAID0", "RAID1", "RAID5", "RAID6", "RAID10"): >- if tok.upper().find(lev) != -1: >- avail.append(lev) >+ if len(tok) > 6 and tok[0] == '[' and tok[-1] == ']': >+ lv = tok[1:-1].upper() >+ if lv in [ "RAID0", "RAID1", "RAID5", "RAID6", "RAID10" ]: >+ avail.append(lv) > > f.close() > >Index: loader2/loader.c >=================================================================== >RCS file: /usr/local/CVS/anaconda/loader2/loader.c,v >retrieving revision 1.233 >diff -u -r1.233 loader.c >--- loader2/loader.c 14 Mar 2007 20:24:47 -0000 1.233 >+++ loader2/loader.c 19 Mar 2007 18:26:03 -0000 >@@ -1643,7 +1643,7 @@ > else if (FL_UPDATES(flags)) > loadUpdates(&loaderData); > >- mlLoadModuleSet("md:raid0:raid1:raid5:raid6:raid456:fat:msdos:jbd:lock_nolock:gfs2:reiserfs:jfs:xfs:dm-mod:dm-zero:dm-mirror:dm-snapshot:dm-multipath:dm-round-robin:dm-emc", modLoaded, modDeps, modInfo); >+ mlLoadModuleSet("md:raid0:raid1:raid5:raid6:raid456:raid10:fat:msdos:jbd:lock_nolock:gfs2:reiserfs:jfs:xfs:dm-mod:dm-zero:dm-mirror:dm-snapshot:dm-multipath:dm-round-robin:dm-emc", modLoaded, modDeps, modInfo); > > usbInitializeMouse(modLoaded, modDeps, modInfo); > >Index: scripts/mk-images >=================================================================== >RCS file: /usr/local/CVS/anaconda/scripts/mk-images,v >retrieving revision 1.229 >diff -u -r1.229 mk-images >--- scripts/mk-images 6 Mar 2007 01:46:22 -0000 1.229 >+++ scripts/mk-images 19 Mar 2007 18:26:03 -0000 >@@ -45,7 +45,7 @@ > SCSIMODS="sr_mod sg st sd_mod scsi_mod iscsi_tcp" > FSMODS="fat msdos vfat ext2 ext3 reiserfs jfs xfs gfs2 lock_nolock" > LVMMODS="dm-mod dm-zero dm-snapshot dm-mirror dm-multipath dm-round-robin dm-emc dm-crypt" >-RAIDMODS="md raid0 raid1 raid5 raid6 raid456" >+RAIDMODS="md raid0 raid1 raid5 raid6 raid456 raid10" > SECSTAGE="$RAIDMODS $LVMMODS $FSMODS $IDEMODS $SCSIMODS" > BTERMMODS="vga16fb" > PCMCIASOCKMODS="yenta_socket i82365 tcic pcmcia"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 230268
:
148888
| 150427