projects
/
platform
/
upstream
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06af569
)
mdev: chdir back to /dev after trying to read firmware
author
Denys Vlasenko
<vda.linux@googlemail.com>
Mon, 4 Feb 2013 22:35:27 +0000
(23:35 +0100)
committer
Denys Vlasenko
<vda.linux@googlemail.com>
Mon, 4 Feb 2013 22:35:27 +0000
(23:35 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/mdev.c
patch
|
blob
|
history
diff --git
a/util-linux/mdev.c
b/util-linux/mdev.c
index
52122dd
..
c592ef6
100644
(file)
--- a/
util-linux/mdev.c
+++ b/
util-linux/mdev.c
@@
-815,6
+815,7
@@
static void load_firmware(const char *firmware, const char *sysfs_path)
full_write(loading_fd, "-1", 2);
out:
+ xchdir("/dev");
if (ENABLE_FEATURE_CLEAN_UP) {
close(firmware_fd);
close(loading_fd);
@@
-921,7
+922,7
@@
int mdev_main(int argc UNUSED_PARAM, char **argv)
}
{
- int logfd = open("
/dev/
mdev.log", O_WRONLY | O_APPEND);
+ int logfd = open("mdev.log", O_WRONLY | O_APPEND);
if (logfd >= 0) {
xmove_fd(logfd, STDERR_FILENO);
G.verbose = 1;