diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-11-26 01:03:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-11-26 01:03:21 +0000 |
commit | 706bd43332f7db8980c1096fa9d19547dbb86a13 (patch) | |
tree | 46eb61d2b869d9c126dca7d6a8b16c41947e9ccc /package/mtd/src | |
parent | 41e1792c3ea45e7c6d7aeea33b896664d5906247 (diff) | |
download | upstream-706bd43332f7db8980c1096fa9d19547dbb86a13.tar.gz upstream-706bd43332f7db8980c1096fa9d19547dbb86a13.tar.bz2 upstream-706bd43332f7db8980c1096fa9d19547dbb86a13.zip |
add reboot fix for mtd (thanks, wbx)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5645 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mtd/src')
-rw-r--r-- | package/mtd/src/mtd.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/package/mtd/src/mtd.c b/package/mtd/src/mtd.c index 80d09abd2a..7d1e36010c 100644 --- a/package/mtd/src/mtd.c +++ b/package/mtd/src/mtd.c @@ -28,17 +28,20 @@ #include <stdlib.h> #include <stdio.h> #include <stdint.h> +#include <sys/ioctl.h> +#include <sys/syscall.h> #include <fcntl.h> #include <errno.h> #include <error.h> #include <time.h> +#include <string.h> #include <sys/ioctl.h> #include <sys/types.h> #include <sys/param.h> #include <sys/mount.h> #include <sys/stat.h> #include <sys/reboot.h> -#include <string.h> +#include <linux/reboot.h> #include "mtd.h" @@ -458,8 +461,9 @@ int main (int argc, char **argv) sync(); - if (boot) - kill(1, 15); // send SIGTERM to init for reboot - + if (boot) { + fflush(stdout); + syscall(SYS_reboot,LINUX_REBOOT_MAGIC1,LINUX_REBOOT_MAGIC2,LINUX_REBOOT_CMD_RESTART,NULL); + } return 0; } |