diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-07-01 23:11:14 +0000 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-07-01 23:11:27 +0000 |
commit | 2c582a694db7f3f6fbfce153e8dc617d7096316b (patch) | |
tree | 5a16b323c011f51c0de2647d9caec5abf3b73ad4 | |
parent | a2d2fe4f689be4be36fcb283dad99a7476ca58a5 (diff) |
Fix patch symlink
-rw-r--r--[l---------] | patches/procd-openwrt-18.06/002_lxd_signal_halt.patch | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/patches/procd-openwrt-18.06/002_lxd_signal_halt.patch b/patches/procd-openwrt-18.06/002_lxd_signal_halt.patch index e91cbc0..306c39b 120000..100644 --- a/patches/procd-openwrt-18.06/002_lxd_signal_halt.patch +++ b/patches/procd-openwrt-18.06/002_lxd_signal_halt.patch @@ -1 +1,28 @@ -../procd-lede-17.01/002_lxd_signal_halt.patch
\ No newline at end of file +--- a/initd/init.c.orig 2018-07-01 22:24:02.065349814 +0000 ++++ b/initd/init.c 2018-07-01 22:23:02.837917724 +0000 +@@ -77,6 +77,7 @@ + sigaction(SIGTERM, &sa_shutdown, NULL); + sigaction(SIGUSR1, &sa_shutdown, NULL); + sigaction(SIGUSR2, &sa_shutdown, NULL); ++ sigaction(SIGPWR, &sa_shutdown, NULL); + + early(); + cmdline(); +--- a/signal.c.orig 2018-03-28 09:29:49.000000000 +0000 ++++ b/signal.c 2018-07-01 22:23:23.357720944 +0000 +@@ -44,6 +44,7 @@ + break; + case SIGUSR1: + case SIGUSR2: ++ case SIGPWR: + event = RB_POWER_OFF; + msg = "poweroff"; + break; +@@ -90,6 +91,7 @@ + sigaction(SIGINT, &sa_shutdown, NULL); + sigaction(SIGUSR1, &sa_shutdown, NULL); + sigaction(SIGUSR2, &sa_shutdown, NULL); ++ sigaction(SIGPWR, &sa_shutdown, NULL); + sigaction(SIGSEGV, &sa_crash, NULL); + sigaction(SIGBUS, &sa_crash, NULL); + sigaction(SIGHUP, &sa_dummy, NULL); |