12345678910111213141516171819202122 |
- #!/bin/bash
- shopt -s extglob
- sed -i "s/BOARD:=rockchip$/BOARD:=rockchip_rk3588/" target/linux/rockchip/Makefile
- 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
- echo '
- CONFIG_SENSORS_PWM_FAN=y
- ' >> ./target/linux/rockchip/armv8/config-5.10
- sed -i "/KernelPackage,ptp/d" package/kernel/linux/modules/other.mk
- mv -f target/linux/rockchip target/linux/rockchip_rk3588
- rm -rf package/feeds/packages/glib2 package/devel/perf package/feeds/kiddin9/{shortcut-fe,fibocom_QMI_WWAN,oaf,fast-classifier,firewall,rtl88x2bu,rtl8821cu} package/feeds/packages/bluez package/kernel/ksmbd package/feeds/routing/batman-adv
- #curl -sfL https://raw.githubusercontent.com/coolsnowwolf/lede/master/package/kernel/linux/modules/video.mk -o package/kernel/linux/modules/video.mk
|