Esp8266 specify the partition table

Hi,

I would like a specific esp8266 (e.g. esp8266-esp-12x) to always use a specific partition table. Using the command line I can specify the partition table as:

BOARD=esp8266-esp-12x PARTITION_TABLE_CSV=partition.csv make

I would like the specific board to always use this partition table and added it to the board directory. What do I need to insert in the Makefile of the board to use this table?

Thanks

1 Like

Found it:

PARTITION_TABLE_CSV = $(RIOTBOARD)/esp8266-esp-12x/partitions.csv

in Makefile.include in the board directory.

2 Likes