├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── kern.ld ├── scripts └── vgpu-name.sh ├── vgpu_unlock └── vgpu_unlock_hooks.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/README.md -------------------------------------------------------------------------------- /kern.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/kern.ld -------------------------------------------------------------------------------- /scripts/vgpu-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/scripts/vgpu-name.sh -------------------------------------------------------------------------------- /vgpu_unlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/vgpu_unlock -------------------------------------------------------------------------------- /vgpu_unlock_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DualCoder/vgpu_unlock/HEAD/vgpu_unlock_hooks.c --------------------------------------------------------------------------------