Skip to content

Commit e8e6f27

Browse files
committed
[nrf toup][Zephyr] Change native_posix_64 to native_posix/native/64
native_posix_64 board has been removed from Zephyr. Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no>
1 parent 2b20c79 commit e8e6f27

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

config/nrfconnect/chip-module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ endif()
196196

197197
if (BOARD STREQUAL "native_posix")
198198
matter_add_gn_arg_string("target_cpu" "x86")
199-
elseif (BOARD STREQUAL "native_posix_64")
199+
elseif (BOARD STREQUAL "native_posix/native/64")
200200
matter_add_gn_arg_string("target_cpu" "x64")
201201
endif()
202202

config/nxp/chip-module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ endif()
132132

133133
# if (BOARD STREQUAL "native_posix")
134134
# matter_add_gn_arg_string("target_cpu" "x86")
135-
# elseif (BOARD STREQUAL "native_posix_64")
135+
# elseif (BOARD STREQUAL "native_posix/native/64")
136136
# matter_add_gn_arg_string("target_cpu" "x64")
137137
# endif()
138138

config/zephyr/chip-module/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ if(CONFIG_CHIP)
110110

111111
if(BOARD STREQUAL "native_posix")
112112
matter_add_gn_arg_string("target_cpu" "x86")
113-
elseif(BOARD STREQUAL "native_posix_64")
113+
elseif(BOARD STREQUAL "native_posix/native/64")
114114
matter_add_gn_arg_string("target_cpu" "x64")
115115
endif()
116116

scripts/build/builders/nrf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def GnArgName(self):
128128
elif self == NrfBoard.NRF5340DK:
129129
return 'nrf5340dk_nrf5340_cpuapp'
130130
elif self == NrfBoard.NATIVE_POSIX_64:
131-
return 'native_posix_64'
131+
return 'native_posix/native/64'
132132
else:
133133
raise Exception('Unknown board type: %r' % self)
134134

src/test_driver/nrfconnect/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# @file
1919
# CMake project for building and running selected CHIP unit tests using
2020
# 'nrfconnect' platform integration layer in CHIP and Zephyr
21-
# 'native_posix[_64]' platforms. Note that certain design decisions behind
21+
# 'native_posix[/native/64]' platforms. Note that certain design decisions behind
2222
# the native_posix platforms make them inapplicable for some unit tests,
2323
# hence only a subset of CHIP unit tests is listed in the project.
2424
# See: https://docs.zephyrproject.org/1.12.0/boards/posix/native_posix/doc/board.html

0 commit comments

Comments
 (0)