gitextract_zrrni0xv/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug-report.md │ └── workflows/ │ ├── compile-allwinner-h6-kernel.yml │ ├── compile-mainline-beta-kernel.yml │ ├── compile-mainline-stable-kernel.yml │ ├── compile-rockchip-rk3588-kernel.yml │ ├── compile-rockchip-rk35xx-kernel.yml │ └── delete-older-releases-workflows.yml ├── .gitignore ├── LICENSE ├── README.cn.md ├── README.md ├── kernel-config/ │ ├── README.md │ └── release/ │ ├── h6/ │ │ ├── config-6.4 │ │ ├── config-6.5 │ │ └── config-6.6 │ ├── rk3588/ │ │ ├── config-5.10 │ │ └── config-6.1 │ ├── rk35xx/ │ │ ├── config-5.10 │ │ └── config-6.1 │ └── stable/ │ ├── config-5.10 │ ├── config-5.15 │ ├── config-5.4 │ ├── config-6.1 │ ├── config-6.12 │ ├── config-6.18 │ └── config-6.6 └── kernel-patch/ ├── README.md └── beta/ ├── common-kernel-patches/ │ └── 301-dts-add-rockchip-rk3399-mpc1903-dtb.patch ├── deprecated-patches/ │ ├── 5.10.y-101-arm64-add-text_offset.patch │ ├── 5.10.y-201-wifi-add-ssv6051-driver.patch │ ├── 5.15.y-201-wifi-add-ssv6051-driver.patch │ ├── 6.1.y-101-arm64-add-text_offset.patch │ ├── 6.12.y-301-dts-add-rockchip-rk3568-alark35-3500-dtb.patch │ ├── 6.18.y-101-arm64-add-text_offset.patch │ ├── 6.18.y-301-dts-add-g12a-g12b-gxbb-series-devices.patch │ ├── 6.18.y-302-dts-add-gxl-series-devices.patch │ ├── 6.18.y-303-dts-add-gxm-sm1-series-devices.patch │ ├── 6.18.y-304-dts-add-rk3328-rk3399-series-devices.patch │ ├── 6.18.y-305-dts-add-rk3566-series-devices.patch │ ├── 6.18.y-306-dts-add-rk3568-series-devices.patch │ ├── 6.18.y-307-dts-add-rk3588-series-devices.patch │ ├── 6.18.y-308-dts-add-rk3568-series-devices.patch │ ├── 6.18.y-309-dts-add-skip-version-detect-for-oes-plus.patch │ └── 6.6.y-101-arm64-add-text_offset.patch ├── linux-5.15.y/ │ ├── 201-drm-meson-venc-add-support-for-ws7.9.patch │ └── 301-dts-add-rockchip-rk3399-cdhx-rb30-dtb.patch ├── linux-6.1.y/ │ └── 201-fix-i2ca-and-i2cb-miossing-pins.patch └── linux-6.6.y/ └── 201-fix-i2ca-and-i2cb-miossing-pins.patch