Skip to content

Commit

Permalink
Arg - why was this removed
Browse files Browse the repository at this point in the history
  • Loading branch information
revk committed Sep 25, 2023
1 parent 61f5805 commit 6d10c24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buildsuffix
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ if(! -e "$SDKCONFIG") then
endif

# ensure date/time set
touch "${IDF_PATH}/components/app_update/esp_app_desc.c"

grep -q CONFIG_IDF_TARGET_ESP8266=y "$SDKCONFIG"
if (! $status) then
# 8266 variants: -8266 -8266-4M
setenv SUFFIX "$SUFFIX-8266"
grep -q partitions_4m "$SDKCONFIG"
if(! $status) setenv SUFFIX "$SUFFIX-4M"
touch "${IDF_PATH}/components/app_update/esp_app_desc.c"
else
touch "${IDF_PATH}/components/esp_app_format/esp_app_desc.c"
endif

grep -q CONFIG_IDF_TARGET_ESP32=y "$SDKCONFIG"
Expand Down

0 comments on commit 6d10c24

Please sign in to comment.