thanks a lot for ur quick reply.
Are there xfs.ko in your modules.cgz ?
yes,
Do i need to ldconfig or .. something like that
& I think , I have make changes in isys.py
---------
36 def pathSpaceAvailable(path, fsystem = "ext2"):
37 return _isys.devSpaceFree(path)
38
39 def spaceAvailable(device, fsystem = "ext2"):
40 mount(device, "/mnt/space", fstype = fsystem)
41 space = _isys.devSpaceFree("/mnt/space/.")
42 umount("/mnt/space")
43 return space
169 def mount(device, location, fstype = "ext2", readOnly = 0, bindMount = 0, remount = 0):
170 location = os.path.normpath(location)
171
188 log("isys.py:mount()- going to mount %s on %s" %(device, location))
189 rc = _isys.mount(fstype, device, location, readOnly, bindMount, remount)
190
191 if not rc:
192 mountCount[location] = 1
193
200 def umount(what, removeDir = 1):
201 what = os.path.normpath(what)
202
203 if not os.path.isdir (what):
204 raise ValueError, "isys.umount() can only umount by mount point"
205
206 if mountCount.has_key(what) and mountCount[what] > 1:
207 mountCount[what] = mountCount[what] - 1
208 return
209
210 rc = _isys.umount(what)
211
thank & regard
parimal
On 7/2/07, HARA Hiroshi
<hhara@xxxxxxxxxxxxxxxx> wrote:
Hi,
Are there xfs.ko in your modules.cgz ?
Parimal Sardar wrote:
> Hi
>
> I am trying to integrate XFS,JFS,ReiserFS2 in anconada ;
> while install getting error "failed to insert modules xfs" ,but I am
> able to make partitions & format it too without any error.
> I want to mount XFS,JFS,Reiserfs while installing only.
>
> regards
> Parimal
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list@xxxxxxxxxx
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list