15
15
#
16
16
17
17
18
- # Create a JSON file based on factory data given via kConfigs.
18
+ # Create a .hex file in CBOR format based on factory data given via kConfigs.
19
19
#
20
20
# This function creates a list of arguments for external script and then run it to write a JSON file.
21
21
# Created JSON file can be checked using JSON SCHEMA file if it is provided.
22
+ # Next the result .hex file is generated based on previously created JSON file.
22
23
#
23
24
# This script can be manipulated using following kConfigs:
24
25
# - To merge generated factory data with final zephyr.hex file set kConfig CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE=y
25
26
# - To use default certification paths set CONFIG_CHIP_FACTORY_DATA_USE_DEFAULTS_CERTS_PATH=y
26
27
#
27
28
# During generation process a some file will be created in zephyr's build directory:
28
29
# - <factory_data_target>.json a file containing all factory data written in JSON format.
30
+ # - <factory_data_target>.hex a file containing all factory data in CBOR format.
31
+ # - <factory_data_target>.bin a binary file containing all raw factory data in CBOR format.
32
+ # - <factory_data_target>.cbor a file containing all factory data in CBOR format.
29
33
#
30
34
# [Args]:
31
35
# factory_data_target - a name for target to generate factory_data.
32
36
# script_path - a path to script that makes a JSON factory data file from given arguments.
33
37
# schema_path - a path to JSON schema file which can be used to verify generated factory data JSON file.
34
38
# This argument is optional, if you don't want to verify the JSON file put it empty "".
35
- # output_path - a path to output directory, where created JSON file will be stored.
36
- function (nrfconnect_create_factory_data_json factory_data_target script_path schema_path output_path)
39
+ # output_path - a path to output directory, where created hex and JSON files will be stored.
40
+ function (nrfconnect_create_factory_data factory_data_target script_path schema_path output_path)
37
41
38
42
# set script args for future purpose
39
43
set (script_args)
@@ -120,62 +124,25 @@ if(CONFIG_CHIP_DEVICE_ENABLE_KEY)
120
124
string (APPEND script_args "--enable_key \" ${CONFIG_CHIP_DEVICE_ENABLE_KEY} \"\n " )
121
125
endif ()
122
126
123
- # Set output JSON file and path to SCHEMA file to validate generated factory data
124
- set (factory_data_json ${output_path} /${factory_data_target} .json )
125
- string (APPEND script_args "-o \" ${factory_data_json } \"\n " )
127
+ # Set output path and path to SCHEMA file to validate generated factory data
128
+ set (factory_data_output_path ${output_path} /${factory_data_target} )
129
+ string (APPEND script_args "-o \" ${factory_data_output_path } \"\n " )
126
130
string (APPEND script_args "-s \" ${schema_path} \"\n " )
127
131
132
+ # Add optional offset and size arguments to generate .hex file as well as .json.
133
+ string (APPEND script_args "--offset $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_ADDRESS>\n " )
134
+ string (APPEND script_args "--size $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_OFFSET>\n " )
135
+
128
136
# execute first script to create a JSON file
129
137
separate_arguments (separated_script_args NATIVE_COMMAND ${script_args} )
130
138
add_custom_command (
131
- OUTPUT ${factory_data_json}
139
+ OUTPUT ${factory_data_output_path} .hex
132
140
DEPENDS ${FACTORY_DATA_SCRIPT_PATH}
133
141
COMMAND ${Python3_EXECUTABLE} ${FACTORY_DATA_SCRIPT_PATH} ${separated_script_args}
134
142
COMMENT "Generating new Factory Data..."
135
143
)
136
144
add_custom_target (${factory_data_target} ALL
137
- DEPENDS ${factory_data_json}
138
- )
139
-
140
- endfunction ()
141
-
142
-
143
- # Create a .hex file with factory data in CBOR format.
144
- #
145
- # This function creates a .hex and .cbor files from given JSON factory data file.
146
- #
147
- #
148
- # During generation process some files will be created in zephyr's build directory:
149
- # - <factory_data_target>.hex a file containing all factory data in CBOR format.
150
- # - <factory_data_target>.bin a binary file containing all raw factory data in CBOR format.
151
- # - <factory_data_target>.cbor a file containing all factory data in CBOR format.
152
- #
153
- # [Args]:
154
- # factory_data_hex_target - a name for target to generate factory data HEX file.
155
- # factory_data_target - a name for target to generate factory data JSON file.
156
- # script_path - a path to script that makes a factory data .hex file from given arguments.
157
- # output_path - a path to output directory, where created JSON file will be stored.
158
- function (nrfconnect_create_factory_data_hex_file factory_data_hex_target factory_data_target script_path output_path)
159
-
160
- # Pass the argument list via file
161
- set (cbor_script_args "-i ${output_path} /${factory_data_target} .json\n " )
162
- string (APPEND cbor_script_args "-o ${output_path} /${factory_data_target} \n " )
163
- # get partition address and offset from partition manager during compilation
164
- string (APPEND cbor_script_args "--offset $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_ADDRESS>\n " )
165
- string (APPEND cbor_script_args "--size $<TARGET_PROPERTY:partition_manager,PM_FACTORY_DATA_OFFSET>\n " )
166
- string (APPEND cbor_script_args "-r\n " )
167
-
168
- # execute second script to create a hex file containing factory data in cbor format
169
- separate_arguments (separated_cbor_script_args NATIVE_COMMAND ${cbor_script_args} )
170
- set (factory_data_hex ${output_path} /${factory_data_target} .hex)
171
-
172
- add_custom_command (OUTPUT ${factory_data_hex}
173
- COMMAND ${Python3_EXECUTABLE} ${script_path} ${separated_cbor_script_args}
174
- COMMENT "Generating factory data HEX file..."
175
- DEPENDS ${factory_data_target} ${script_path}
176
- )
177
- add_custom_target (${factory_data_hex_target}
178
- DEPENDS ${factory_data_hex}
145
+ DEPENDS ${factory_data_output_path} .hex
179
146
)
180
147
181
148
endfunction ()
@@ -202,22 +169,16 @@ set(GENERATE_CBOR_SCRIPT_PATH ${CHIP_ROOT}/scripts/tools/nrfconnect/nrfconnect_g
202
169
set (FACTORY_DATA_SCHEMA_PATH ${CHIP_ROOT} /scripts/tools/nrfconnect/nrfconnect_factory_data.schema)
203
170
set (OUTPUT_FILE_PATH ${APPLICATION_BINARY_DIR} /zephyr)
204
171
205
- # create a JSON file with all factory data
206
- nrfconnect_create_factory_data_json(factory_data
207
- ${FACTORY_DATA_SCRIPT_PATH}
208
- ${FACTORY_DATA_SCHEMA_PATH}
209
- ${OUTPUT_FILE_PATH} )
210
-
211
172
# create a .hex file with factory data in CBOR format based on the JSON file created previously
212
- nrfconnect_create_factory_data_hex_file(factory_data_hex
213
- factory_data
214
- ${GENERATE_CBOR_SCRIPT_PATH }
215
- ${OUTPUT_FILE_PATH} )
173
+ nrfconnect_create_factory_data(factory_data
174
+ ${FACTORY_DATA_SCRIPT_PATH}
175
+ ${FACTORY_DATA_SCHEMA_PATH }
176
+ ${OUTPUT_FILE_PATH} )
216
177
217
178
if (CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE)
218
179
# set custom target for merging factory_data hex file
219
180
set_property (GLOBAL PROPERTY factory_data_PM_HEX_FILE ${OUTPUT_FILE_PATH} /factory_data.hex)
220
- set_property (GLOBAL PROPERTY factory_data_PM_TARGET factory_data_hex )
181
+ set_property (GLOBAL PROPERTY factory_data_PM_TARGET factory_data )
221
182
endif ()
222
183
223
184
0 commit comments