diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2003-11-12 03:48:01 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:06:23 -0700 |
commit | 218eae87273e6b1d401ac67f94d648c9f39a30fa (patch) | |
tree | 122975e80fd3008c3e82ed12b55588cb425ba2e6 /udev-add.c | |
parent | c19a6b304cd7a727da9758853134b557f5f40705 (diff) |
[PATCH] add support for subdirs
support subdirectory creation/removal for NAME="/devfs/is/crazy/video0"
create parent subdirs for device node if needed
remove subdirs when last node is removed
Diffstat (limited to 'udev-add.c')
-rw-r--r-- | udev-add.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/udev-add.c b/udev-add.c index eb1c0fb676..9c54602405 100644 --- a/udev-add.c +++ b/udev-add.c @@ -101,6 +101,32 @@ static int create_node(struct udevice *dev) return -EINVAL; } + /* create subdirectories if requested */ + if (strchr(dev->name, '/')) { + char path[255]; + char *pos; + struct stat stats; + + strncpy(path, filename, sizeof(path)); + pos = strchr(path+1, '/'); + while (1) { + pos = strchr(pos+1, '/'); + if (pos == NULL) + break; + *pos = 0x00; + if (stat(path, &stats)) { + retval = mkdir(path, 0755); + if (retval) { + dbg("mkdir(%s) failed with error '%s'", + path, strerror(errno)); + return retval; + } + dbg("created %s", path); + } + *pos = '/'; + } + } + dbg("mknod(%s, %#o, %u, %u)", filename, dev->mode, dev->major, dev->minor); retval = mknod(filename, dev->mode, res); if (retval) |