mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
20 lines
283 B
Bash
Executable File
20 lines
283 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
|
|
START=11
|
|
STOP=98
|
|
|
|
adjust_smp_affinity() {
|
|
test -f /lib/adjust_network.sh && {
|
|
. /lib/adjust_network.sh
|
|
|
|
adjust_eth_queue
|
|
adjust_edma_smp_affinity
|
|
adjust_radio_smp_affinity
|
|
}
|
|
}
|
|
|
|
boot() {
|
|
adjust_smp_affinity
|
|
}
|