Lines Matching full:echo
25 @echo "Welcome to Espressif IDF build system. Some useful make targets:"
26 @echo ""
27 @echo "make menuconfig - Configure IDF project"
28 @echo "make defconfig - Set defaults for all new configuration options"
29 @echo ""
30 @echo "make all - Build app, bootloader, partition table"
31 @echo "make flash - Flash app, bootloader, partition table to a chip"
32 @echo "make clean - Remove all build output"
33 @echo "make size - Display the static memory footprint of the app"
34 @echo "make size-components, size-files - Finer-grained memory footprints"
35 @echo "make size-symbols - Per symbol memory footprint. Requires COMPONENT=<component>"
36 @echo "make erase_flash - Erase entire flash contents"
37 …@echo "make erase_otadata - Erase ota_data partition; First bootable partition (factory or OTAx) w…
38 …@echo " This assumes this project's partition table is the one flashed on the …
39 @echo "make monitor - Run idf_monitor tool to monitor serial output from app"
40 @echo "make simple_monitor - Monitor serial output on terminal console"
41 @echo "make list-components - List all components in the project"
42 @echo ""
43 @echo "make app - Build just the app"
44 @echo "make app-flash - Flash just the app"
45 @echo "make app-clean - Clean just the app"
46 @echo "make print_flash_cmd - Print the arguments for esptool when flash"
47 @echo "make check_python_dependencies - Check that the required python packages are installed"
48 @echo ""
49 @echo "See also 'make bootloader', 'make bootloader-flash', 'make bootloader-clean', "
50 @echo "'make partition_table', etc, etc."
322 …@echo "(Secure boot enabled, so bootloader not flashed automatically. See 'make bootloader' output…
325 @echo "App built but not signed. Sign app & partition data before flashing, via espsecure.py:"
326 @echo "espsecure.py sign_data --version 1 --keyfile KEYFILE $(APP_BIN)"
327 @echo "espsecure.py sign_data --version 1 --keyfile KEYFILE $(PARTITION_TABLE_BIN)"
329 @echo "App built but not signed. Sign app & partition data before flashing, via espsecure.py:"
330 @echo "espsecure.py sign_data --version 2 --keyfile KEYFILE $(APP_BIN)"
333 @echo "To flash app & partition table, run 'make flash' or:"
336 @echo "To flash all build output, run 'make flash' or:"
340 @echo $(ESPTOOLPY_WRITE_FLASH) $(ESPTOOL_ALL_FLASH_ARGS)
342 @echo "Binary is not available for flashing"
352 IDF_VER := $(shell echo "$(IDF_VER_T)" | cut -c 1-31)
586 @echo "App built but not signed. Signing step via espsecure.py:"
587 @echo "espsecure.py sign_data --version $(SECURE_APPS_SIGNING_SCHEME) --keyfile KEYFILE $(APP_BIN)"
588 @echo "Then flash app command is:"
589 @echo $(ESPTOOLPY_WRITE_FLASH) $(APP_OFFSET) $(APP_BIN)
591 @echo "App built. Default flash app command is:"
592 @echo $(ESPTOOLPY_WRITE_FLASH) $(APP_OFFSET) $(APP_BIN)
595 @echo "Application in not built and cannot be flashed."
636 $(details) "Target '$$^' responsible for '$$@'" # echo which build target built this file
690 @echo "skip submodule check on internal CI"
703 @echo "WARNING: Missing submodule $(1)..."
704 [ -e ${IDF_PATH}/.git ] || { echo "ERROR: esp-idf must be cloned from git to work."; exit 1; }
705 …[ -x "$(shell which git)" ] || { echo "ERROR: Need to run 'git submodule init $(1)' in esp-idf roo…
706 @echo "Attempting 'git submodule update --init $(1)' in esp-idf root directory..."
738 echo $(ESPTOOL_WRITE_FLASH_OPTIONS) $(ESPTOOL_ALL_FLASH_ARGS) | sed -e 's:'$(PWD)/build/'::g'