1:orphan:
2
3.. _zephyr_1.10:
4
5Zephyr Kernel 1.10.0
6#####################
7
8We are pleased to announce the release of Zephyr kernel version 1.10.0.
9
10Major enhancements with this release include:
11
12* Initial alpha-quality thread-level memory protection on x86, userspace and memory
13  domains
14* Major overhaul to the build system and a switch from Kbuild to CMake.
15* Newtron Flash Filesystem (NFFS) Support
16* Increased testsuite coverage and migrated majority of testcases to use ztest
17* Integration with MCUBOOT Bootloader
18* Additional SoC, platform and driver support for many of the already supported
19  platforms.
20
21The following sections provide detailed lists of changes by component.
22
23Kernel
24******
25
26* Remove deprecated k_mem_pool_defrag code
27* Initial alpha-quality thread-level memory protection on x86, userspace and memory
28  domains:
29
30  * Same kernel & driver APIs for kernel and user mode threads
31  * System calls for privilege elevation
32  * Stack overflow protection
33  * Kernel object and device driver permission tracking
34  * Simple app vs. kernel memory separation
35  * Memory domain APIs for fine-tuning memory region permissions
36  * Stack memory protection from other threads
37
38* Add the following application-facing memory domain APIs:
39
40  * k_mem_domain_init() - to initialize a memory domain
41  * k_mem_domain_destroy() - to destroy a memory domain
42  * k_mem_domain_add_partition() - to add a partition into a domain
43  * k_mem_domain_remove_partition() - to remove a partition from a domain
44  * k_mem_domain_add_thread() - to add a thread into a domain
45  * k_mem_domain_remove_thread() - to remove a thread from a domain
46* add k_calloc() which uses kernel heap to implement traditional calloc()
47  semantics.
48* Introduce object validation mechanism: All system calls made from userspace,
49  which involve pointers to kernel objects (including device drivers), will need
50  to have those pointers validated; userspace must never be able to crash the
51  kernel by passing it garbage.
52
53Architectures
54*************
55
56* nrf52: Add support for LOW_POWER state and SYSTEM_OFF
57* Architecture specific memory domain APIs added
58* Tickless Kernel Implementation for Xtensa
59* Added support for the following ARM SoCs:
60
61  * NXP i.MX RT1052
62  * Silabs EFM32WG
63  * STM F0
64  * TI MSP432P4xx
65
66Boards
67******
68* Jailhouse port: The port will enable Zephyr to run as a guest OS on x86-64
69  systems. It comes with a test on QEMU to validate that, thus this new board
70  introduction.
71* Power Management for nrf52 series SOC
72* Added support for the following ARM boards:
73
74  * 96b_neonkey
75  * efm32wg_stk3800
76  * mimxrt1050_evk
77  * msp_exp432p401r_launchxl
78  * nucleo_f030r8
79  * nucleo_f091rc
80  * stm32f411e_disco
81  * stm32f412g_disco
82  * stm32l476g_disco
83  * usb_kw24d512
84
85Drivers and Sensors
86*******************
87
88* timer: Add Support for TICKLESS KERNEL in xtensa_sys_timer
89* Rename ``random`` to ``entropy``
90* Add Atmel SAM I2S (SSC) driver
91* Add Atmel SAM DMA (XDMAC) driver
92* Add plantower PMS7003 Driver
93* Add Altera shim driver for JTAG UART soft IP
94* Add Altera shim driver for timer soft IP
95* Introduce mcux ccm driver
96* Introduce mcux igpio shim driver
97
98Networking
99**********
100
101* HTTP API changed to use net-app API. Old HTTP API is deprecated.
102* Loopback network interface support added. This is used in testing only.
103* LWM2M multi-fragment network packet support added.
104* New CoAP library implementation, supporting longer network packets.
105* Deprecated ZoAP library.
106* mDNS (multicast DNS) support added.
107* SNTP (Simple Network Time Protocol) client library added.
108* Various fixes for: TCP, RPL, ARP, DNS, LWM2M, Ethernet, net-app API, Network
109  shell, and BSD socket API
110* Network management API fixes.
111* Networking sample application fixes.
112* 6lo IPv6 header compression fixes.
113* IEEE 802.15.4 generic fixes.
114* IEEE 802.15.4 mcr20a driver fixes.
115* IEEE 802.15.4 kw41z driver fixes.
116* IEEE 802.15.4 nrf5 driver fixes.
117
118Bluetooth
119*********
120
121* Multiple qualification-related fixes for Bluetooth Mesh
122* Support for Bluetooth Mesh Friend Node role
123* Support for Bluetooth Mesh Foundation Client Models
124* New Bluetooth Mesh shell module and test application
125* Support for PA/LNA amplifiers in the BLE Controller
126* Support for additional VS commands in the BLE Controller
127* Multiple stability fixes for the BLE Controller
128
129Build and Infrastructure
130************************
131
132* The Zephyr project has migrated to CMake, an important step in a
133  larger effort to make Zephyr easier to use for application developers
134  working on different platforms with different development environment
135  needs.  This change retains Kconfig as-is, and replaces all Makefiles
136  with corresponding CMakeLists.txt.  The DSL-like Make language that
137  KBuild offers is replaced by a set of CMake extensions that provide
138  either simple one-to-one translations of KBuild features or introduce
139  new concepts that replace KBuild concepts. Please re-read the Getting
140  Started guide
141  (https://docs.zephyrproject.org/1.10.0/getting_started/getting_started.html)
142  with updated instructions for setting up and developing on your host-OS.
143  You *will* need to port your own out-of-tree scripts and Makefiles to
144  CMake.
145
146Libraries / Subsystems
147***********************
148
149* The implementation for sys_rand32_get() function has been moved to a new
150  "random" subsystem. There are new implementations for this function, one based
151  in the Xoroshift128+ PRNG (using a hardware number generator to seed), and
152  another that obtains random numbers directly from a hardware number generator
153  driver. Hardware number generator drivers have been moved to a
154  "drivers/entropy" directory; these drivers only expose the interface provided
155  by include/entropy.h.
156* TinyCrypt updated to version 0.2.8
157
158HALs
159****
160
161* Add Altera HAL for support NIOS-II boards
162* Add mcux 2.3.0 for mimxrt1051 and mimxrt1052
163* stm32cube: HAL/LL static library for stm32f0xx v.1.9.
164* Add support for STM32 family USB driver
165* Add Silabs Gecko SDK for EFM32WG SoCs
166* Simplelink: Update cc32xx SDK to version 1.50.00.06
167
168Documentation
169*************
170
171* Missing API documentation caused by doxygen subgroups and missing
172  Sphinx directives now included.
173* Note added to all released doc pages mentioning more current content could
174  be available from the master branch version of the documentation.
175* Documentation updated to use CMake (vs. Make) in all examples, and
176  using a new Sphinx extension to keep examples consistent.
177* Getting Started Guide material updated to include CMake dependencies
178  and build instructions required for version 1.10.
179* Instead of hiding all expected warnings from the document build
180  process (there are some known doxygen/sphinx issues), the build
181  now outputs all warnings, and then reports
182  if any new/unexpected warnings or errors were detected.
183* Obsolete V1 to V2 porting material removed.
184* Continued updates to documentation for new board support, new samples,
185  and new features.
186* Integration of documentation with new zephyrproject.org website.
187* Documentation moved to docs.zephyrproject.org site (with redirection
188  from zephyrproject.org/doc)
189
190Tests and Samples
191*****************
192
193* Benchmarking: cleanup of the benchmarking code
194* Add userspace protection tests
195* Move all tests to ztest and cleanup coding style and formatting
196
197Issue Related Items
198*******************
199
200These GitHub issues were addressed since the previous 1.9.0 tagged
201release:
202
203.. comment  List derived from Jira/GitHub Issue query: ...
204
205* :github:`779` - CI: shippable - provide some means to allow users to rebuild
206* :github:`1166` - Keeping reusable components under samples/ leads to build issues
207* :github:`1236` - Cleanup CONFIG_EXECUTION_BENCHMARKING
208* :github:`1241` - tests/net/ipv6/ FAILED on qc1000:x86
209* :github:`1242` - tests/kernel/mutex/mutex/ FAILED @ esp32
210* :github:`1256` - [cmake] A board should support multiple configurations (variants)
211* :github:`1270` - Issue : Information CC3220SF LaunchXL
212* :github:`1280` - shell on Arduino Due prints "shell>" before the delayed boot banner
213* :github:`1289` - C++ 11 support!
214* :github:`1332` - sanitycheck builds too many duplicates in CI, make it smarter
215* :github:`1392` - No module named 'elftools'
216* :github:`1397` - no serialport output
217* :github:`1415` - Problem with forcing new line in generated documentation.
218* :github:`1416` - Regression added by commit cd35742a (net/ethernet/arp: Let ethernet L2 managing pkt's reference while sending)
219* :github:`1419` - test, please ignore
220* :github:`1425` - spi.h and spi_legacy.h documentation conflicts
221* :github:`1428` - networking defines being used but not defined anywhere
222* :github:`1435` - Could not connect to Eclipse Leshan Demo Server
223* :github:`1445` - doc: groups of items in API documentation not displaying
224* :github:`1450` - make kconfig help is difficult to understand
225* :github:`1474` - tests/net/ipv6_fragment build failure, missing testcase.yaml
226* :github:`1487` - net/lib/dns doesn't respect CONFIG_NET_IPV6=n
227* :github:`1488` - Replacing Make/Kbuild with CMake
228* :github:`1499` - doc: replace Mac OS with macOS
229* :github:`1501` - doc: Fix link title
230* :github:`1510` - "make debugserver" broken for qemu_xtensa
231* :github:`1522` - "make qemu" may not regenerate .config after changes to prj.conf
232* :github:`1524` - doc: Remove "Changes from Version 1 Kernel" document
233* :github:`1527` - make htmldocs failed
234* :github:`1538` - esp32: is broken for the latest esp-idf version
235* :github:`1542` - filter-known-issues.py fails if input file is empty
236* :github:`1543` - doc: add process documentation for importing non-Apache2.0 licensed code
237* :github:`1544` - regression: net: K64F: DHCP seems to fail a lot after 91041f9e
238* :github:`1558` - Master reports itself as if it was 1.9.0 release
239* :github:`1571` - Update to latest tinycrypt: v0.2.8
240* :github:`1573` - tests/net/lib/http_header_fields/ fails with CONFIG_HTTP_PARSER_STRICT enabled
241* :github:`1580` - checkpatch output in shippable log displays without line breaks
242* :github:`1581` - two tests fail in qemu_cortex_m3 with new SDK
243* :github:`1597` - remove deprecated k_mem_pool_defrag()
244* :github:`1626` - Bluetooth LE dual mode topology
245* :github:`1628` - Bluetooth LE data length extension
246* :github:`1629` - LE privacy 1.2
247* :github:`1630` - E2E tests for connection
248* :github:`1632` - Implement Environmental Sensing Profile sample app
249* :github:`1653` - enable stack canaries on ARC so we can run test_stackprot
250* :github:`1670` - Add Reject command handling
251* :github:`1853` - Review all Kconfig variables used and Simplify
252* :github:`1880` - Zephyr Build Management
253* :github:`1883` - Audio Codec
254* :github:`1885` - Display Interface
255* :github:`1902` - uWeave
256* :github:`2011` - tcf: add support for running altera_max10 binaries
257* :github:`2035` - doc: remove workaround for sphinx issue once 1.5 is released
258* :github:`2202` - sporadic bad RAM pointer error under qemu_nios2
259* :github:`2277` - Update to a more recent version of micro-ecc in Zephyr
260* :github:`2281` - purge usage of platform_whitelist
261* :github:`2411` - Look into supporting additional file systems under Zephyr FS API
262* :github:`2580` - Failure in test_nano_work
263* :github:`2723` - QEMU NIOS2 sporadic FAIL in tests/legacy/kernel/test_context
264* :github:`2775` - Ability to make Security / Vulnerability bugs non-public
265* :github:`2793` - entropy subsystem
266* :github:`2818` - Add disk access based on flash on freedom board to interface with file system
267* :github:`2853` - Customer: Zephyr Tutorial
268* :github:`2855` - Customer: Sample code
269* :github:`2858` - Customer: Training / Webinar / Video
270* :github:`2942` - Support for NXP KW2xD MCU
271* :github:`3039` - Simple Network Time Protocol support
272* :github:`3058` - no good way to include library code outside of $(PROJECT_BASE)
273* :github:`3064` - Symmetric multiprocessing (SMP)
274* :github:`3070` - Add Atmel SAM family DMA (XDMAC) driver
275* :github:`3139` - Zephyr Tutorials and Training
276* :github:`3142` - [PTS] GAP/TC_SEC_AUT_BV_12_C fails
277* :github:`3143` - [PTS] GAP/TC_SEC_AUT_BV_14_C fails
278* :github:`3144` - [PTS] GAP/TC_PRIV_CONN_BV_11_C fails
279* :github:`3146` - [PTS] SM/SLA/PROT/BV-02-C fails
280* :github:`3147` - [PTS] SM/SLA/SIE/BV-01-C fails
281* :github:`3158` - Add support for Panther board based on Quark SE C1000
282* :github:`3184` - xtensa: Zephyr SDK build and emulation support
283* :github:`3201` - Add Device Tree Documentation
284* :github:`3268` - Add tickless kernel support in xtensa_sys_timer timer
285* :github:`3274` - Lauterbach Debug Tools Support
286* :github:`3275` - Tickless Kernel and Frequency Scaling
287* :github:`3290` - introduce shared metadata for boards, samples and tests
288* :github:`3294` - Application Development
289* :github:`3297` - ROM-able
290* :github:`3313` - [RESEARCH] Memory Protection Unit support
291* :github:`3353` - Missing board documentation for arm/quark_se_c1000_ble
292* :github:`3355` - Missing board documentation for arm/nucleo_f103rb
293* :github:`3357` - Missing board documentation for arm/stm32_mini_a15
294* :github:`3360` - Missing board documentation for x86/panther
295* :github:`3364` - Missing board documentation for arc/panther_ss
296* :github:`3368` - Can Zephyr support SNMP (Simple Network Management Protocol)?
297* :github:`3378` - Zephyr will not build with icecream
298* :github:`3383` - Work up linker-based system call prototype for MPU enabling
299* :github:`3412` - Provide a sample application for kernel_event_logger
300* :github:`3415` - Building FS for Arduino 101
301* :github:`3432` - Port Zephyr to Silabs EFM32WG-STK3800
302* :github:`3484` - Provide stm32cube LL based UART driver
303* :github:`3485` - Provide stm32cube LL based I2C driver
304* :github:`3486` - Provide stm32cube LL based SPI driver
305* :github:`3587` - Move board related device tree files where the board is defined
306* :github:`3588` - Move all X86 boards and related SoCs to device tree
307* :github:`3600` -  Build warnings [-Wpointer-sign] with LLVM/icx (tests/unit/bluetooth/at)
308* :github:`3601` - Use QMSI mailbox driver for Quark SE
309* :github:`3604` - the http_client sample app cannot send GET request on Qemu x86
310* :github:`3608` - Add functionality of Gesture Sensor
311* :github:`3621` - Design system call interface for drivers
312* :github:`3625` - Validation mechanism for user-supplied kernel object pointers
313* :github:`3627` - x86: implement system calls
314* :github:`3628` - implement APIs for dropping threads to unprivileged mode
315* :github:`3630` - use API to validate user-supplied kernel buffers
316* :github:`3632` - define set of architecture-specific memory protection APIs
317* :github:`3635` - Device Driver Access Control
318* :github:`3641` - define kernel system calls
319* :github:`3643` - [PTS] PTS server stops working while executing  TC_SEC_CSIGN_BV_01_C test case
320* :github:`3646` - Zoap message to use more than one fragment
321* :github:`3682` - incremental builds do not work properly in Windows
322* :github:`3683` - unable to follow directions to install Crosstool-NG on OS X
323* :github:`3688` - OS X Setup Instructions Not Working on macOS Sierra
324* :github:`3690` - Move to CMake or similar instead of Kbuild
325* :github:`3697` - Use CMSIS __NVIC_PRIO_BITS consistently
326* :github:`3716` - define / implement application-facing memory domain APIs
327* :github:`3728` - ESP32 i2c Driver Support
328* :github:`3772` - test_mem_pool_api crashes qemu_x86 if CONFIG_DEBUG=y
329* :github:`3781` - iwdg: provide independent watchdog driver compliant with STM32Cube LL API
330* :github:`3783` - Add mbedtls Crypto API shim driver
331* :github:`3829` - PTS test case GATT/SR/GPA/BV-02-C crashes tester in QEMU
332* :github:`3832` - ARM: implement API to validate user buffer
333* :github:`3844` - Fix LWM2M header calculation in lwm2m_engine.c
334* :github:`3851` - Port SPI HCI driver on new SPI API
335* :github:`3852` - x86: implement memory domain interface
336* :github:`3892` - Add support for STM32F429I_DISC1 board
337* :github:`3897` - Static code scan (coverity) issues seen
338* :github:`3922` - [PTS] GATT/SR/GAT/BV-01-C INCONC
339* :github:`3923` - boards: provide support for Nucleo-64 F030R8
340* :github:`3939` - Add Atmel SAM family I2S (Inter-IC Sound) driver based on SSC module
341* :github:`3941` - x86: implement option for PAE-formatted page tables with NX bit
342* :github:`3942` - x86: scope SMEP support in Zephyr
343* :github:`3984` - Build warning: [-Wpointer-bool-conversion] with LLVM/icx (samples/bluetooth/mesh_demo)
344* :github:`3985` - Build warning:  [-Wpointer-bool-conversion] with LLVM/icx (samples/bluetooth/mesh)
345* :github:`4001` - GENERATED_KERNEL_OBJECT_FILES end up in application memory
346* :github:`4004` - integrate printk() with console subsystem
347* :github:`4009` - I2C API is mixing two incompatible definitions of bit-fields
348* :github:`4014` - memory protection: implicit kernel object permissions
349* :github:`4016` - bluetooth linker not connected
350* :github:`4022` - net: "queue: Use k_poll if enabled" commit regressed BSD Sockets performance
351* :github:`4026` - CC3220 WiFi Host Driver support
352* :github:`4027` - extra unref happening on net_context
353* :github:`4029` - TinyTILE bluetooth app flash
354* :github:`4030` - Coverity issue seen with CID: 175366 , in file: /subsys/bluetooth/host/smp.c
355* :github:`4031` - Coverity issue seen with CID: 175365 , in file: /subsys/bluetooth/controller/hci/hci.c
356* :github:`4032` - Coverity issue seen with CID: 175364 , in file: /subsys/bluetooth/host/mesh/proxy.c
357* :github:`4033` - Coverity issue seen with CID: 175363 , in file: /subsys/bluetooth/host/smp.c
358* :github:`4034` - Coverity issue seen with CID: 175362 , in file: /subsys/bluetooth/host/smp.c
359* :github:`4035` - Coverity issue seen with CID: 175361 , in file: /samples/bluetooth/eddystone/src/main.c
360* :github:`4036` - Coverity issue seen with CID: 175360 , in file: /subsys/bluetooth/host/mesh/prov.c
361* :github:`4037` - Coverity issue seen with CID: 175359 , in file: /subsys/bluetooth/host/hci_core.c
362* :github:`4038` - Coverity issue seen with CID: 175358 , in file: /subsys/bluetooth/host/hci_core.c
363* :github:`4041` - flashing tinytile and use of minicom
364* :github:`4043` - Add new user CONFIG to project
365* :github:`4044` - Livelock in SMP pairing failed scenario
366* :github:`4046` - BLE Central and BLE Peripheral roles at a moment on nRF52832
367* :github:`4048` - HTTP Request Timeout Not Working
368* :github:`4049` - AMP - Multi-core
369* :github:`4050` - zephyr.git/tests/kernel/obj_validation/testcase.yaml#test :Evaluation failure
370* :github:`4051` - Coverity issue seen with CID: 177219 , in file: /drivers/flash/flash_stm32f4x.c
371* :github:`4054` - [CID: 177215 ], in file: /tests/subsys/dfu/mcuboot/src/main.c
372* :github:`4055` - Coverity issue seen with CID: 177214 , in file: /samples/boards/microbit/pong/src/ble.c
373* :github:`4056` - Coverity issue seen with CID: 177213 , in file: /tests/net/ipv6_fragment/src/main.c
374* :github:`4057` - Coverity issue seen with CID: 170744, in file: /samples/boards/microbit/pong/src/ble.c
375* :github:`4058` - samples/net/http_client: The HTTP client failed to  send the GET request
376* :github:`4059` -  zephyr.git/tests/net/ipv6/testcase.yaml#test  :evaluation failed
377* :github:`4068` - [BLE, nRF51822] Error -ENOMEM when use  bt_gatt_write_without_response function
378* :github:`4099` - Add some docs to samples/net/ieee802154/hw
379* :github:`4131` - gen_syscalls.py may choke on non-ascii chars
380* :github:`4135` - checkpatch.pl generates warning messages when run w/ perl-5.26
381* :github:`4149` - Transition message on jira.zephyrproject.org needed
382* :github:`4162` - build error in http_get sample
383* :github:`4165` - ieee802154_uart_pipe.c: warning: return from incompatible pointer type
384* :github:`4182` - NET_APP_SETTINGS for 15.4 doesn't seem to work (if to trust 15.4 shell)
385* :github:`4186` - tcf.git/examples/test_network_linux_zephyr.py#_test  :Compilation failure
386* :github:`4188` - samples /net/echo_server:failed to send packets to client
387* :github:`4189` - ieee802154_settings.c is duplicated in the codebase
388* :github:`4190` - samples/net/echo_client :failed to send data
389* :github:`4193` - Zephyr libc(snprintf) is not comply with ISO standard.
390* :github:`4195` - tests/net/udp/test_udp.py#_ipv4_udp : evaluation failed
391* :github:`4239` - unit tests broken in sanitycheck
392* :github:`4249` - where is auto-pts py script of zephyr?
393* :github:`4258` - samples/net/zoap_server : unable to communicate between zoap client and server
394* :github:`4264` - Getting started guide for windows: small error
395* :github:`4289` - samples/mpu/mem_domain_apis_test is broken
396* :github:`4292` - net: tcp.c: prepare_segment() may unrightly unref packet in case of error
397* :github:`4295` - Error flashing board STM32373C-EVAL
398* :github:`4301` - checkpatch.pl false positives block PR merge
399* :github:`4310` - unable to flash quark_se_c1000_devboard
400* :github:`4312` - GDB: Ubuntu's default GDB package does not support arm
401* :github:`4323` - net: tcp.c: prepare_segment() may leak fragments in case of error
402* :github:`4325` - samples/net/http_client:  unable to send the proper http request to Apache server
403* :github:`4327` - NET_PKT_TX_SLAB_DEFINE, NET_PKT_DATA_POOL_DEFINE description and usage are confusing
404* :github:`4347` - net: BSD Sockets UDP sendto() impl broke tests/net/socket/udp/
405* :github:`4353` - VM-VM qemu networking example crashes often
406* :github:`4358` - k_queue_poll returns NULL with K_FOREVER
407* :github:`4366` - memory corruption in test_pipe_api
408* :github:`4377` - Sniffing traffic in a VM-VM qemu setup crashes with a segfault in the monitor application
409* :github:`4392` - zephyr/tests/benchmarks/footprint :build Failed
410* :github:`4394` - Coverity issue seen with CID: 178058
411* :github:`4395` - Coverity issue seen with CID: 178059
412* :github:`4396` - Coverity issue seen with CID: 178060
413* :github:`4397` - Coverity issue seen with CID: 178064
414* :github:`4398` - zephyr/tests/crypto/ccm_mode :-Evaluation failed due to esp32
415* :github:`4419` - 6LoWPAN - source address uncompress corner case
416* :github:`4421` - net: Duplicated functionality between net_pkt_get_src_addr() and net_context.c:create_sockaddr()
417* :github:`4424` - Turning on network debug message w/ LwM2M sample client will result in stack check failure
418* :github:`4429` - I2C: stm32-i2c-v2 Driver (F0/F3/F7) gets stuck in endless loop when handling restart conditions
419* :github:`4442` - samples: net: ieee802154: Sample is not working on nRF52840 platform
420* :github:`4459` - i2c: stm32-i2c-(v1/v2) don't handle i2c_burst_write like expected
421* :github:`4463` - Some tests and samples are missing a .yaml file
422* :github:`4466` - warnings building echo_client with nrf5
423* :github:`4469` - CI problem with check-compliance.py
424* :github:`4476` - Multiple build failures with i2c_ll_stm32.c driver
425* :github:`4480` - Compilation failure for qemu_x86 with CONFIG_DEBUG_INFO=y
426* :github:`4481` - Build failure with CONFIG_NET_DEBUG_APP=y
427* :github:`4503` - CONFIG_STACK_SENTINEL inconsistencies
428* :github:`4538` - Coverity issue seen with CID:174928
429* :github:`4539` - Coverity issue seen with CID:173658
430* :github:`4540` - Coverity issue seen with CID: 173657
431* :github:`4541` - Coverity issue seen with CID: 173653
432* :github:`4544` - [BLE Mesh] Error: Failed to advertise using Node ID
433* :github:`4563` - [BLE Mesh]: How to handle the 'Set" and 'Get' callbacks
434* :github:`4565` - net_context_recv always fails with timeout=K_FOREVER
435* :github:`4567` - [BLE Mesh]: Multiple elements in a node
436* :github:`4569` - LoRa:  support LoRa
437* :github:`4579` - [CID: 178249] Parse warnings in samples/mpu/mem_domain_apis_test/src/main.c
438* :github:`4580` - Coverity issue seen with CID: 178248
439* :github:`4581` - Coverity issue seen with CID: 178247
440* :github:`4582` - Coverity issue seen with CID: 178246
441* :github:`4583` - [CID: 178245] Parse warnings in samples/mpu/mem_domain_apis_test/src/main.c
442* :github:`4584` - Coverity issue seen with CID: 178244
443* :github:`4585` - Coverity issue seen with CID: 178243
444* :github:`4586` - [CID: 178242]: Parse warnings samples/mpu/mem_domain_apis_test/src/main.c
445* :github:`4587` - Coverity issue seen with CID: 178241
446* :github:`4588` - Coverity issue seen with CID: 178240
447* :github:`4589` - [coverity] Null pointer dereferences in tests/net/app/src/main.c
448* :github:`4591` - [CID: 178237] memory corruption in drivers/ieee802154/ieee802154_mcr20a.c
449* :github:`4592` - Coverity issue seen with CID: 178236
450* :github:`4593` - Coverity issue seen with CID: 178235
451* :github:`4594` - Coverity issue seen with CID: 178234
452* :github:`4595` - Coverity issue seen with CID: 178233
453* :github:`4600` - drivers:i2c_ll_stm32_v2: Interrupt mode uses while loops
454* :github:`4607` - tests/net/socket/udp/ is broken, again
455* :github:`4630` - Sample app 'coaps_server' fails to parse coap pkt
456* :github:`4637` - [Coverity CID: 178334] Null pointer dereferences in /subsys/usb/class/netusb/function_ecm.c
457* :github:`4638` - build is failing when newlib  is enabled
458* :github:`4644` - Kconfig warnings when building any sample for nRF5x
459* :github:`4652` - Document "make flash" in the "application development primer"
460* :github:`4654` - Wrong file name for drivers/aio/aio_comparator_handlers.o
461* :github:`4667` - x86 boards need device trees
462* :github:`4668` - drivers/random/random_handlers.c is built when no random driver has been kconfig'ed into the build
463* :github:`4683` - net: tcp  tcp_retry_expired cause assert
464* :github:`4695` - samples/net/ieee802154 needs documentation
465* :github:`4697` - [regression] net: echo_server doesn't accept IPv4 connections
466* :github:`4738` - ble-mesh: proxy.c : Is clients-> conn a clerical error? it should be client-> conn?
467* :github:`4744` - tests/net/ieee802154/l2/testcase.yaml#test : unable to acknowledge data from receiver
468* :github:`4757` - kw41z-frdm: assertion failure while setting IRQ priority
469* :github:`4759` - [PTS] GATT/CL/GAW/BV-02-C fails with INCONC
470* :github:`4760` - stm32f4_disco and frdm_k64f  samples/basic/blink_led ,Choose supported PWM driver
471* :github:`4766` - tests: mem_pool: Fixed memory pool test case failure on quark d2000
472* :github:`4780` - [Coverity CID: 178794] Error handling issues in /tests/subsys/dfu/mcuboot/src/main.c
473* :github:`4781` - [Coverity CID: 178793] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c
474* :github:`4782` - [Coverity CID: 178792] Memory - illegal accesses in /subsys/net/lib/http/http_app_server.c
475* :github:`4783` - [Coverity CID: 178791] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c
476* :github:`4784` - [Coverity CID: 178790] Memory - corruptions in /samples/net/http_server/src/main.c
477* :github:`4785` - [Coverity CID: 178789] Null pointer dereferences in /samples/net/http_server/src/main.c
478* :github:`4786` - [Coverity CID: 178788] Control flow issues in /tests/net/context/src/main.c
479* :github:`4787` - [Coverity CID: 178787] Null pointer dereferences in /subsys/net/ip/net_context.c
480* :github:`4788` - [Coverity CID:178786] Memory - corruptions in /samples/net/http_server/src/main.c
481* :github:`4789` - [Coverity CID: 178785] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c
482* :github:`4791` - rpl-node uses testcase.ini instead of sample.yaml format
483* :github:`4825` - Bluetooth IPSP error with qemu_x86
484* :github:`4827` - Ping command crashes kernel over qemu_x86
485* :github:`4841` - fix doc/devices/dts/device_tree.rst path and Make references
486* :github:`4844` - cmake: can't flash stm32 with openocd
487* :github:`4847` - custom 404 error page not being shown on docs.zephyrproject.org
488* :github:`4853` - cmake: building unit test cases ignore EXTRA_* settings
489* :github:`4864` - cmake: hts221 sensor sample not working anymore
490* :github:`4881` - device_get_binding() returns failure in sample/drivers/crypto
491* :github:`4889` - Flashing EM Starterkit with EM7D fails on master
492* :github:`4899` - Convert opensda doc to CMake
493* :github:`4901` - net: tcp: RST is sent after last ack is received
494* :github:`4904` - cmake: BOOT_BANNER disappeared
495* :github:`4905` - cmake: flashing for quark_se_devboard is broken
496* :github:`4910` - BT host CMakeLists.txt code should be agnostic to the FS implementation
497* :github:`4912` - Not using the Zephyr SDK is broken
498* :github:`4925` - application_development test pollutes source directory
499* :github:`4936` - net: 15.4 MAC addresses are shown differently between shell "net iface" and "ieee15_4 get_ext_addr"
500* :github:`4937` - ESP32 can't boot
501* :github:`4975` - Getting started documentation for Mac OS X inconsistent
502* :github:`5004` - Normalize IEEE802514 driver "raw" mode.
503* :github:`5008` - system call headers are not properly regenerated in CMake on incremental builds
504* :github:`5009` - cmake creates too many build artifacts
505* :github:`5014` - samples/drivers/crypto :Unable to find crypto device
506* :github:`5019` - tests/kernel/mem_protect/stackprot : input string is long stack overflow
507* :github:`5025` - arduino_due not generating proper config with cmake (crash)
508* :github:`5026` - k_poll() documentation is wrong
509* :github:`5040` - Bluetooth mesh API documentation incomplete
510* :github:`5047` - document error: getting_started.rst
511* :github:`5051` - Verify doxygen documented APIs are in the generated docs
512* :github:`5055` - [Coverity CID: 179254] Possible Control flow issues in /samples/net/zperf/src/zperf_udp_receiver.c
513* :github:`5056` - [Coverity CID: 179253] Control flow issues in /samples/net/zperf/src/zperf_tcp_receiver.c
514* :github:`5057` - [Coverity CID: 179252] Null pointer dereferences in /samples/net/zperf/src/zperf_udp_receiver.c
515* :github:`5058` - [Coverity CID: 179251] Control flow issues in /samples/net/zperf/src/zperf_udp_receiver.c
516* :github:`5059` - [Coverity CID: 179250] Null pointer dereferences in /samples/net/zperf/src/zperf_udp_uploader.c
517* :github:`5060` - [Coverity CID: 179249] Incorrect expression in /tests/kernel/fatal/src/main.c
518* :github:`5061` - [Coverity CID: 179248] Control flow issues in /samples/net/zperf/src/zperf_tcp_receiver.c
519* :github:`5062` - [Coverity CID: 179247] Incorrect expression in /tests/kernel/fatal/src/main.c
520* :github:`5063` - samples/bluetooth: central_hr sample app is not connecting with peripheral sample app on arduino_101.
521* :github:`5085` - bug: dts: stm32f1: wrong pinctrl base address
522* :github:`5087` - Samples/bluetooth: Failed to connect with eddystone sample app on arduino_101.
523* :github:`5090` - no makefile in zephyr/samples/bluetooth/mesh examples
524* :github:`5097` - zephyr_library_*() configuration has lower precedence than global zephyr_*()  configuration
525* :github:`5107` - Default partition addressing for nrf52_pca10040 is incompatible
526* :github:`5116` - [Coverity CID: 179986] Null pointer dereferences in /subsys/bluetooth/host/mesh/access.c
527* :github:`5117` - [Coverity CID: 179985] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
528* :github:`5118` - [Coverity CID: 179984] Memory - corruptions in /drivers/ethernet/eth_mcux.c
529* :github:`5119` - [Coverity CID: 179983] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
530* :github:`5120` - [Coverity CID: 179982] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
531* :github:`5121` - [Coverity CID: 179981] Incorrect expression in /drivers/ieee802154/ieee802154_kw41z.c
532* :github:`5122` - [Coverity CID: 179980] Integer handling issues in /subsys/bluetooth/host/mesh/friend.c
533* :github:`5123` - [Coverity CID: 179979] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
534* :github:`5124` - [Coverity CID: 179978] Error handling issues in /subsys/bluetooth/host/mesh/health_srv.c
535* :github:`5125` - [Coverity CID: 179976] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
536* :github:`5126` - [Coverity CID: 179975] Error handling issues in /subsys/bluetooth/host/mesh/health_srv.c
537* :github:`5127` - [Coverity CID: 179974] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
538* :github:`5128` - [Coverity CID: 179973] Error handling issues in /subsys/bluetooth/host/mesh/cfg_srv.c
539* :github:`5140` - CMake migration regressed (changed behavior) of QEMU_PTY=1
540* :github:`5144` - BUG: cmake: make doesn't update zephyr.hex file
541* :github:`5145` - samples/bluetooth: Connection failure on peripheral CSC with Arduino 101
542* :github:`5152` - CONFIG_CPLUSPLUS is incompatible with the zephyr_get_* API
543* :github:`5159` - [nrf] Button example for nrf5x boards latches GPIO after 1 button press
544* :github:`5176` - zephyr-v1.9.2 tag missing
545* :github:`5177` - hci_usb: Linking error
546* :github:`5184` - kernel system call handlers missing due to -Wl,--no-whole-archive
547* :github:`5186` - gen_syscall_header_py is being run at the wrong time
548* :github:`5189` - tests/subsys/fs/nffs_fs_api:-Evaluation failed
549* :github:`5207` - Bluetooth subsystem uses acl_in_pool even for controllers not supporting flow control
550* :github:`5211` - Kconfig: CPU_HAS_FPU dependencies problem
551* :github:`5223` - CMake: Recent changes broke 3rd-party build system integration again
552* :github:`5265` - ROM size increase due Zephyr compile options not stripping unused functions
553* :github:`5266` - Ensure the Licensing page is up-to-date for the release
554* :github:`5286` - NET_L2: Symbols from the L2 implementation layer are exposed to users of L2
555* :github:`5298` - Endless loop in uart pipe
556