#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org

STOP=90

restart() {
	:
}

revert_overlay() {
	#kill all process to release mnt/
	kill -9 -1

	/bin/umount /overlay/etc
	/bin/umount /overlay/nvm
}

stop() {
	sync
	revert_overlay
	/bin/umount -a -d -r
}
