Name
nconfig put — Writes a config key
Synopsis
nconfig put <key> <type> <value>
Arguments
The config key, type and the value or data to be written to it.
Description
This command writes a single key to the store. If the key was already present in the store, its existing value is overwritten.
The value of a bool
variable may be specified as
true
,
True
,
t
,
T
,
1
;
false
,
False
,
f
,
F
, or
0
.
Notes | |
---|---|
|
Examples
RedBoot>nconfig put nand.partition1.size uint 100
Written OK RedBoot>nconfig put app1.magic string "This is a string"
Written OK RedBoot>nconfig put baz.qux bool true
Written OK RedBoot>nconfig get baz.qux
baz.qux=True RedBoot>
2024-03-18 | eCosPro Non-Commercial Public License |