mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 03:01:55 +02:00
[package] base-files: sysupgrade: kill all but essential processes before starting the update
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28626 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f6c379666d
commit
32e96fff78
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=base-files
|
PKG_NAME:=base-files
|
||||||
PKG_RELEASE:=84
|
PKG_RELEASE:=85
|
||||||
|
|
||||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||||
PKG_BUILD_DEPENDS:=opkg/host
|
PKG_BUILD_DEPENDS:=opkg/host
|
||||||
|
@ -77,6 +77,30 @@ run_ramfs() { # <command> [...]
|
|||||||
exec /bin/busybox ash -c "$*"
|
exec /bin/busybox ash -c "$*"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
kill_remaining() { # [ <signal> ]
|
||||||
|
local sig="${1:-TERM}"
|
||||||
|
echo -n "Sending $sig to remaing processes ... "
|
||||||
|
top -bn1 | while read pid ppid user stat vsz pvsz pcpu cmd args; do
|
||||||
|
case "$pid" in
|
||||||
|
[0-9]*) : ;;
|
||||||
|
*) continue ;;
|
||||||
|
esac
|
||||||
|
case "$cmd" in
|
||||||
|
# Skip kernel threads and essential services
|
||||||
|
\[*\]|*ash*|*init*|*watchdog*|*ssh*|*dropbear*|*telnet*|*login*) : ;;
|
||||||
|
|
||||||
|
# Killable process
|
||||||
|
*)
|
||||||
|
if [ $pid -ne $$ ] && [ $ppid -ne $$ ]; then
|
||||||
|
echo -n "${cmd##*/} "
|
||||||
|
kill -$sig $pid 2>/dev/null
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
echo ""
|
||||||
|
}
|
||||||
|
|
||||||
run_hooks() {
|
run_hooks() {
|
||||||
local arg="$1"; shift
|
local arg="$1"; shift
|
||||||
for func in "$@"; do
|
for func in "$@"; do
|
||||||
|
@ -127,6 +127,11 @@ elif ask_bool $SAVE_CONFIG "Keep config files over reflash"; then
|
|||||||
else
|
else
|
||||||
export SAVE_CONFIG=0
|
export SAVE_CONFIG=0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
kill_remaining TERM
|
||||||
|
sleep 3
|
||||||
|
kill_remaining KILL
|
||||||
|
|
||||||
run_hooks "" $sysupgrade_pre_upgrade
|
run_hooks "" $sysupgrade_pre_upgrade
|
||||||
|
|
||||||
if [ -n "$(rootfs_type)" ]; then
|
if [ -n "$(rootfs_type)" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user