]> git.ipfire.org Git - thirdparty/systemd.git/blame - namedev.h
[PATCH] catch replace device by wildcard
[thirdparty/systemd.git] / namedev.h
CommitLineData
2232cac8
GKH
1/*
2 * namedev.h
3 *
4 * Userspace devfs
5 *
6 * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 */
22
23#ifndef NAMEDEV_H
24#define NAMEDEV_H
25
8e41d35d 26#include "udev.h"
cb32ac94
GKH
27#include "list.h"
28
19dc5d4c
GKH
29struct sysfs_class_device;
30
2232cac8 31#define COMMENT_CHARACTER '#'
2232cac8 32
cb32ac94
GKH
33enum config_type {
34 KERNEL_NAME = 0, /* must be 0 to let memset() default to this value */
35 LABEL = 1,
36 NUMBER = 2,
37 TOPOLOGY = 3,
38 REPLACE = 4,
c27e6911 39 CALLOUT = 5,
cb32ac94
GKH
40};
41
42#define BUS_SIZE 30
43#define FILE_SIZE 50
44#define VALUE_SIZE 100
45#define ID_SIZE 50
46#define PLACE_SIZE 50
47
48
49struct config_device {
50 struct list_head node;
51
52 enum config_type type;
cb32ac94
GKH
53 char bus[BUS_SIZE];
54 char sysfs_file[FILE_SIZE];
55 char sysfs_value[VALUE_SIZE];
56 char id[ID_SIZE];
57 char place[PLACE_SIZE];
58 char kernel_name[NAME_SIZE];
c27e6911 59 char exec_program[FILE_SIZE];
f7b4eca4 60
cb32ac94 61 /* what to set the device to */
9d496c74
GKH
62 char name[NAME_SIZE];
63 char owner[OWNER_SIZE];
64 char group[GROUP_SIZE];
65 mode_t mode;
cb32ac94
GKH
66};
67
68
2232cac8 69extern int namedev_init(void);
9d496c74 70extern int namedev_name_device(struct sysfs_class_device *class_dev, struct udevice *dev);
2232cac8
GKH
71
72#endif