isavitsky

Results 5 comments of isavitsky

`make htmlflash` works only for `OUTPUT_TYPE=separate`. If you have `OUTPUT_TYPE=ota` use `make clean all flash`. After that you can do `make clean all httpflash`.

Check if `ESP_SPI_FLASH_SIZE_K=` variable and other parameters are set to the correct values. I have to say that `httpflash` works for me only if I do `make clean all` after...

I think `make flash` should be enough. Also I replaced this section in `user_man.c:` ```c #ifdef OTA_FLASH_SIZE_K CgiUploadFlashDef uploadParams={ .type=CGIFLASH_TYPE_FW, .fw1Pos=0x1000, #if OTA_FLASH_SIZE_K < 2049 .fw2Pos=((OTA_FLASH_SIZE_K*1024)/2)+0x1000, .fwSize=((OTA_FLASH_SIZE_K*1024)/2)-0x1000, #else .fw2Pos=0x101000, .fwSize=0xFF000,...

Hi, taher143, For httpflash to work under linux you must set ESPIP. An example shell command: ` export ESPIP=192.168.4.1 ` After flashing you could get: ``` jump to run user2...

I've conducted a few tests on two akvorado VMs (patched and unpatched) and can now confirm that my patch **is ineffective** against OOM events when containers get killed due to...