[PATCH] handle the subsytem if provided in udevtest.

this is needed to test the /etc/dev.d/ stuff properly.
This commit is contained in:
greg@kroah.com 2004-04-01 21:46:07 -08:00 committed by Greg KH
parent d5853b48fb
commit ce4256bdc5

View file

@ -57,7 +57,7 @@ int main(int argc, char *argv[], char *envp[])
{
char *devpath;
char temp[NAME_SIZE];
char subsystem[] = "";
char *subsystem = "";
const int fake = 1;
main_argv = argv;
@ -98,6 +98,9 @@ int main(int argc, char *argv[], char *envp[])
/* initialize the naming deamon */
namedev_init();
if (argv[2] != NULL)
subsystem = argv[2];
/* simulate node creation with fake flag */
udev_add_device(devpath, subsystem, fake);