From: nbd Date: Sun, 26 Nov 2006 01:03:21 +0000 (+0000) Subject: add reboot fix for mtd (thanks, wbx) X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=1967751704d6079f3f84ffcb83d9fe296bd04b67 add reboot fix for mtd (thanks, wbx) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5645 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/mtd/Makefile b/package/mtd/Makefile index 8444bd802..cf23fbeeb 100644 --- a/package/mtd/Makefile +++ b/package/mtd/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=mtd -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_BUILD_DIR := $(KERNEL_BUILD_DIR)/$(PKG_NAME) diff --git a/package/mtd/src/mtd.c b/package/mtd/src/mtd.c index 80d09abd2..7d1e36010 100644 --- a/package/mtd/src/mtd.c +++ b/package/mtd/src/mtd.c @@ -28,17 +28,20 @@ #include #include #include +#include +#include #include #include #include #include +#include #include #include #include #include #include #include -#include +#include #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; }