├── README.md ├── firmup.sln ├── firmup ├── app.c ├── app.h ├── bootstrap.c ├── bootstrap.h ├── entry.c ├── firmup.vcxproj ├── firmup.vcxproj.filters ├── firmup.vcxproj.user ├── flash64.c ├── flash64.h ├── hde64.c ├── hde64.h ├── hdet64.h ├── kpsb.c ├── kpsb.h ├── ksup.c ├── ksup.h ├── paging.c ├── paging.h ├── runtime.c ├── runtime.h └── startblock.h ├── shared └── phnt │ ├── ntdbg.h │ ├── ntexapi.h │ ├── ntgdi.h │ ├── ntioapi.h │ ├── ntkeapi.h │ ├── ntldr.h │ ├── ntlpcapi.h │ ├── ntmisc.h │ ├── ntmmapi.h │ ├── ntnls.h │ ├── ntobapi.h │ ├── ntpebteb.h │ ├── ntpfapi.h │ ├── ntpnpapi.h │ ├── ntpoapi.h │ ├── ntpsapi.h │ ├── ntregapi.h │ ├── ntrtl.h │ ├── ntsam.h │ ├── ntseapi.h │ ├── ntsmss.h │ ├── nttmapi.h │ ├── nttp.h │ ├── ntwow64.h │ ├── ntxcapi.h │ ├── ntzwapi.h │ ├── phnt.h │ ├── phnt_ntdef.h │ ├── phnt_windows.h │ ├── subprocesstag.h │ └── winsta.h └── x64 └── Release └── firmup.exe /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/README.md -------------------------------------------------------------------------------- /firmup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup.sln -------------------------------------------------------------------------------- /firmup/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/app.c -------------------------------------------------------------------------------- /firmup/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/app.h -------------------------------------------------------------------------------- /firmup/bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/bootstrap.c -------------------------------------------------------------------------------- /firmup/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/bootstrap.h -------------------------------------------------------------------------------- /firmup/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/entry.c -------------------------------------------------------------------------------- /firmup/firmup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/firmup.vcxproj -------------------------------------------------------------------------------- /firmup/firmup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/firmup.vcxproj.filters -------------------------------------------------------------------------------- /firmup/firmup.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/firmup.vcxproj.user -------------------------------------------------------------------------------- /firmup/flash64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/flash64.c -------------------------------------------------------------------------------- /firmup/flash64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/flash64.h -------------------------------------------------------------------------------- /firmup/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/hde64.c -------------------------------------------------------------------------------- /firmup/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/hde64.h -------------------------------------------------------------------------------- /firmup/hdet64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/hdet64.h -------------------------------------------------------------------------------- /firmup/kpsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/kpsb.c -------------------------------------------------------------------------------- /firmup/kpsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/kpsb.h -------------------------------------------------------------------------------- /firmup/ksup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/ksup.c -------------------------------------------------------------------------------- /firmup/ksup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/ksup.h -------------------------------------------------------------------------------- /firmup/paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/paging.c -------------------------------------------------------------------------------- /firmup/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/paging.h -------------------------------------------------------------------------------- /firmup/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/runtime.c -------------------------------------------------------------------------------- /firmup/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/runtime.h -------------------------------------------------------------------------------- /firmup/startblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/firmup/startblock.h -------------------------------------------------------------------------------- /shared/phnt/ntdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntdbg.h -------------------------------------------------------------------------------- /shared/phnt/ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntexapi.h -------------------------------------------------------------------------------- /shared/phnt/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntgdi.h -------------------------------------------------------------------------------- /shared/phnt/ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntioapi.h -------------------------------------------------------------------------------- /shared/phnt/ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntkeapi.h -------------------------------------------------------------------------------- /shared/phnt/ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntldr.h -------------------------------------------------------------------------------- /shared/phnt/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntlpcapi.h -------------------------------------------------------------------------------- /shared/phnt/ntmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntmisc.h -------------------------------------------------------------------------------- /shared/phnt/ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntmmapi.h -------------------------------------------------------------------------------- /shared/phnt/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntnls.h -------------------------------------------------------------------------------- /shared/phnt/ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntobapi.h -------------------------------------------------------------------------------- /shared/phnt/ntpebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntpebteb.h -------------------------------------------------------------------------------- /shared/phnt/ntpfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntpfapi.h -------------------------------------------------------------------------------- /shared/phnt/ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntpnpapi.h -------------------------------------------------------------------------------- /shared/phnt/ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntpoapi.h -------------------------------------------------------------------------------- /shared/phnt/ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntpsapi.h -------------------------------------------------------------------------------- /shared/phnt/ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntregapi.h -------------------------------------------------------------------------------- /shared/phnt/ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntrtl.h -------------------------------------------------------------------------------- /shared/phnt/ntsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntsam.h -------------------------------------------------------------------------------- /shared/phnt/ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntseapi.h -------------------------------------------------------------------------------- /shared/phnt/ntsmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntsmss.h -------------------------------------------------------------------------------- /shared/phnt/nttmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/nttmapi.h -------------------------------------------------------------------------------- /shared/phnt/nttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/nttp.h -------------------------------------------------------------------------------- /shared/phnt/ntwow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntwow64.h -------------------------------------------------------------------------------- /shared/phnt/ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntxcapi.h -------------------------------------------------------------------------------- /shared/phnt/ntzwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/ntzwapi.h -------------------------------------------------------------------------------- /shared/phnt/phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/phnt.h -------------------------------------------------------------------------------- /shared/phnt/phnt_ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/phnt_ntdef.h -------------------------------------------------------------------------------- /shared/phnt/phnt_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/phnt_windows.h -------------------------------------------------------------------------------- /shared/phnt/subprocesstag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/subprocesstag.h -------------------------------------------------------------------------------- /shared/phnt/winsta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/shared/phnt/winsta.h -------------------------------------------------------------------------------- /x64/Release/firmup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dro/dell-flash64w-eop/HEAD/x64/Release/firmup.exe --------------------------------------------------------------------------------