Merge branch 'bugfix/bootloader_include_priv' into 'master'

bootloader_support: Rename include_priv directory to include_bootloader

See merge request idf/esp-idf!2686
This commit is contained in:
Angus Gratton 2018-07-23 18:50:35 +08:00
commit 0905aa0103
8 changed files with 4 additions and 4 deletions

View file

@ -1,10 +1,10 @@
COMPONENT_ADD_INCLUDEDIRS := include
COMPONENT_PRIV_INCLUDEDIRS := include_priv
ifdef IS_BOOTLOADER_BUILD
# share "private" headers with the bootloader component
# eventual goal: all functionality that needs this lives in bootloader_support
COMPONENT_ADD_INCLUDEDIRS += include_priv
# share "include_bootloader" headers with bootloader main component
COMPONENT_ADD_INCLUDEDIRS += include_bootloader
else
COMPONENT_PRIV_INCLUDEDIRS := include_bootloader
endif
COMPONENT_SRCDIRS := src