1#!/bin/sh /etc/rc.common
2# Make sysfs changes at start time
3
4START=98
5
6start() {
7	echo 0 >/sys/block/mtdblock2/queue/read_ahead_kb
8	echo 1 >/sys/fast_classifier/skip_to_bridge_ingress
9}
10