├── .gitignore ├── COPYING ├── Makefile ├── README ├── eyefi-chdk.c ├── eyefi-config.c ├── eyefi-config.h ├── eyefi-firmware-fetch.pl ├── eyefi-freebsd.c ├── eyefi-linux.c ├── eyefi-osx.c ├── eyefi-unix.c ├── md5.c └── sha1.c /.gitignore: -------------------------------------------------------------------------------- 1 | /*.o 2 | /eyefi-config 3 | +*~ 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/README -------------------------------------------------------------------------------- /eyefi-chdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-chdk.c -------------------------------------------------------------------------------- /eyefi-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-config.c -------------------------------------------------------------------------------- /eyefi-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-config.h -------------------------------------------------------------------------------- /eyefi-firmware-fetch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-firmware-fetch.pl -------------------------------------------------------------------------------- /eyefi-freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-freebsd.c -------------------------------------------------------------------------------- /eyefi-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-linux.c -------------------------------------------------------------------------------- /eyefi-osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-osx.c -------------------------------------------------------------------------------- /eyefi-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/eyefi-unix.c -------------------------------------------------------------------------------- /md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/md5.c -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansendc/eyefi-config/HEAD/sha1.c --------------------------------------------------------------------------------