├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug.md └── workflows │ ├── data.yml │ └── issues.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO ├── VERSION ├── docs ├── addons.json ├── addons.xlsx ├── changelogs.html ├── index.html ├── issues.html ├── models.json ├── models.xlsx ├── modules.json ├── modules.xlsx ├── pats.json └── pats.xlsx ├── files ├── initrd │ └── opt │ │ └── rr │ │ ├── boot.sh │ │ ├── bzImage-template-v4.gz │ │ ├── bzImage-template-v5.gz │ │ ├── bzImage-to-vmlinux.sh │ │ ├── extract-vmlinux │ │ ├── grub.img.gz │ │ ├── helper.sh │ │ ├── i915ids │ │ ├── include │ │ ├── addons.sh │ │ ├── configFile.sh │ │ ├── consts.sh │ │ ├── functions.py │ │ ├── functions.sh │ │ ├── i18n.sh │ │ ├── logo.png │ │ └── modules.sh │ │ ├── init.sh │ │ ├── kpatch │ │ ├── lang │ │ ├── ar_SA │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── de_DE │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── en_US │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── es_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── fr_FR │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── ja_JP │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── ko_KR │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── rr.pot │ │ ├── ru_RU │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── th_TH │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── tr_TR │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── uk_UA │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── vi_VN │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ ├── zh_HK │ │ │ └── LC_MESSAGES │ │ │ │ └── rr.po │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ └── rr.po │ │ ├── menu.sh │ │ ├── patch │ │ ├── iosched-trampoline.sh │ │ ├── modulelist │ │ ├── ramdisk-etc-rc-25556.patch │ │ ├── ramdisk-init-script-25556.patch │ │ ├── ramdisk-init-script-42218.patch │ │ ├── ramdisk-init-script-64216.patch │ │ ├── ramdisk-init-script-69057.patch │ │ ├── ramdisk-post-init-script-25556.patch │ │ ├── ramdisk-post-init-script-42218.patch │ │ ├── ramdisk-post-init-script-42661.patch │ │ ├── ramdisk-post-init-script-42951.patch │ │ └── ramdisk-post-init-script-69057.patch │ │ ├── platforms.yml │ │ ├── ramdisk-patch.sh │ │ ├── serialnumber.yml │ │ ├── vmlinux-to-bzImage.sh │ │ └── zimage-patch.sh └── mnt │ └── p1 │ ├── EFI │ └── BOOT │ │ ├── SynoBootLoader.conf │ │ └── SynoBootLoader.efi │ ├── RR_VERSION │ └── boot │ └── grub │ ├── gfxblacklist.txt │ ├── grub.cfg │ ├── logo.png │ └── memtest ├── guide.md ├── kpatch ├── Makefile └── main.c ├── scripts ├── func.py ├── func.sh ├── pve.sh └── requirements.txt ├── update-check.sh └── update-list.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: wjz304 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/workflows/data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/.github/workflows/data.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 25.9.7 2 | -------------------------------------------------------------------------------- /docs/addons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/addons.json -------------------------------------------------------------------------------- /docs/addons.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/addons.xlsx -------------------------------------------------------------------------------- /docs/changelogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/changelogs.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/issues.html -------------------------------------------------------------------------------- /docs/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/models.json -------------------------------------------------------------------------------- /docs/models.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/models.xlsx -------------------------------------------------------------------------------- /docs/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/modules.json -------------------------------------------------------------------------------- /docs/modules.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/modules.xlsx -------------------------------------------------------------------------------- /docs/pats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/pats.json -------------------------------------------------------------------------------- /docs/pats.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/docs/pats.xlsx -------------------------------------------------------------------------------- /files/initrd/opt/rr/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/boot.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/bzImage-template-v4.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/bzImage-template-v4.gz -------------------------------------------------------------------------------- /files/initrd/opt/rr/bzImage-template-v5.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/bzImage-template-v5.gz -------------------------------------------------------------------------------- /files/initrd/opt/rr/bzImage-to-vmlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/bzImage-to-vmlinux.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/extract-vmlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/extract-vmlinux -------------------------------------------------------------------------------- /files/initrd/opt/rr/grub.img.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/grub.img.gz -------------------------------------------------------------------------------- /files/initrd/opt/rr/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/helper.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/i915ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/i915ids -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/addons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/addons.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/configFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/configFile.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/consts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/consts.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/functions.py -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/functions.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/i18n.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/logo.png -------------------------------------------------------------------------------- /files/initrd/opt/rr/include/modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/include/modules.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/init.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/kpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/kpatch -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/ar_SA/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/ar_SA/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/de_DE/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/de_DE/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/en_US/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/en_US/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/es_ES/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/es_ES/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/fr_FR/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/fr_FR/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/ja_JP/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/ja_JP/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/ko_KR/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/ko_KR/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/rr.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/rr.pot -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/ru_RU/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/ru_RU/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/th_TH/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/th_TH/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/tr_TR/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/tr_TR/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/uk_UA/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/uk_UA/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/vi_VN/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/vi_VN/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/zh_CN/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/zh_CN/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/zh_HK/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/zh_HK/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/lang/zh_TW/LC_MESSAGES/rr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/lang/zh_TW/LC_MESSAGES/rr.po -------------------------------------------------------------------------------- /files/initrd/opt/rr/menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/menu.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/iosched-trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/iosched-trampoline.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/modulelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/modulelist -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-etc-rc-25556.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-etc-rc-25556.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-init-script-25556.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-init-script-25556.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-init-script-42218.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-init-script-42218.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-init-script-64216.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-init-script-64216.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-init-script-69057.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-init-script-69057.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-post-init-script-25556.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-post-init-script-25556.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-post-init-script-42218.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-post-init-script-42218.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-post-init-script-42661.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-post-init-script-42661.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-post-init-script-42951.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-post-init-script-42951.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/patch/ramdisk-post-init-script-69057.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/patch/ramdisk-post-init-script-69057.patch -------------------------------------------------------------------------------- /files/initrd/opt/rr/platforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/platforms.yml -------------------------------------------------------------------------------- /files/initrd/opt/rr/ramdisk-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/ramdisk-patch.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/serialnumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/serialnumber.yml -------------------------------------------------------------------------------- /files/initrd/opt/rr/vmlinux-to-bzImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/vmlinux-to-bzImage.sh -------------------------------------------------------------------------------- /files/initrd/opt/rr/zimage-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/initrd/opt/rr/zimage-patch.sh -------------------------------------------------------------------------------- /files/mnt/p1/EFI/BOOT/SynoBootLoader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/mnt/p1/EFI/BOOT/SynoBootLoader.conf -------------------------------------------------------------------------------- /files/mnt/p1/EFI/BOOT/SynoBootLoader.efi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/mnt/p1/RR_VERSION: -------------------------------------------------------------------------------- 1 | 25.9.7 2 | -------------------------------------------------------------------------------- /files/mnt/p1/boot/grub/gfxblacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/mnt/p1/boot/grub/gfxblacklist.txt -------------------------------------------------------------------------------- /files/mnt/p1/boot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/mnt/p1/boot/grub/grub.cfg -------------------------------------------------------------------------------- /files/mnt/p1/boot/grub/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/mnt/p1/boot/grub/logo.png -------------------------------------------------------------------------------- /files/mnt/p1/boot/grub/memtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/files/mnt/p1/boot/grub/memtest -------------------------------------------------------------------------------- /guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/guide.md -------------------------------------------------------------------------------- /kpatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/kpatch/Makefile -------------------------------------------------------------------------------- /kpatch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/kpatch/main.c -------------------------------------------------------------------------------- /scripts/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/scripts/func.py -------------------------------------------------------------------------------- /scripts/func.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/scripts/func.sh -------------------------------------------------------------------------------- /scripts/pve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/scripts/pve.sh -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /update-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/update-check.sh -------------------------------------------------------------------------------- /update-list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RROrg/rr/HEAD/update-list.yml --------------------------------------------------------------------------------