12345678910111213141516171819202122 |
- #!/bin/bash
- shopt -s extglob
- SHELL_FOLDER=$(dirname $(readlink -f "$0"))
- #bash $SHELL_FOLDER/../common/kernel_6.1.sh
- git_clone_path master https://github.com/coolsnowwolf/lede target/linux/generic/hack-6.6
- rm -rf target/linux/generic/hack-6.6/767-net-phy-realtek*
- wget -N https://raw.githubusercontent.com/coolsnowwolf/lede/master/target/linux/generic/pending-6.6/613-netfilter_optional_tcp_window_check.patch -P target/linux/generic/pending-6.6/
- wget -N https://raw.githubusercontent.com/openwrt/packages/master/libs/dmx_usb_module/patches/101-fix-kernel-6.6-builds.patch -P package/feeds/packages/dmx_usb_module/patches/
- cd feeds/packages
- rm -rf libs/libpfring
- git_clone_path master https://github.com/openwrt/packages libs/libpfring
- cd ../../
- wget -N https://raw.githubusercontent.com/openwrt/openwrt/main/package/devel/kselftests-bpf/Makefile -P package/devel/kselftests-bpf/
- rm -rf target/linux/generic/hack-6.6/{410-block-fit-partition-parser.patch,724-net-phy-aquantia*,720-net-phy-add-aqr-phys.patch}
|