forked from Samsung/TizenRT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
os:Kconfig Add new menuconfigs(Runtime, Device Manage)
- Loading branch information
1 parent
fe787c0
commit 121a464
Showing
5 changed files
with
62 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# | ||
# For a description of the syntax of this configuration file, | ||
# see kconfig-language at https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt | ||
# | ||
|
||
config DM | ||
bool "DM" | ||
default n | ||
depends on NET | ||
select LWM2M_WAKAAMA | ||
---help--- | ||
enable the DM functionality | ||
|
||
if DM | ||
menuconfig DM_WIFI | ||
bool "Set Up Wifi Info For DM Demo" | ||
default y | ||
---help--- | ||
Enable the artik demo example | ||
|
||
if DM_WIFI | ||
|
||
config DM_AP_SSID | ||
string "wifi ap ssid" | ||
default "SSID" | ||
|
||
config DM_AP_PASS | ||
string "wifi ap password" | ||
default "PASSWORD" | ||
|
||
config DM_AP_SECURITY | ||
string "wifi join security" | ||
default "wpa2_aes" | ||
|
||
endif #DM_WIFI | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# For a description of the syntax of this configuration file, | ||
# see kconfig-language at https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt | ||
# | ||
|
||
source ../framework/src/dm/Kconfig | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# | ||
# For a description of the syntax of this configuration file, | ||
# see kconfig-language at https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt | ||
# | ||
|