diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-22 00:34:17 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-22 00:34:17 +0000 |
commit | 26f6108ddfa8ae8e8dc8ec6bda7155201a2816a7 (patch) | |
tree | 0f85d0ce7919e8293edbcc42e90ed05799bc171f /isys/isys.c | |
parent | 0558f5b2072927c3ab5da8f3757d2e29d6cfc949 (diff) | |
download | anaconda-26f6108ddfa8ae8e8dc8ec6bda7155201a2816a7.tar.gz anaconda-26f6108ddfa8ae8e8dc8ec6bda7155201a2816a7.tar.xz anaconda-26f6108ddfa8ae8e8dc8ec6bda7155201a2816a7.zip |
we don't need modutils in isys
Diffstat (limited to 'isys/isys.c')
-rw-r--r-- | isys/isys.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/isys/isys.c b/isys/isys.c index ea4cce7b7..ec43df705 100644 --- a/isys/isys.c +++ b/isys/isys.c @@ -16,10 +16,10 @@ moduleInfoSet modInfoList; static PyObject * doFindModInfo(PyObject * s, PyObject * args); -static PyObject * doInsmod(PyObject * s, PyObject * args); +/*static PyObject * doInsmod(PyObject * s, PyObject * args); +static PyObject * doRmmod(PyObject * s, PyObject * args);*/ static PyObject * doMount(PyObject * s, PyObject * args); static PyObject * doReadModInfo(PyObject * s, PyObject * args); -static PyObject * doRmmod(PyObject * s, PyObject * args); static PyObject * doUMount(PyObject * s, PyObject * args); static PyObject * getModuleList(PyObject * s, PyObject * args); static PyObject * makeDevInode(PyObject * s, PyObject * args); @@ -35,13 +35,17 @@ static PyObject * doSwapon(PyObject * s, PyObject * args); static PyMethodDef isysModuleMethods[] = { { "findmoduleinfo", (PyCFunction) doFindModInfo, METH_VARARGS, NULL }, +/* { "insmod", (PyCFunction) doInsmod, METH_VARARGS, NULL }, +*/ { "mkdevinode", (PyCFunction) makeDevInode, METH_VARARGS, NULL }, { "modulelist", (PyCFunction) getModuleList, METH_VARARGS, NULL }, { "pciprobe", (PyCFunction) doPciProbe, METH_VARARGS, NULL }, { "ProbedList", (PyCFunction) createProbedList, METH_VARARGS, NULL }, { "readmoduleinfo", (PyCFunction) doReadModInfo, METH_VARARGS, NULL }, +/* { "rmmod", (PyCFunction) doRmmod, METH_VARARGS, NULL }, +*/ { "mount", (PyCFunction) doMount, METH_VARARGS, NULL }, { "smpavailable", (PyCFunction) smpAvailable, METH_VARARGS, NULL }, { "umount", (PyCFunction) doUMount, METH_VARARGS, NULL }, @@ -194,6 +198,7 @@ static PyObject * makeDevInode(PyObject * s, PyObject * args) { return Py_None; } +#if 0 static PyObject * doRmmod(PyObject * s, PyObject * pyargs) { char * modName; @@ -242,6 +247,7 @@ static PyObject * doInsmod(PyObject * s, PyObject * pyargs) { Py_INCREF(Py_None); return Py_None; } +#endif static PyObject * doFindModInfo(PyObject * s, PyObject * args) { char * mod; |