summaryrefslogtreecommitdiff
path: root/src/udev/src/mtd_probe/mtd_probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/udev/src/mtd_probe/mtd_probe.c')
-rw-r--r--src/udev/src/mtd_probe/mtd_probe.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/udev/src/mtd_probe/mtd_probe.c b/src/udev/src/mtd_probe/mtd_probe.c
new file mode 100644
index 000000000..1aa08d385
--- /dev/null
+++ b/src/udev/src/mtd_probe/mtd_probe.c
@@ -0,0 +1,51 @@
1/*
2 * Copyright (C) 2010 - Maxim Levitsky
3 *
4 * mtd_probe is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * mtd_probe is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with mtd_probe; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301 USA
18 */
19#include "mtd_probe.h"
20#include <stdio.h>
21#include <sys/ioctl.h>
22#include <mtd/mtd-user.h>
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <fcntl.h>
26#include <unistd.h>
27#include <stdlib.h>
28
29int main(int argc, char** argv)
30{
31 if (argc != 2) {
32 printf("usage: mtd_probe /dev/mtd[n]\n");
33 return 1;
34 }
35
36 int mtd_fd = open(argv[1], O_RDONLY);
37 if (mtd_fd == -1) {
38 perror("open");
39 exit(-1);
40 }
41
42 mtd_info_t mtd_info;
43 int error = ioctl(mtd_fd, MEMGETINFO, &mtd_info);
44 if (error == -1) {
45 perror("ioctl");
46 exit(-1);
47 }
48
49 probe_smart_media(mtd_fd, &mtd_info);
50 return -1;
51}