Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flash_driver: fix the component manager url #3

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions esp_flash_nor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ if(BOOTLOADER_BUILD)
idf_component_register(SRCS "bootloader_flash_driver/bootloader_flash_custom.c"
PRIV_REQUIRES bootloader_support spi_flash
INCLUDE_DIRS bootloader_flash_driver/include
INCLUDE_DIRS ""
LDFRAGMENTS linker.lf)
INCLUDE_DIRS "")
else()
idf_component_register(SRCS
"app_flash_driver/esp_flash_eon/spi_flash_chip_eon.c"
Expand Down
4 changes: 2 additions & 2 deletions esp_flash_nor/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: "0.0.1"
version: "0.0.2"
description: "Component of 3rd party NOR flash drivers"
url: https://github.com/espressif/esp-flash-drivers/esp_flash_nor
url: https://github.com/espressif/esp-flash-drivers
dependencies:
idf:
version: ">=5.0"
3 changes: 2 additions & 1 deletion esp_flash_nor/linker.lf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[mapping:custom_flash_driver]
archive: libcustom_flash_driver.a
entries:
spi_flash_chip_eon (noflash)
if APP_BUILD_TYPE_PURE_RAM_APP = n:
spi_flash_chip_eon (noflash)
Loading