├── Makefile ├── MakefileRootless ├── README.md ├── debugserver.plist ├── debugserver_azj.plist ├── gputoolsd.plist ├── layout ├── DEBIAN │ ├── control │ ├── extrainst_ │ └── prerm └── usr │ └── bin │ ├── debugserver_azj10 │ ├── debugserver_azj12 │ ├── debugserver_azj14 │ ├── debugserver_azj15 │ ├── gputoolsd_azj10 │ ├── gputoolsd_azj12 │ ├── gputoolsd_azj14 │ └── gputoolsd_azj15 ├── main.xm └── screenshot.png /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/Makefile -------------------------------------------------------------------------------- /MakefileRootless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/MakefileRootless -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/README.md -------------------------------------------------------------------------------- /debugserver.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/debugserver.plist -------------------------------------------------------------------------------- /debugserver_azj.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/debugserver_azj.plist -------------------------------------------------------------------------------- /gputoolsd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/gputoolsd.plist -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/DEBIAN/extrainst_: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | killall -9 lockdownd 4 | exit 0 5 | -------------------------------------------------------------------------------- /layout/DEBIAN/prerm: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | killall -9 lockdownd 4 | exit 0 5 | -------------------------------------------------------------------------------- /layout/usr/bin/debugserver_azj10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/debugserver_azj10 -------------------------------------------------------------------------------- /layout/usr/bin/debugserver_azj12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/debugserver_azj12 -------------------------------------------------------------------------------- /layout/usr/bin/debugserver_azj14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/debugserver_azj14 -------------------------------------------------------------------------------- /layout/usr/bin/debugserver_azj15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/debugserver_azj15 -------------------------------------------------------------------------------- /layout/usr/bin/gputoolsd_azj10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/gputoolsd_azj10 -------------------------------------------------------------------------------- /layout/usr/bin/gputoolsd_azj12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/gputoolsd_azj12 -------------------------------------------------------------------------------- /layout/usr/bin/gputoolsd_azj14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/gputoolsd_azj14 -------------------------------------------------------------------------------- /layout/usr/bin/gputoolsd_azj15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/layout/usr/bin/gputoolsd_azj15 -------------------------------------------------------------------------------- /main.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/main.xm -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lich4/debugserver_azj/HEAD/screenshot.png --------------------------------------------------------------------------------