6 * Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
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.
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.
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.
30 #include "libsysfs/sysfs/libsysfs.h"
33 #include "udev_version.h"
37 /* global variables */
43 unsigned char logname[LOGNAME_SIZE];
44 void log_message (int level, const char *format, ...)
48 va_start(args, format);
49 vprintf(format, args);
51 if (format[strlen(format)-1] != '\n')
56 int main(int argc, char *argv[], char *envp[])
66 info("version %s", UDEV_VERSION);
68 if (argv[1] == NULL) {
69 info("udevinfo expects the DEVPATH of the sysfs device as a argument");
73 /* initialize our configuration */
76 /* remove sysfs_path if given */
77 if (strncmp(argv[1], sysfs_path, strlen(sysfs_path)) == 0)
78 devpath = argv[1] + strlen(sysfs_path);
80 if (argv[1][0] != '/') {
81 /* prepend '/' if missing */
82 strfieldcpy(temp, "/");
83 strfieldcat(temp, argv[1]);
89 info("looking at '%s'", devpath);
91 /* we only care about class devices and block stuff */
92 if (!strstr(devpath, "class") &&
93 !strstr(devpath, "block")) {
94 info("not a block or class device");
98 /* initialize the naming deamon */
104 /* simulate node creation with fake flag */
105 udev_add_device(devpath, subsystem, fake);