12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/bash
- shopt -s extglob
- SHELL_FOLDER=$(dirname $(readlink -f "$0"))
- bash $SHELL_FOLDER/../common/kernel_5.15.sh
- rm -rf package/boot/uboot-rockchip
- svn export --force https://github.com/coolsnowwolf/lede/trunk/package/boot/uboot-rockchip package/boot/uboot-rockchip
- svn export --force https://github.com/coolsnowwolf/lede/trunk/package/boot/arm-trusted-firmware-rockchip-vendor package/boot/arm-trusted-firmware-rockchip-vendor
- rm -rf target/linux/rockchip/!(Makefile|patches-5.15)
- svn co https://github.com/coolsnowwolf/lede/trunk/target/linux/rockchip target/linux/rockchip
- rm -rf target/linux/rockchip/{.svn,patches-5.15/.svn}
- svn co https://github.com/coolsnowwolf/lede/trunk/target/linux/rockchip/patches-5.15 target/linux/rockchip/patches-5.15
- rm -rf target/linux/rockchip/patches-5.15/{002-net-usb*,003-dt-bindings*,006-rockchip-rk3399*}
- curl -sfL https://raw.githubusercontent.com/coolsnowwolf/lede/master/package/kernel/linux/modules/video.mk -o package/kernel/linux/modules/video.mk
- svn co https://github.com/openwrt/openwrt/trunk/package/kernel/mt76 package/feeds/kiddin9/mt76
- curl -sfL https://raw.githubusercontent.com/immortalwrt/immortalwrt/master/package/kernel/mt76/patches/0001-mt76-allow-VHT-rate-on-2.4GHz.patch -o package/feeds/kiddin9/mt76/patches/0001-mt76-allow-VHT-rate-on-2.4GHz.patch
- svn co https://github.com/openwrt/openwrt/trunk/package/network/services/hostapd package/feeds/kiddin9/hostapd
- sed -i "/KernelPackage,ptp/d" package/kernel/linux/modules/other.mk
- mv -f tmp/r8125 feeds/kiddin9/
- rm -rf target/linux/rockchip/armv8/base-files/etc/uci-defaults/13_opkg_update
- sed -i -e 's,kmod-r8168,kmod-r8169,g' target/linux/rockchip/image/armv8.mk
- sed -i 's/DEFAULT_PACKAGES +=/DEFAULT_PACKAGES += fdisk lsblk kmod-drm-rockchip/' target/linux/rockchip/Makefile
- sed -i 's/Ariaboard/光影猫/' target/linux/rockchip/image/armv8.mk
- echo '
- CONFIG_SENSORS_PWM_FAN=y
- ' >> ./target/linux/rockchip/armv8/config-5.15
|