├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README ├── cmake_modules └── Findlibusb-1.0.cmake ├── include ├── config.h.in ├── libnv3p.h ├── libnvfblob.h ├── linux │ ├── libnvusb.h │ └── wheelie_os.h ├── osx │ ├── libnvusb.h │ └── wheelie_os.h ├── payloads.h ├── shared.h ├── wheelie.h └── win32 │ ├── getopt.h │ ├── libnvusb.h │ ├── wheelie_os.h │ └── winusb │ ├── POPPACK.H │ ├── PSHPACK1.H │ ├── usb.h │ ├── usb100.h │ ├── usb200.h │ ├── winusb.h │ └── winusbio.h ├── libnv3p └── libnv3p.c ├── libnvfblob └── libnvfblob.c ├── os └── win32 │ ├── README.txt │ ├── getopt.c │ └── getopt_long.c ├── usb ├── linux │ └── libnvusb.c ├── osx │ └── libnvusb.c └── win32 │ └── libnvusb.c └── wheelie.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/README -------------------------------------------------------------------------------- /cmake_modules/Findlibusb-1.0.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/cmake_modules/Findlibusb-1.0.cmake -------------------------------------------------------------------------------- /include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/config.h.in -------------------------------------------------------------------------------- /include/libnv3p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/libnv3p.h -------------------------------------------------------------------------------- /include/libnvfblob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/libnvfblob.h -------------------------------------------------------------------------------- /include/linux/libnvusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/linux/libnvusb.h -------------------------------------------------------------------------------- /include/linux/wheelie_os.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/osx/libnvusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/osx/libnvusb.h -------------------------------------------------------------------------------- /include/osx/wheelie_os.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/payloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/payloads.h -------------------------------------------------------------------------------- /include/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/shared.h -------------------------------------------------------------------------------- /include/wheelie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/wheelie.h -------------------------------------------------------------------------------- /include/win32/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/getopt.h -------------------------------------------------------------------------------- /include/win32/libnvusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/libnvusb.h -------------------------------------------------------------------------------- /include/win32/wheelie_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/wheelie_os.h -------------------------------------------------------------------------------- /include/win32/winusb/POPPACK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/POPPACK.H -------------------------------------------------------------------------------- /include/win32/winusb/PSHPACK1.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/PSHPACK1.H -------------------------------------------------------------------------------- /include/win32/winusb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/usb.h -------------------------------------------------------------------------------- /include/win32/winusb/usb100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/usb100.h -------------------------------------------------------------------------------- /include/win32/winusb/usb200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/usb200.h -------------------------------------------------------------------------------- /include/win32/winusb/winusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/winusb.h -------------------------------------------------------------------------------- /include/win32/winusb/winusbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/include/win32/winusb/winusbio.h -------------------------------------------------------------------------------- /libnv3p/libnv3p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/libnv3p/libnv3p.c -------------------------------------------------------------------------------- /libnvfblob/libnvfblob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/libnvfblob/libnvfblob.c -------------------------------------------------------------------------------- /os/win32/README.txt: -------------------------------------------------------------------------------- 1 | GetOpt routines ported from BSD-licensed sources, see comments. -------------------------------------------------------------------------------- /os/win32/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/os/win32/getopt.c -------------------------------------------------------------------------------- /os/win32/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/os/win32/getopt_long.c -------------------------------------------------------------------------------- /usb/linux/libnvusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/usb/linux/libnvusb.c -------------------------------------------------------------------------------- /usb/osx/libnvusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/usb/osx/libnvusb.c -------------------------------------------------------------------------------- /usb/win32/libnvusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/usb/win32/libnvusb.c -------------------------------------------------------------------------------- /wheelie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidRoot/wheelie/HEAD/wheelie.c --------------------------------------------------------------------------------