mirror of https://github.com/ArduPilot/ardupilot
AP_HAL_ESP32: move generated sdkconfig to build folder
Ensures it gets cleaned with `./waf clean`. Users will hopefully delete and not be confused by the old one as it will now show up as an untracked file.
This commit is contained in:
parent
1b51d6ace3
commit
535f6875a8
|
@ -171,7 +171,3 @@ ENV/
|
|||
env.bak/
|
||||
venv.bak/
|
||||
autotest_result_*_junit.xml
|
||||
|
||||
# Ignore ESP-IDF SDK defines
|
||||
/libraries/AP_HAL_ESP32/targets/esp32/esp-idf/sdkconfig
|
||||
/libraries/AP_HAL_ESP32/targets/esp32s3/esp-idf/sdkconfig
|
||||
|
|
|
@ -86,7 +86,7 @@ press [tab] then enter on the [exit] box to exit the app
|
|||
done. the 'sdkconfig' file in this folder should have been updated
|
||||
cd ../../../..
|
||||
|
||||
If you want to make changes to sdkconfig (sdkconfig is in git ignore list) permanent and to commit them back in git, you should edit sdkconfig.defaults manually or to use ninja save-defconfig tool after menuconfig.
|
||||
If you want to make changes to sdkconfig (sdkconfig is in the build dir) permanent and to commit them back in git, you should edit sdkconfig.defaults manually or use ninja save-defconfig tool after menuconfig and replace sdkconfig.defaults with defconfig.
|
||||
|
||||
5. Recommanded way to flash the firmware :
|
||||
```
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
/sdkconfig.old
|
||||
/board.txt
|
|
@ -28,8 +28,9 @@ idf_build_process(esp32
|
|||
esp_system
|
||||
esp_rom
|
||||
esp_timer
|
||||
|
||||
SDKCONFIG ${CMAKE_CURRENT_LIST_DIR}/sdkconfig
|
||||
|
||||
# treat sdkconfig as build product generated by the defaults
|
||||
SDKCONFIG ${CMAKE_BINARY_DIR}/sdkconfig
|
||||
SDKCONFIG_DEFAULTS ${CMAKE_CURRENT_LIST_DIR}/sdkconfig.defaults
|
||||
BUILD_DIR ${CMAKE_BINARY_DIR})
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
/sdkconfig.old
|
||||
/board.txt
|
|
@ -29,7 +29,8 @@ idf_build_process(esp32s3
|
|||
esp_rom
|
||||
esp_timer
|
||||
|
||||
SDKCONFIG ${CMAKE_CURRENT_LIST_DIR}/sdkconfig
|
||||
# treat sdkconfig as build product generated by the defaults
|
||||
SDKCONFIG ${CMAKE_BINARY_DIR}/sdkconfig
|
||||
SDKCONFIG_DEFAULTS ${CMAKE_CURRENT_LIST_DIR}/sdkconfig.defaults
|
||||
BUILD_DIR ${CMAKE_BINARY_DIR}
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue