Skip to content
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: 2 additions & 1 deletion iot/abup_fota/Kconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Kconfig file for package abup_fota
menuconfig PKG_USING_ABUP_FOTA
bool "abup_fota: The firmware downloader which using on Abup FOTA component"
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
default n

if PKG_USING_ABUP_FOTA
Expand Down
3 changes: 2 additions & 1 deletion iot/iot_cloud/ucloud_iot_sdk/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ if PKG_USING_UCLOUD_IOT_SDK
bool "Enable Ota"
depends on PKG_USING_UCLOUD_MQTT
default n
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100

config PKG_USING_UCLOUD_OTA_SAMPLE
bool "Enable Ucloud Ota Sample"
Expand Down
3 changes: 2 additions & 1 deletion iot/ota_downloader/Kconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Kconfig file for package ota_downloader
menuconfig PKG_USING_OTA_DOWNLOADER
bool "ota_downloader: The firmware downloader which using on RT-Thread OTA component"
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
default n

if PKG_USING_OTA_DOWNLOADER
Expand Down
3 changes: 2 additions & 1 deletion misc/uparam/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# Kconfig file for package uparam
menuconfig PKG_USING_UPARAM
bool "uparam: Manage system parameters with FLASH"
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
default n

if PKG_USING_UPARAM
Expand Down
3 changes: 2 additions & 1 deletion system/FlashDB/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ if PKG_USING_FLASHDB
config FDB_USING_FAL_MODE
bool
prompt "Using FAL storage mode"
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
default y

if FDB_USING_FAL_MODE
Expand Down
1 change: 1 addition & 0 deletions system/fal/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

# Kconfig file for package fal
menuconfig PKG_USING_FAL
depends on RT_VER_NUM < 0x40100
bool "fal: Flash Abstraction Layer implement. Manage flash device and partition."
select RT_USING_LIBC if (PKG_FAL_VER_NUM <= 0x00300 && RT_VER_NUM < 0x40100)
default n
Expand Down
3 changes: 2 additions & 1 deletion system/qboot/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

menuconfig PKG_USING_QBOOT
bool "qboot : A component used to make bootloader quickly"
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
select PKG_USING_CRCLIB
default n

Expand Down
3 changes: 2 additions & 1 deletion tools/ChineseFontLibrary/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
menuconfig PKG_USING_CHINESE_FONT_LIBRARY
bool "Chinese_Font_Library: a Chinese font library for rt-thread"
default n
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
select FAL_USING_SFUD_PORT
if PKG_USING_CHINESE_FONT_LIBRARY

Expand Down
3 changes: 2 additions & 1 deletion tools/CmBacktrace/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ if PKG_USING_CMBACKTRACE
bool
prompt "Save the log to FAL flash partition"
default n
select PKG_USING_FAL
select PKG_USING_FAL if RT_VER_NUM < 0x40100
select RT_USING_FAL if RT_VER_NUM >= 0x40100
help
The log will save to the FAL flash partition when case hardfault and assert.

Expand Down