]> git.ipfire.org Git - thirdparty/systemd.git/blame - namedev.h
[PATCH] update the tests to handle block devices too.
[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
26/* namedev config files */
27#define COMMENT_CHARACTER '#'
28#define NAMEDEV_CONFIG_ROOT "/home/greg/src/udev/"
29#define NAMEDEV_CONFIG_PERMISSION_FILE "namedev.permissions"
30#define NAMEDEV_CONFIG_FILE "namedev.config"
31
32extern int namedev_init(void);
185a35a4 33extern int namedev_name_device(char *device_name, struct device_attr *attr);
2232cac8
GKH
34
35#endif