69 lines
3.8 KiB
Bash
69 lines
3.8 KiB
Bash
config_file_turboacc=`find package/ -follow -type f -path '*/luci-app-turboacc/root/etc/config/turboacc'`
|
|
sed -i "s/option hw_flow '1'/option hw_flow '0'/" $config_file_turboacc
|
|
sed -i "s/option sfe_flow '1'/option sfe_flow '0'/" $config_file_turboacc
|
|
sed -i "s/option sfe_bridge '1'/option sfe_bridge '0'/" $config_file_turboacc
|
|
sed -i "/dep.*INCLUDE_.*=n/d" `find package/ -follow -type f -path '*/luci-app-turboacc/Makefile'`
|
|
|
|
sed -i "s/option limit_enable '1'/option limit_enable '0'/" `find package/ -follow -type f -path '*/nft-qos/files/nft-qos.config'`
|
|
sed -i "/\/etc\/coremark\.sh/d" `find package/ -follow -type f -path '*/coremark/coremark'`
|
|
sed -i 's/192.168.1.1/192.168.2.1/' package/base-files/files/bin/config_generate
|
|
sed -i 's/=1/=0/g' package/kernel/linux/files/sysctl-br-netfilter.conf
|
|
|
|
sed -i '/DEPENDS/ s/$/ +libcap-bin/' `find package/ -follow -type f -path '*/luci-app-openclash/Makefile'`
|
|
sed -i '/DEPENDS+/ s/$/ +wsdd2/' `find package/ -follow -type f -path '*/ksmbd-tools/Makefile'`
|
|
|
|
sed -i 's/ +ntfs-3g/ +ntfs3-mount/' `find package/ -follow -type f -path '*/automount/Makefile'`
|
|
sed -i '/skip\=/ a skip=`mount | grep -q /dev/$device; echo $?`' `find package/ -follow -type f -path */automount/files/15-automount`
|
|
|
|
if [ $DEVICE = 'r2s' -o $DEVICE = 'r2c' ]; then
|
|
sed -i 's/1400000/1450000/' target/linux/rockchip/patches-5.4/991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch
|
|
sed -i "s/enable '0'/enable '1'/" `find package/ -follow -type f -path '*/luci-app-oled/root/etc/config/oled'`
|
|
config_file_cpufreq=`find package/ -follow -type f -path '*/luci-app-cpufreq/root/etc/config/cpufreq'`
|
|
truncate -s-1 $config_file_cpufreq
|
|
echo -e "\toption governor0 'schedutil'" >> $config_file_cpufreq
|
|
echo -e "\toption minfreq0 '816000'" >> $config_file_cpufreq
|
|
echo -e "\toption maxfreq0 '1512000'\n" >> $config_file_cpufreq
|
|
fi
|
|
|
|
if [ $DEVICE = 'r4s' ]; then
|
|
sed -i 's/r8169/r8168/' target/linux/rockchip/image/armv8.mk
|
|
fi
|
|
|
|
if [[ $DEVICE =~ ('r2s'|'r2c'|'r4s'|'r1p') ]]; then
|
|
wget https://github.com/coolsnowwolf/lede/raw/757e42d70727fe6b937bb31794a9ad4f5ce98081/target/linux/rockchip/config-default -NP target/linux/rockchip/
|
|
wget https://github.com/coolsnowwolf/lede/commit/f341ef96fe4b509a728ba1281281da96bac23673.patch
|
|
git apply f341ef96fe4b509a728ba1281281da96bac23673.patch
|
|
rm f341ef96fe4b509a728ba1281281da96bac23673.patch
|
|
fi
|
|
|
|
sed -i '/182.140.223.146/d' scripts/download.pl
|
|
sed -i '/\.cn\//d' scripts/download.pl
|
|
sed -i '/tencent/d' scripts/download.pl
|
|
|
|
#inject the firmware version
|
|
strDate=`TZ=UTC-8 date +%Y-%m-%d`
|
|
status_pages=`find package/ -follow -type f \( -path '*/autocore/files/arm/index.htm' -o -path '*/autocore/files/x86/index.htm' -o -path '*/autocore/files/arm/rpcd_10_system.js' \)`
|
|
for status_page in $status_pages; do
|
|
case $status_page in
|
|
*htm)
|
|
line_number_FV=`grep -n 'Firmware Version' $status_page | cut -d: -f 1`
|
|
sed -i '/ver\./d' $status_page
|
|
sed -i $line_number_FV' a <a href="https://github.com/klever1988/nanopi-openwrt" target="_blank">klever1988/nanopi-openwrt</a> '$strDate $status_page
|
|
;;
|
|
*js)
|
|
line_number_FV=`grep -m1 -n 'corelink' $status_page | cut -d: -f1`
|
|
sed -i $line_number_FV' i var pfv = document.createElement('\''placeholder'\'');pfv.innerHTML = '\''<a href="https://github.com/klever1988/nanopi-openwrt" target="_blank">klever1988/nanopi-openwrt</a> '$strDate"';" $status_page
|
|
line_number_FV=`grep -n 'Firmware Version' $status_page | cut -d : -f 1`
|
|
sed -i '/Firmware Version/d' $status_page
|
|
sed -i $line_number_FV' a _('\''Firmware Version'\''), pfv,' $status_page
|
|
;;
|
|
esac
|
|
done
|
|
|
|
#fix argon css
|
|
css_file=`find package/ -follow -type f -path '*/argon/css/cascade.css'`
|
|
line_number_h6=`grep -m1 -n 'h6 {' $css_file | cut -d: -f1`
|
|
if [[ ! -z "$line_number_h6" ]]; then
|
|
sed -i $line_number_h6',+10 s/font-weight: normal/font-weight: bold/' $css_file
|
|
fi
|