summaryrefslogtreecommitdiffstats
path: root/edd/pyedd.c
blob: eeae3ee462be470a43d3a0e6b9f678814194c297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * pyedd.c - real mode bios library for discovering EDD capabilities of
 *           BIOS drives
 *
 * Matt Wilson <msw@redhat.com>
 *
 * Copyright 2000 Red Hat, Inc.
 *
 * This software may be freely redistributed under the terms of the GNU
 * library public license.
 *
 * You should have received a copy of the GNU Library Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#if 0
#include "edd.h"
#endif

#include <Python.h>

static PyObject * edd_py_detect (PyObject * s, PyObject * args);

static PyMethodDef edd_module_methods[] = {
  { "detect",  (PyCFunction) edd_py_detect, METH_VARARGS, NULL },
  { NULL }
};

static PyObject *
edd_py_detect (PyObject * s, PyObject * args) {

    FILE *f = fopen("/proc/cmdline", "r");
    if (f) {
	char buf[100];
	fgets(buf, sizeof(buf) - 1, f);
	fclose(f);
	if (strstr(buf, "lba32"))
	    return Py_BuildValue ("i", 1);
	return Py_BuildValue ("i", 0);
    } else
	return Py_BuildValue ("i", 0);

#if 0
  /* not reached */
  EDDCapability *ec;
  int device = 0x80;

  if (!PyArg_ParseTuple(args, "|i", &device))
    return NULL;

  if ((ec = edd_supported(device))) {
    free (ec);
    return Py_BuildValue ("i", 1);
  }
  return Py_BuildValue ("i", 0);
#endif
}

void initedd (void) {
    Py_InitModule("edd", edd_module_methods);
}