1#!/bin/sh /etc/rc.common
2# Copyright (C) 2006 OpenWrt.org
3
4START=95
5boot() {
6	mount_root done
7	rm -f /sysupgrade.tgz
8
9	# process user commands
10	[ -f /etc/rc.local ] && {
11		sh /etc/rc.local
12	}
13
14	# set leds to normal state
15	. /etc/diag.sh
16	set_state done
17}
18