19 lines
445 B
Plaintext
Executable File
19 lines
445 B
Plaintext
Executable File
# Put your custom commands here that should be executed once
|
|
# the system init finished. By default this file does nothing.
|
|
|
|
case `cat /proc/cpuinfo | grep MT76` in
|
|
*7621*)
|
|
CONFIG_RALINK_MT7621=y
|
|
;;
|
|
*7623*)
|
|
CONFIG_ARCH_MT7623=y
|
|
;;
|
|
esac
|
|
if [ "$CONFIG_RALINK_MT7621" = "y" ]; then
|
|
echo 2048 > /proc/sys/vm/min_free_kbytes
|
|
#echo 2 > /proc/sys/vm/overcommit_memory
|
|
#echo 50 > /proc/sys/vm/overcommit_ratio
|
|
fi
|
|
block mount
|
|
exit 0
|