8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
20 lines
433 B
Nix
20 lines
433 B
Nix
{ lib, mkspiffs }:
|
|
|
|
# We provide the same presets as the upstream
|
|
|
|
lib.mapAttrs (
|
|
name: { CPPFLAGS }:
|
|
mkspiffs.overrideAttrs (drv: {
|
|
inherit CPPFLAGS;
|
|
BUILD_CONFIG_NAME = "-${name}";
|
|
})
|
|
) {
|
|
arduino-esp8266.CPPFLAGS = [
|
|
"-DSPIFFS_USE_MAGIC_LENGTH=0"
|
|
"-DSPIFFS_ALIGNED_OBJECT_INDEX_TABLES=1"
|
|
];
|
|
|
|
arduino-esp32.CPPFLAGS = [ "-DSPIFFS_OBJ_META_LEN=4" ];
|
|
|
|
esp-idf.CPPFLAGS = [ "-DSPIFFS_OBJ_META_LEN=4" ];
|
|
}
|