Skip to content

Instantly share code, notes, and snippets.

@alexwahl
alexwahl / crosstool-config-overrides
Created April 26, 2019 19:23
esp8266 pfalcon crosstools-ng overrides
CT_STATIC_TOOLCHAIN=y
CT_LIBC_NEWLIB_ENABLE_TARGET_OPTSPACE=y
CT_GDB_CROSS_EXTRA_CONFIG_ARRAY="--with-guile=guile-2.0"
@alexwahl
alexwahl / dd_with_gzip.md
Created November 12, 2024 11:31
dd with gzip

How to compress and decompress dd raw data trough gzip

This is very usefull when dealing with sd card images :-)

compress

sudo dd if=/dev/<input device> | gzip --best  > backup_sd.img.gz

decompress