├── .gitignore ├── LICENSE.TXT ├── README.md ├── common_hooks.c ├── common_hooks_verbose.so ├── custom_nvram_r6250.c ├── custom_nvram_r6250.so ├── libacos_shared.so ├── libnvram-armx.so ├── nighthawk_hooks.c ├── nighthawk_hooks.so ├── nighthawk_hooks_verbose.so ├── read_nvram_ini ├── read_nvram_ini.c ├── tenda_hooks.c ├── tenda_hooks.so └── tenda_hooks_verbose.so /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/README.md -------------------------------------------------------------------------------- /common_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/common_hooks.c -------------------------------------------------------------------------------- /common_hooks_verbose.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/common_hooks_verbose.so -------------------------------------------------------------------------------- /custom_nvram_r6250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/custom_nvram_r6250.c -------------------------------------------------------------------------------- /custom_nvram_r6250.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/custom_nvram_r6250.so -------------------------------------------------------------------------------- /libacos_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/libacos_shared.so -------------------------------------------------------------------------------- /libnvram-armx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/libnvram-armx.so -------------------------------------------------------------------------------- /nighthawk_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/nighthawk_hooks.c -------------------------------------------------------------------------------- /nighthawk_hooks.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/nighthawk_hooks.so -------------------------------------------------------------------------------- /nighthawk_hooks_verbose.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/nighthawk_hooks_verbose.so -------------------------------------------------------------------------------- /read_nvram_ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/read_nvram_ini -------------------------------------------------------------------------------- /read_nvram_ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/read_nvram_ini.c -------------------------------------------------------------------------------- /tenda_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/tenda_hooks.c -------------------------------------------------------------------------------- /tenda_hooks.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/tenda_hooks.so -------------------------------------------------------------------------------- /tenda_hooks_verbose.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therealsaumil/custom_nvram/HEAD/tenda_hooks_verbose.so --------------------------------------------------------------------------------