├── .gitignore ├── Makefile ├── README ├── guhl ├── gfmod │ ├── COPYING │ ├── Makefile │ ├── gfmod.c │ ├── gfmod.h │ ├── msm_sdcc.h │ └── proc_comm.h ├── gfree_verify │ ├── Makefile │ ├── gfree_verify.c │ ├── soff_verify.c │ └── soff_verify.h ├── gkmem │ ├── COPYING │ ├── Makefile │ └── gkmem.c ├── incsfree │ ├── COPYING │ ├── Makefile │ ├── embedwpthis.pl │ ├── gfmod.h │ ├── gkmem.h │ ├── gopt.c │ ├── gopt.h │ └── incsfree.c ├── misc_version │ ├── LICENSE │ ├── Makefile │ ├── gopt.c │ ├── gopt.h │ └── misc_version.c ├── p7_soff │ ├── gopt.c │ ├── gopt.h │ ├── p7_s-off.c │ ├── soff_verify.c │ └── soff_verify.h └── vision_wipe_efs │ ├── LICENSE │ ├── Makefile │ ├── README │ └── vision_wipe_efs.c ├── scotty2 ├── Makefile ├── gfree │ ├── LICENSE │ ├── Makefile │ ├── embedwpthis.pl │ ├── gfree.c │ ├── gopt.c │ ├── gopt.h │ ├── md5sum.c │ ├── md5sum.h │ └── wpthis.h ├── msm_sdcc.h ├── pbl │ ├── dumppbl.pl │ └── pbl.pl ├── proc_comm.h ├── psneuter │ ├── make │ ├── psneuter │ ├── psneuter.c │ └── run ├── wpthis.c ├── wpthis.h └── wpthis.ko ├── tmzt ├── Makefile ├── foreign │ ├── mod1.c │ ├── mod10.c │ ├── mod11.c │ ├── mod12.c │ ├── mod13.c │ ├── mod14.c │ ├── mod15.c │ ├── mod16.c │ ├── mod18.c │ ├── mod2.c │ ├── mod3.c │ ├── mod4.c │ ├── mod5.c │ ├── mod6.c │ ├── mod7.c │ ├── mod8.c │ ├── mod9.c │ └── sysfind.c ├── g2 │ ├── blkops1.c │ ├── bouncepwrreg1.c │ ├── bouncereg1.c │ ├── debugsmi1.c │ ├── hostoff1.c │ ├── hostoff2.c │ ├── hostoff3.c │ ├── rereg1.c │ ├── rereg2.c │ ├── resume1.c │ ├── smidump1.c │ ├── suspend1.c │ ├── sysdentry17.c │ ├── unreg1.c │ └── unreg2.c ├── rhod500 │ ├── Makefile │ └── speakeroff1.c └── vision │ ├── Makefile │ ├── gp12off1.c │ ├── gp12off2.c │ ├── gpgenoff1.c │ ├── gpio88onoff1.c │ └── pm │ ├── Makefile │ ├── cache1.S │ ├── idle1.S │ ├── pm1.c │ ├── pm2.c │ ├── pm3.c │ ├── pm4.c │ ├── pm5.c │ ├── pm6.c │ ├── pmmod1-panic-1.txt │ ├── pmmod2-panic-1.txt │ ├── pmmod3-output-1.txt │ ├── pmmod3-output-2.txt │ ├── pmmod4-output-1.txt │ ├── pmmod5-hang-1.txt │ └── smd_private1.h └── userspace ├── test1 └── test1.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/README -------------------------------------------------------------------------------- /guhl/gfmod/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfmod/COPYING -------------------------------------------------------------------------------- /guhl/gfmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfmod/Makefile -------------------------------------------------------------------------------- /guhl/gfmod/gfmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfmod/gfmod.c -------------------------------------------------------------------------------- /guhl/gfmod/gfmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfmod/gfmod.h -------------------------------------------------------------------------------- /guhl/gfmod/msm_sdcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfmod/msm_sdcc.h -------------------------------------------------------------------------------- /guhl/gfmod/proc_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfmod/proc_comm.h -------------------------------------------------------------------------------- /guhl/gfree_verify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfree_verify/Makefile -------------------------------------------------------------------------------- /guhl/gfree_verify/gfree_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfree_verify/gfree_verify.c -------------------------------------------------------------------------------- /guhl/gfree_verify/soff_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfree_verify/soff_verify.c -------------------------------------------------------------------------------- /guhl/gfree_verify/soff_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gfree_verify/soff_verify.h -------------------------------------------------------------------------------- /guhl/gkmem/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gkmem/COPYING -------------------------------------------------------------------------------- /guhl/gkmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gkmem/Makefile -------------------------------------------------------------------------------- /guhl/gkmem/gkmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/gkmem/gkmem.c -------------------------------------------------------------------------------- /guhl/incsfree/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/COPYING -------------------------------------------------------------------------------- /guhl/incsfree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/Makefile -------------------------------------------------------------------------------- /guhl/incsfree/embedwpthis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/embedwpthis.pl -------------------------------------------------------------------------------- /guhl/incsfree/gfmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/gfmod.h -------------------------------------------------------------------------------- /guhl/incsfree/gkmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/gkmem.h -------------------------------------------------------------------------------- /guhl/incsfree/gopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/gopt.c -------------------------------------------------------------------------------- /guhl/incsfree/gopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/gopt.h -------------------------------------------------------------------------------- /guhl/incsfree/incsfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/incsfree/incsfree.c -------------------------------------------------------------------------------- /guhl/misc_version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/misc_version/LICENSE -------------------------------------------------------------------------------- /guhl/misc_version/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/misc_version/Makefile -------------------------------------------------------------------------------- /guhl/misc_version/gopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/misc_version/gopt.c -------------------------------------------------------------------------------- /guhl/misc_version/gopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/misc_version/gopt.h -------------------------------------------------------------------------------- /guhl/misc_version/misc_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/misc_version/misc_version.c -------------------------------------------------------------------------------- /guhl/p7_soff/gopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/p7_soff/gopt.c -------------------------------------------------------------------------------- /guhl/p7_soff/gopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/p7_soff/gopt.h -------------------------------------------------------------------------------- /guhl/p7_soff/p7_s-off.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/p7_soff/p7_s-off.c -------------------------------------------------------------------------------- /guhl/p7_soff/soff_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/p7_soff/soff_verify.c -------------------------------------------------------------------------------- /guhl/p7_soff/soff_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/p7_soff/soff_verify.h -------------------------------------------------------------------------------- /guhl/vision_wipe_efs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/vision_wipe_efs/LICENSE -------------------------------------------------------------------------------- /guhl/vision_wipe_efs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/vision_wipe_efs/Makefile -------------------------------------------------------------------------------- /guhl/vision_wipe_efs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/vision_wipe_efs/README -------------------------------------------------------------------------------- /guhl/vision_wipe_efs/vision_wipe_efs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/guhl/vision_wipe_efs/vision_wipe_efs.c -------------------------------------------------------------------------------- /scotty2/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += wpthis.o 2 | 3 | -------------------------------------------------------------------------------- /scotty2/gfree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/LICENSE -------------------------------------------------------------------------------- /scotty2/gfree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/Makefile -------------------------------------------------------------------------------- /scotty2/gfree/embedwpthis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/embedwpthis.pl -------------------------------------------------------------------------------- /scotty2/gfree/gfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/gfree.c -------------------------------------------------------------------------------- /scotty2/gfree/gopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/gopt.c -------------------------------------------------------------------------------- /scotty2/gfree/gopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/gopt.h -------------------------------------------------------------------------------- /scotty2/gfree/md5sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/md5sum.c -------------------------------------------------------------------------------- /scotty2/gfree/md5sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/md5sum.h -------------------------------------------------------------------------------- /scotty2/gfree/wpthis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/gfree/wpthis.h -------------------------------------------------------------------------------- /scotty2/msm_sdcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/msm_sdcc.h -------------------------------------------------------------------------------- /scotty2/pbl/dumppbl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/pbl/dumppbl.pl -------------------------------------------------------------------------------- /scotty2/pbl/pbl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/pbl/pbl.pl -------------------------------------------------------------------------------- /scotty2/proc_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/proc_comm.h -------------------------------------------------------------------------------- /scotty2/psneuter/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/psneuter/make -------------------------------------------------------------------------------- /scotty2/psneuter/psneuter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/psneuter/psneuter -------------------------------------------------------------------------------- /scotty2/psneuter/psneuter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/psneuter/psneuter.c -------------------------------------------------------------------------------- /scotty2/psneuter/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/psneuter/run -------------------------------------------------------------------------------- /scotty2/wpthis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/wpthis.c -------------------------------------------------------------------------------- /scotty2/wpthis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/wpthis.h -------------------------------------------------------------------------------- /scotty2/wpthis.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/scotty2/wpthis.ko -------------------------------------------------------------------------------- /tmzt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/Makefile -------------------------------------------------------------------------------- /tmzt/foreign/mod1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod1.c -------------------------------------------------------------------------------- /tmzt/foreign/mod10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod10.c -------------------------------------------------------------------------------- /tmzt/foreign/mod11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod11.c -------------------------------------------------------------------------------- /tmzt/foreign/mod12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod12.c -------------------------------------------------------------------------------- /tmzt/foreign/mod13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod13.c -------------------------------------------------------------------------------- /tmzt/foreign/mod14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod14.c -------------------------------------------------------------------------------- /tmzt/foreign/mod15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod15.c -------------------------------------------------------------------------------- /tmzt/foreign/mod16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod16.c -------------------------------------------------------------------------------- /tmzt/foreign/mod18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod18.c -------------------------------------------------------------------------------- /tmzt/foreign/mod2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod2.c -------------------------------------------------------------------------------- /tmzt/foreign/mod3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod3.c -------------------------------------------------------------------------------- /tmzt/foreign/mod4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod4.c -------------------------------------------------------------------------------- /tmzt/foreign/mod5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod5.c -------------------------------------------------------------------------------- /tmzt/foreign/mod6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod6.c -------------------------------------------------------------------------------- /tmzt/foreign/mod7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod7.c -------------------------------------------------------------------------------- /tmzt/foreign/mod8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod8.c -------------------------------------------------------------------------------- /tmzt/foreign/mod9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/mod9.c -------------------------------------------------------------------------------- /tmzt/foreign/sysfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/foreign/sysfind.c -------------------------------------------------------------------------------- /tmzt/g2/blkops1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/blkops1.c -------------------------------------------------------------------------------- /tmzt/g2/bouncepwrreg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/bouncepwrreg1.c -------------------------------------------------------------------------------- /tmzt/g2/bouncereg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/bouncereg1.c -------------------------------------------------------------------------------- /tmzt/g2/debugsmi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/debugsmi1.c -------------------------------------------------------------------------------- /tmzt/g2/hostoff1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/hostoff1.c -------------------------------------------------------------------------------- /tmzt/g2/hostoff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/hostoff2.c -------------------------------------------------------------------------------- /tmzt/g2/hostoff3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/hostoff3.c -------------------------------------------------------------------------------- /tmzt/g2/rereg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/rereg1.c -------------------------------------------------------------------------------- /tmzt/g2/rereg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/rereg2.c -------------------------------------------------------------------------------- /tmzt/g2/resume1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/resume1.c -------------------------------------------------------------------------------- /tmzt/g2/smidump1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/smidump1.c -------------------------------------------------------------------------------- /tmzt/g2/suspend1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/suspend1.c -------------------------------------------------------------------------------- /tmzt/g2/sysdentry17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/sysdentry17.c -------------------------------------------------------------------------------- /tmzt/g2/unreg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/unreg1.c -------------------------------------------------------------------------------- /tmzt/g2/unreg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/g2/unreg2.c -------------------------------------------------------------------------------- /tmzt/rhod500/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/rhod500/Makefile -------------------------------------------------------------------------------- /tmzt/rhod500/speakeroff1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/rhod500/speakeroff1.c -------------------------------------------------------------------------------- /tmzt/vision/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/Makefile -------------------------------------------------------------------------------- /tmzt/vision/gp12off1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/gp12off1.c -------------------------------------------------------------------------------- /tmzt/vision/gp12off2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/gp12off2.c -------------------------------------------------------------------------------- /tmzt/vision/gpgenoff1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/gpgenoff1.c -------------------------------------------------------------------------------- /tmzt/vision/gpio88onoff1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/gpio88onoff1.c -------------------------------------------------------------------------------- /tmzt/vision/pm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/Makefile -------------------------------------------------------------------------------- /tmzt/vision/pm/cache1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/cache1.S -------------------------------------------------------------------------------- /tmzt/vision/pm/idle1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/idle1.S -------------------------------------------------------------------------------- /tmzt/vision/pm/pm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pm1.c -------------------------------------------------------------------------------- /tmzt/vision/pm/pm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pm2.c -------------------------------------------------------------------------------- /tmzt/vision/pm/pm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pm3.c -------------------------------------------------------------------------------- /tmzt/vision/pm/pm4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pm4.c -------------------------------------------------------------------------------- /tmzt/vision/pm/pm5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pm5.c -------------------------------------------------------------------------------- /tmzt/vision/pm/pm6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pm6.c -------------------------------------------------------------------------------- /tmzt/vision/pm/pmmod1-panic-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pmmod1-panic-1.txt -------------------------------------------------------------------------------- /tmzt/vision/pm/pmmod2-panic-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pmmod2-panic-1.txt -------------------------------------------------------------------------------- /tmzt/vision/pm/pmmod3-output-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pmmod3-output-1.txt -------------------------------------------------------------------------------- /tmzt/vision/pm/pmmod3-output-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pmmod3-output-2.txt -------------------------------------------------------------------------------- /tmzt/vision/pm/pmmod4-output-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pmmod4-output-1.txt -------------------------------------------------------------------------------- /tmzt/vision/pm/pmmod5-hang-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/pmmod5-hang-1.txt -------------------------------------------------------------------------------- /tmzt/vision/pm/smd_private1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/tmzt/vision/pm/smd_private1.h -------------------------------------------------------------------------------- /userspace/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/userspace/test1 -------------------------------------------------------------------------------- /userspace/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmzt/g2root-kmod/HEAD/userspace/test1.c --------------------------------------------------------------------------------