From be2a92467432753e1c1229e009fe46f2a5803360 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Thu, 4 Nov 2021 15:28:07 +0100 Subject: [PATCH] Build & config: Remove the "make" build system The "make" build system was deprecated in v4.0 in favor of idf.py (cmake). The remaining support is removed in v5.0. * Original commit: espressif/esp-idf@9c1d4f5b549d6a7125e5c7c323c80d37361991cb --- components/mdns/test_afl_fuzz_host/sdkconfig.h | 2 -- examples/protocols/mdns/README.md | 1 - 2 files changed, 3 deletions(-) diff --git a/components/mdns/test_afl_fuzz_host/sdkconfig.h b/components/mdns/test_afl_fuzz_host/sdkconfig.h index e09b70b80..ce264888c 100644 --- a/components/mdns/test_afl_fuzz_host/sdkconfig.h +++ b/components/mdns/test_afl_fuzz_host/sdkconfig.h @@ -3,7 +3,6 @@ * Espressif IoT Development Framework (ESP-IDF) Configuration Header */ #pragma once -#define CONFIG_IDF_CMAKE 1 #define CONFIG_IDF_TARGET "esp32" #define CONFIG_IDF_TARGET_ESP32 1 #define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 @@ -21,7 +20,6 @@ #define CONFIG_BOOTLOADER_WDT_ENABLE 1 #define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 #define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 -#define CONFIG_ESPTOOLPY_BAUD_OTHER_VAL 115200 #define CONFIG_ESPTOOLPY_WITH_STUB 1 #define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 #define CONFIG_ESPTOOLPY_FLASHMODE "dio" diff --git a/examples/protocols/mdns/README.md b/examples/protocols/mdns/README.md index e6644d5e5..b66cebc57 100644 --- a/examples/protocols/mdns/README.md +++ b/examples/protocols/mdns/README.md @@ -16,7 +16,6 @@ Shows how to use mDNS to advertise lookup services and hosts * Open the project configuration menu (`idf.py menuconfig`) * Configure Wi-Fi or Ethernet under "Example Connection Configuration" menu. See "Establishing Wi-Fi or Ethernet Connection" section in [examples/protocols/README.md](../README.md) for more details. -* When using Make build system, set `Default serial port` under `Serial flasher config`. * Set `mDNS Hostname` as host name prefix for the device and its instance name in `mDNS Instance Name` * Disable `Resolve test services` to prevent the example from querying defined names/services on startup (cause warnings in example logs, as illustrated below)