1:orphan:
2
3.. _zephyr_1.11:
4
5Zephyr Kernel 1.11.0
6#####################
7
8We are pleased to announce the release of Zephyr kernel version 1.11.0.
9
10Major enhancements with this release include:
11
12* Thread-level memory protection on x86, ARC and Arm, userspace and memory
13  domains
14* Symmetric Multi Processing (SMP) support on the Xtensa architecture.
15* Initial Armv8-M architecture support.
16* Native development environment on Microsoft Windows.
17* Native build target on POSIX platforms.
18* POSIX PSE52 partial support.
19* Thread support via integration with OpenThread.
20* Firmware over-the-air (FOTA) updates over BLE using MCUmgr.
21* Lightweight flash storage layer for constrained devices.
22* Additional SoC, platform and driver support for many of the already supported
23  platforms.
24
25The following sections provide detailed lists of changes by component.
26
27Kernel
28******
29
30* Initial Symmetric Multi Processing (SMP) support added:
31
32  * SMP-aware scheduler
33  * SMP timer and idling support
34  * Available on the Xtensa architecture
35* POSIX PSE52 support:
36
37  * Timer, clock, scheduler and pthread APIs
38
39Architectures
40*************
41
42* User space and system call related changes:
43
44  * Added ARC user space implementation
45  * Added Arm user space implementation
46  * Fixed a few MPU related issues with stack guards
47* Armv8-M initial architecture support, including the following cores:
48
49  * Arm Cortex-M23
50  * Arm Cortex-M33
51* New POSIX architecture for native GNU/Linux and macOS build targets:
52
53  * Targets native executables that can be run on the host operating system
54
55Boards
56******
57
58* New native_posix board for the POSIX architecture:
59
60  * Includes a template for hardware models
61  * Adds support for console and logging
62  * Interrupts and timers are simulated in several different configurations
63* Added support for the following Arm boards:
64
65  * adafruit_trinket_m0
66  * arduino_zero
67  * lpcxpresso54114
68  * nrf52_sparkfun
69  * nucleo_f429zi
70  * stm32f072_eval
71  * stm32f072b_disco
72* Removed Panther board support, which included boards/x86/panther and
73  boards/arc/panther_ss
74* Refactored dts.fixup so common SoC-related fixes are in arch/<*>/soc
75  and board dts.fixup is only used for board-specific items.
76
77Drivers and Sensors
78*******************
79
80* New LED PWM driver for ESP32 SoC
81* Fixed ESP32 I2C driver
82* Added I2C master, QSPI flash, and GPIO drivers for nios-II
83* Added PinMux, GPIO, serial drivers for LPC54114
84* Added PinMux, GPIO, serial, SPI, and watchdog drivers for sam0
85* Added APA102 and WS2821B led_strip drivers
86* Added native entropy driver
87* Moved some sensors to dts
88* Added AMG88xx, CCS811, and VL53L0x sensor drivers
89* Redefined SENSOR_CHAN_HUMIDITY in percent
90
91Networking
92**********
93
94* Generic OpenThread support added
95* OpenThread support to nRF5 IEEE 802.15.4 driver added
96* NXP MCUX ethernet driver IPv6 multicast join/leave enhancements
97* Ethernet STM32 fixes
98* IEEE 802.15.4 Sub-GHz TI CC1200 chip support added
99* IEEE 802.15.4 test driver (upipe) hw filtering support added
100* IEEE 802.15.4 radio API enhancements
101* Net loopback driver fixes
102* Net management API event enhancements
103* IPv6 neighbor addition and removal can be monitored
104* Static IPv4 and DHCPv4 configuration enhancements
105* Bluetooth IPSP disconnect fix
106* Network buffer enhancements
107* ICMPv4 and ICMPv6 error checking fixes
108* Network interface address handling enhancements
109* Add routing support between network interfaces
110* LWM2M fixes and enhancements
111* Old legacy HTTP API removed
112* Old legacy ZoAP API removed
113* CoAP fixes
114* TCP fixes
115* HTTP fixes
116* RPL fixes
117* Net-app API fixes
118* Net-shell fixes
119* BSD socket API fixes
120
121Bluetooth
122*********
123
124* Multiple fixes to the controller
125* Fixed potential connection transmission deadlock issue with the help
126  of a dedicated fragment pool
127* Multiple fixes to Mesh support
128* Added test automation for Mesh (for tests/bluetooth/tester)
129
130Build and Infrastructure
131************************
132
133* Native development environment on Microsoft Windows:
134
135  * Uses CMake and Kconfiglib to avoid requiring an emulation layer
136  * Package management support with Chocolatey for simple setup
137  * Build time now comparable to Linux and macOS using Ninja
138
139Libraries / Subsystems
140***********************
141
142* New management subsystem based on the cross-RTOS MCUmgr:
143
144  * Secure Firmware Updates over BLE and serial
145  * Support for file system access and statistics
146  * mcumgr cross-platform command-line tool
147
148* FCB (File Circular Buffer) lightweight storage layer:
149
150  * Wear-leveling support for NOR flashes
151  * Suitable for memory constrained devices
152
153HALs
154****
155
156* Updated Arm CMSIS from version 4.5.0 to 5.2.0
157* Updated stm32cube stm32l4xx from version 1.9.0 to 1.10.0
158* Updated stm32cube stm32f4xx from version 1.16.0 to 1.18.0
159* Added Atmel SAMD21 HAL
160* Added mcux 2.2.1 for LPC54114
161* Added HAL for VL53L0x sensor from STM
162* Imported and moved to nRFx 0.8.0 on Nordic SoCs
163* Added QSPI Controller HAL driver
164
165Documentation
166*************
167
168* Added MPU specific stack and userspace documentation
169* Improved docs for Native (POSIX) support
170* Docs for new samples and supported board
171* General documentation clarifications and improvements
172* Identify daily-built master-branch docs as "Latest" version
173* Addressed Sphinx-generated intra-page link issues
174* Updated doc generation tools (Doxygen, Sphinx, Breathe, Docutils)
175
176Tests and Samples
177*****************
178
179* Added additional tests and test improvements for user space testing
180
181Issue Related Items
182*******************
183
184These GitHub issues were addressed since the previous 1.10.0 tagged
185release:
186
187.. comment  List derived from GitHub Issue query: ...
188
189* :github:`1082` - build all tests have issues for devices that don't exist on a given board
190* :github:`1281` - spi_ll_stm32 driver does not support stm32f1soc
191* :github:`1291` - Initial Posix PSE52 Support
192* :github:`1460` - 1.10 Release Checklist
193* :github:`1462` - rename nano_internal.h to kernel_internal.h
194* :github:`1526` - Bluetooth:mesh:prov_start: Invalid authentication
195* :github:`1532` - There are no RISC-V boards in the list of supported boards
196* :github:`1727` - Support out-of-tree board definitions
197* :github:`1793` - I2S device APIs and Drivers
198* :github:`1868` - Build System cleanup and Kernel / Application build separation
199* :github:`1877` - Provide single point of notification for new data on multiple sockets.
200* :github:`1890` - Memory Management
201* :github:`1891` - Native Port
202* :github:`1892` - NFC Stack
203* :github:`1893` - Unified Kernel
204* :github:`1921` - Bluetooth LE 4.2 Hardware Support
205* :github:`1926` - build system does not re-link if linker script changed
206* :github:`1930` - bluetooth tester shall support logging on Arduino101
207* :github:`2007` - C++ compiler flags are not managed correctly
208* :github:`2072` - create abstraction layer to directly use Altera HAL drivers for Nios II IP blocks
209* :github:`2107` - handle configuration changes with more code coverage
210* :github:`2239` - sporadic illegal instruction exception on Nios II in test_errno
211* :github:`2244` - LE Controller: remove util folder
212* :github:`2280` - Move defaults.tc and .known-issue under tests/
213* :github:`2347` - Thread Protocol v1.1 Dependencies on the IP Stack
214* :github:`2365` - Port IOT Protocols to the new IP Stack
215* :github:`2477` - no unit tests exist for CONFIG_DEBUG_INFO
216* :github:`2620` - object files created outside of $O directory when obj-XYZ path is relative
217* :github:`2722` - QEMU NIOS2 sporadic FAIL in tests/legacy/kernel/test_timer/nanokernel
218* :github:`2760` - Implement Virtual USB ethernet Adapter support
219* :github:`2819` - legacy/kernel/test_task_priv randomly fails on EMSK ARC
220* :github:`2889` - [ARC] legacy/benchmark/latency_measure not measuring RIRQ/FIRQ
221* :github:`2891` - implement _tsc_read equivalent for all architectures
222* :github:`2912` - Develop Guideline for Handling Configuration Changes with More Code Coverage
223* :github:`2937` - Thread-level Memory Protection Support
224* :github:`2939` - Add Xtensa Port
225* :github:`2943` - Support for the KW22D512 Kinetis MCU based USB Dongle
226* :github:`2971` - I2C High-Speed Mode is not implemented
227* :github:`2994` - The build system crashes when GCCARMEMB_TOOLCHAIN_PATH has a space in it
228* :github:`3069` - XML encoding/decoding library
229* :github:`3081` - Concise Binary Object Representation (CBOR)
230* :github:`3083` - I2C problem Zephyr OS sensor example on NRF51 and F401re
231* :github:`3127` - IP stack does not implement multicasting requirements of IPv6 RFCs and network driver model lacks features to implement it properly
232* :github:`3240` - Unnecessary code footprint bloat due to "static inline"
233* :github:`3279` - Reclaiming Memory
234* :github:`3283` - Split net_buf parsing context from the actual data
235* :github:`3302` - samples/subsys/logging/logger-hook needs to be a test case
236* :github:`3308` - [TAHI] No "ICMPv6 error message" is received while sending echo request with parameter problem header
237* :github:`3316` - [IPv6 TAHI] Section 1: RFC 2460 - IPv6 Specification
238* :github:`3317` - [IPv6 TAHI]Section 4: RFC 1981 - Path MTU Discovery for IPv6
239* :github:`3318` - [IPv6 TAHI]Section 5: RFC 4443 - ICMPv6
240* :github:`3322` - [IPv6 TAHI] Section 3: RFC 4862 - IPv6 Stateless Address Autoconfiguration
241* :github:`3323` - [IPv6 TAHI] Section 2: RFC 4861 - Neighbor Discovery for IPv6
242* :github:`3329` - Build warnings [-Wpointer-sign] with LLVM/icx (bluetooth_ipsp)
243* :github:`3345` - Missing board documentation for riscv32/zedboard_pulpino
244* :github:`3346` - Missing board documentation for riscv32/qemu_riscv32
245* :github:`3351` - Missing board documentation for arm/bbc_microbit board
246* :github:`3352` - Missing board documentation for arm/nrf51_blenano
247* :github:`3439` - IP stack: No MTU handling on send()
248* :github:`3440` - IP stack: No TCP receive window handling
249* :github:`3483` - Unify STM32 configuration files
250* :github:`3546` - Enabling networking for targets w/o network hw causes hang on boot
251* :github:`3565` - Symmetric multiprocessing (SMP) for Xtensa architecture
252* :github:`3597` - Build warnings [-Wpointer-sign] with LLVM/icx (tests/net/ieee802154/crypto)
253* :github:`3614` - cdc-acm error when printing one byte at a time
254* :github:`3617` - Build warnings [-Wshift-overflow] with LLVM/icx (K_MEM_POOL_DEFINE)
255* :github:`3667` - _IsInIsr doesn't work properly on Cortex M0
256* :github:`3685` - Test suite cleanup and Test Coverage
257* :github:`3704` - Move all X86 boards to device tree
258* :github:`3707` - intermittent work_queue test failure
259* :github:`3712` - RPL client node version bogus incrementation
260* :github:`3718` - Mpu stack guard is not set when reaching main
261* :github:`3747` - tests/kernel/mem_slab/test_mslab_threadsafe/testcase.ini#test type:qemu-zephyr-arm
262* :github:`3809` - Build warnings [-Wimplicit-function-declaration] with LLVM/icx (tests/drivers/pci_enum)
263* :github:`3833` - make device_get_binding() more efficient
264* :github:`3834` - CDC_ACM is limited to 4 bytes at a time for Arduino 101
265* :github:`3838` - Some  tests end up with  0 platforms due to bad filtering
266* :github:`3850` - SPI fails on Nucleo_f334r8
267* :github:`3855` - Support board files located in application directory
268* :github:`3856` - LwM2M: Support write attributes (section 5.4.4 of spec)
269* :github:`3858` - Enable OpenThread support for Zephyr
270* :github:`3859` - Create OpenThread platform adaptation for Zephyr
271* :github:`3860` - Create OpenThread network interface driver
272* :github:`3862` - Verify that the OpenThread requirements are fulfilled by Zephyr 15.4 radio driver
273* :github:`3870` - Create a shell to configure OpenThread stack
274* :github:`3872` - build on windows failed " error: unrecognized command line option '-no-pie'"
275* :github:`3918` - Build error [use of undeclared identifier]with LLVM/icx (samples/net/nats)
276* :github:`4000` - xtensa-vectors.S builds wrong versions of ISRs based on HAL information
277* :github:`4010` - [CID: 174928]: Control flow issues in /tests/kernel/mem_slab/mslab/src/slab.c
278* :github:`4025` - Upgrade to TinyCrypt 0.2.7 has significant API changes
279* :github:`4045` - convert to ztest for files in tests/kernel
280* :github:`4105` - Sensors: move all the drivers using SPI bus to new SPI API
281* :github:`4106` - Flash: move w25qxxdv driver to new SPI API
282* :github:`4216` - samples:net:sockets:echo : communication blocks between client and server after few packets transmission
283* :github:`4351` - arduino_101: USB device is not listed after flashing with a Zephyr sample
284* :github:`4401` - tests/net/ipv6/test.yaml :--Cannot add multicast IPv6 address
285* :github:`4445` - sanitycheck --platform-limit is broken
286* :github:`4513` - parsetab.py is getting corrupted when multiple instance of sanitycheck is executed simultaneously
287* :github:`4549` - tests/crypto/mbedtls/testcase.yaml#test :Build failed
288* :github:`4566` - k_busy_wait( ) gives compilation error when CONFIG_SYS_CLOCK_TICKS_PER_SEC is set to 0
289* :github:`4568` - dts generation incorrect
290* :github:`4576` - no testcase.yaml for tests/drivers/spi/spi_loopback
291* :github:`4578` - tests/net/socket/udp/testcase.yaml#test : Build failed on esp32
292* :github:`4596` - tests/net/mgmt/testcase.yaml#test :failed due to un-handled exception
293* :github:`4597` - tests/drivers/ipm/testcase.yaml#test :unable to print the Expected output
294* :github:`4603` - sanitycheck either conceals information from user or spams it
295* :github:`4606` - usb mass storage : config waits for Vendor ID and Product ID from user during building
296* :github:`4633` - Implement flash page layout api in the Kinetis flash driver
297* :github:`4635` - xtensa-esp32-elf-gcc.exe: error: unrecognized command line option '-no-pie'
298* :github:`4653` - net: tcp->recv_max_ack isn't used
299* :github:`4666` - x86 device trees need interrupt controller nodes
300* :github:`4687` - Windows: Remove all dependencies on MSYS2
301* :github:`4699` - PWM LED Driver for ESP32
302* :github:`4705` -  tests/net/socket/tcp/ undefined reference to __getreent
303* :github:`4709` - tests/kernel/fatal/testcase.yaml#stack-sentinel : Kernel Panic
304* :github:`4724` - sanitycheck build_only option can be confusing
305* :github:`4772` - doc: add contributing info about shippable failures
306* :github:`4777` - need a testcase for version number of the kernel and version.h
307* :github:`4779` - net: tcp: FIN isn't sent when performing active close.
308* :github:`4826` - Bluetooth IPSP example does not reach main() on qemu_cortex_m3
309* :github:`4828` - device tree: Introduce bus objects (i2c-device)
310* :github:`4851` - cmake does not show verbose output of build tools
311* :github:`4885` - cmake: IS_TEST guessing gets thrown off by symlinks
312* :github:`4924` - dumb_http_server pollutes the source directory
313* :github:`4934` - net: 15.4 network interfaces use incorrect MTU setting of 127
314* :github:`4941` - LwM2M: support discovery other than '/'
315* :github:`4983` - ARMv8-M basic support
316* :github:`4989` - Bluetooth: PTS fails to connect to Zephyr
317* :github:`5010` - changes to included linker scripts are not picked up by the build system
318* :github:`5017` - Genuino/Arduino 101 Sensor Sample BMI160: Gyro Device not found
319* :github:`5091` - MPU fault at drivers/flash/soc_flash_nrf5.c:493 with NFFS enabled on nrf52840_pca10056
320* :github:`5101` - LwM2M: device hang after requesting a firmware update to a loopback device IP
321* :github:`5109` - yaml: fix key/value syntax to 'mapping' instead of 'series'
322* :github:`5130` - include guards missing in toolchain/gcc.h and toolchain/common.h
323* :github:`5136` - "Distinguishing Features" section in docs is outdated and needs an update
324* :github:`5143` - Cmake ignores setting CONFIG_ETH_MCUX_0=n in prj.conf
325* :github:`5148` - Lightweight flash storage layer
326* :github:`5162` - Reduce duplication in UUID definitions?
327* :github:`5184` - kernel system call handlers missing due to -Wl,--no-whole-archive
328* :github:`5221` - Build doesn't fail if total RAM usage is greater than the RAM available on the board
329* :github:`5226` - Compiling with -O0 causes the kobject text area to exceed the limit (linker error)
330* :github:`5228` - The build fails when building echo_server with nrf52840_pca10056
331* :github:`5240` - I2C is enabled by default on ESP32
332* :github:`5247` - Object tracing test case fails in NRF boards
333* :github:`5256` - _nano_tick_delta, sys_tick_delta, sys_tick_delta_32: not used or tested
334* :github:`5270` - Not all IEEE802154_MCR20A_RAW references were removed
335* :github:`5282` - net: IPv6 DAD is incorrect, wouldn't work ("always succeed") on mcast medium like Ethernet
336* :github:`5283` - reference to non-existing functions in arch/x86/core/intstub.S
337* :github:`5305` - flash: use generated FLASH_WRITE_BLOCK_SIZE in flash_stm32_api
338* :github:`5317` - IPSP deadlock during disconnect -> net_if_down
339* :github:`5326` - IPSP ping fails
340* :github:`5328` - build system should try and create conf if not found for non-zephyr SDK
341* :github:`5334` - CMake: Ninja support is broken
342* :github:`5345` - Cmake: ext: Header file include error: No such file or directory
343* :github:`5348` - rom_report is broken for some environments
344* :github:`5351` - Some libraries should automatically be linked with 'app'
345* :github:`5355` - qemu_x86/qemu_x86_nommu hangs on big executable files
346* :github:`5370` - [Coverity CID: 180699] Error handling issues in /tests/bluetooth/tester/src/gatt.c
347* :github:`5374` - merge_config.sh can behave differently from merge_config.py
348* :github:`5379` - sample: net/socket/http_get: no printf output
349* :github:`5382` - P2P Device Firmware Update (FOTA) over BLE and Serial
350* :github:`5391` - drivers: stm32 clock control: F0 Series with PREDIV1 Support uses wrong PLLSOURCE define for HSI clock
351* :github:`5401` - delta_ticks_from_prev become negative and waiting tasks never scheduled
352* :github:`5406` - UART1 on STM32F0 Series not working: errors in makro to enable clock
353* :github:`5418` - Provide a python based replacement for gperf
354* :github:`5419` - Provide a python based kconfig processing script, replacement for conf/mconf..
355* :github:`5428` - can not build for esp32
356* :github:`5444` - bluetooth controller fails when building with -Wshadow
357* :github:`5448` - STM32: Entropy test could not build
358* :github:`5449` - STM32: provide default configuration for entropy sample
359* :github:`5453` - gitlint should allow tabs in commit messages
360* :github:`5458` - [ESP32] Make error
361* :github:`5466` - sanitycheck: "CMake Error: : System Error: File name too long"
362* :github:`5467` - NFFS file system does no build when newlib libc is used
363* :github:`5471` - cmake errors at -B containing @
364* :github:`5476` - Native port (posix) to write own PID into a file
365* :github:`5477` - Native port (posix) to support receiving signals
366* :github:`5483` - Native port (POSIX) should accept command-line arguments
367* :github:`5484` - net: ARP/ND: Possibility for deadlocks and DoS
368* :github:`5486` - Bluetooth: Cannot connect to prevoiusly disconnected device when BT_PRIVACY is enabled
369* :github:`5488` - target_ld_options will apply flags that should be skipped
370* :github:`5493` - NFFS does not work with STM32L4 devices due to flash restrictions
371* :github:`5497` - cmake: allow to link external libraries with --whole-archive
372* :github:`5499` - config BT_CTLR_DEBUG_PINS
373* :github:`5504` - net: Incorrect logic for TCP "ackerr" statistics
374* :github:`5530` - [Coverity CID: 181848] Null pointer dereferences in /subsys/bluetooth/host/mesh/access.c
375* :github:`5531` - [Coverity CID: 181847] Incorrect expression in /samples/drivers/crypto/src/main.c
376* :github:`5539` - tests/kernel/fatal/stack-sentinel fails when asserts are enabled
377* :github:`5546` - (Stupid) questions about coverage reports
378* :github:`5548` - coverage should be collected from code built with -O0
379* :github:`5557` - Cloning Zephyr with git's core.autocrlf=true leads to obscure errors
380* :github:`5565` - net: Kconfig: NET_BUF_LOG and NET_BUF_SIMPLE_LOG unrightly select STDOUT_CONSOLE
381* :github:`5566` - kconfig: STDOUT_CONSOLE unrightly stuffed under subsys/debug
382* :github:`5576` - None of the :github:'XYZ' links work in the 1.10 release notes
383* :github:`5589` - Issue with using generic gcc cross compile with cmake
384* :github:`5601` - docs for cc3220sf_launchxl are out of date/incorrect
385* :github:`5608` - Bluetooth LE continuous scan weird behaviour
386* :github:`5619` - zephyr.git/tests/misc/test_build/testcase.yaml#test_newlib @ esp32:xtensa BUILD failed
387* :github:`5626` - Building samples failed
388* :github:`5640` - MacOS compile error with -std=gnu89
389* :github:`5645` - build failures with asserts enabled/newlib: arch/arm/core/cortex_m/mpu/nxp_mpu.c
390* :github:`5646` - userbuffer_validate test fails with double fault if CONFIG_USERSPACE disabled
391* :github:`5650` - i2c driver test on ESP32 fails with error
392* :github:`5651` - [In Progress] arch: arm: linkder: vt must be linked at address 0x00000000 for Cortex-M0
393* :github:`5660` - doc: make: make htmldocs fails in genrest.py/kconfiglib.py
394* :github:`5673` - kconfig regression: Existing configuration is overwritten on reconfiguration
395* :github:`5687` - docs: Confusing treatment of "Sensor Drivers" in Zephyr subsystem docs
396* :github:`5692` - sensors: struct sensor_value::val2 is confusingly defined
397* :github:`5693` - sensors: SENSOR_CHAN_HUMIDITY confusingly defined in "milli percent", SENSOR_CHAN_DISTANCE inconsistently defined in millimeters
398* :github:`5696` - net_app: Static vs DHCPv4 behavior appears to be not as described
399* :github:`5699` - Zephyr installs a broken pyOCD
400* :github:`5717` - CONTRIBUTING instructions are Linux-specific and don't work for Windows
401* :github:`5719` - need a zephyr-env.sh equivalent for Windows developers
402* :github:`5720` - Add CONFIG_NOOPTIMIZATIONS option
403* :github:`5722` - dts board configuration is incompatible with "build all" kind of test
404* :github:`5724` - [Windows] Instructions for setting up a bash-less environment uses bashisms
405* :github:`5726` - CI should use the same generator as the sanitycheck default
406* :github:`5737` - [Coverity CID: 182195] Error handling issues in /subsys/fs/fcb/fcb_walk.c
407* :github:`5740` - [Coverity CID: 181923] Incorrect expression in /subsys/bluetooth/controller/ll_sw/ctrl.c
408* :github:`5741` - [Coverity CID: 181922] Incorrect expression in /subsys/bluetooth/controller/ll_sw/ctrl.c
409* :github:`5743` - Windows and Linux are writing .config files with options re-ordered
410* :github:`5749` - Exception and Interrupt vector forwarding
411* :github:`5753` - Bluetooth: controller: In nRF5 radio. c RATEBOOST event not cleared in ISRs
412* :github:`5755` - Support flash in jlink runner
413* :github:`5756` - MCUboot-compatible builds in Zephyr
414* :github:`5760` - doc: device.h defines device_power_management_api group twice
415* :github:`5761` - NRF5 BLE radio driver: PPI18 is cleared unconditionally
416* :github:`5762` - Windows 10 WSL does not supports Native POSIX Boards
417* :github:`5766` - boards: nucleo_f413zh: Likely outdated OpenOCD info in docs
418* :github:`5771` - Linking issues with host cross compile with cmake
419* :github:`5772` - sanitycheck crashes if ZEPHYR_BASE has symlinks in its path
420* :github:`5778` - Add/fix flash controller nodes for NXP kinetis SoCs
421* :github:`5779` - bluetooth test_controller_4_0 fails to build on nrf52840_pca10056
422* :github:`5784` - make rom_report fails for qemu_x86 (not finding zephyr.bin)
423* :github:`5794` - wiki/Development-Model is out of date
424* :github:`5808` - msys2 getting started instructions are missing Ninja install step
425* :github:`5817` - socket.h: Using #define for POSIX redefinition of zsock\_ functions has unintended consequences
426* :github:`5821` - [MSYS2] Unable to build Zephyr
427* :github:`5823` - Bluetooth: Collision during Start Encryption procedure
428* :github:`5836` - spi: stm32: convert remaining boards that support SPI to using dts
429* :github:`5853` - Using newlibc in a project breaks 'rom_report' and 'ram_report' targets.
430* :github:`5866` - ram_report not working for qemu targets
431* :github:`5877` - sensors: Cleanup Kconfig for address, driver & bus name
432* :github:`5881` - enabling THREAD_MONITOR causes tests to fail
433* :github:`5886` - [Coverity CID: 182602] Integer handling issues in /drivers/interrupt_controller/system_apic.c
434* :github:`5887` - [Coverity CID: 182597] Control flow issues in /drivers/sensor/vl53l0x/vl53l0x.c
435* :github:`5888` - [Coverity CID: 182594] Control flow issues in /drivers/sensor/lsm6ds0/lsm6ds0.c
436* :github:`5889` - [Coverity CID: 182593] Control flow issues in /drivers/sensor/vl53l0x/vl53l0x.c
437* :github:`5890` - [Coverity CID: 182588] Integer handling issues in /drivers/sensor/hts221/hts221.c
438* :github:`5903` - Code coverage reports seem wrong
439* :github:`5919` - Remove obsolete FLASH_DRIVER_NAME
440* :github:`5938` - Incorrectly reported coverage changes
441* :github:`5952` - API k_delayed_work_submit_to_queue() make a delayed_work unusable
442* :github:`5958` - "Ninja flash" swallows user prompts
443* :github:`5968` - datastructure for LIFO
444* :github:`5982` - nRF5x  subscribe will cause HardFault while disconnect and reconnect
445* :github:`5989` - workstation setup instructions are broken for Fedora
446* :github:`5992` - doc: Discrepancy in Zephyr memory domain API documentation
447* :github:`5994` - samples/bluetooth/ipsp: build failed for MICRO-BIT & NRF51-PCA10028 HW
448* :github:`5996` - Need a "ps aux" like command to list all running threads and their attributes
449* :github:`6010` - Removal of old HTTP API is causing errors and faults
450* :github:`6013` - updated workstations setup breaks FC27
451* :github:`6023` - Bluetooth: Invalid behaviour of Transport Layer after Incomplete timer expiration
452* :github:`6025` - mbedTLS: Buffer overflow security issue, requires upgrade to 2.7.0
453* :github:`6050` - IPSP sample failed: Cannot bind IPv6 mcast (-2)
454* :github:`6062` - build failure in tests/boards/altera_max10/i2c_master with sys log enabled
455* :github:`6064` - k_is_in_isr() returns false inside "direct" interrupts on several arches
456* :github:`6081` - echo server crash from corrupt ICMPv4 packet
457* :github:`6083` - Bluetooth: Regression in MESH tests
458* :github:`6091` - [Coverity CID: 182780] Error handling issues in /samples/net/sockets/http_get/src/http_get.c
459* :github:`6092` - [Coverity CID: 182779] Memory - corruptions in /drivers/flash/soc_flash_nios2_qspi.c
460* :github:`6102` - [Coverity CID: 182769] Error handling issues in /subsys/bluetooth/host/mesh/beacon.c
461* :github:`6121` - doc: unit tests documentation refers to non existing sample code
462* :github:`6127` - net: Semantics of CONFIG_NET_BUF_POOL_USAGE changed (incorrectly)
463* :github:`6131` - mbedtls: Name of config-mini-tls1_2.h contradicts description
464* :github:`6135` - build error with gcc 7.3
465* :github:`6164` - timer: cortex_m: Incorrect read of clock cycles counter after idle tickless period
466* :github:`6185` - [MSYS2] Unable to build hello_world sample
467* :github:`6194` - K64F ethernet regression since f7ec62eb
468* :github:`6197` - echo server crash from corrupt ICMPv6 packet
469* :github:`6204` - bluetooth controller: crc init is not random
470* :github:`6217` - echo server crash from corrupt ICMPv6 NS packet
471* :github:`6229` - Bluetooth, nRF51: ticker_success_assert during flash erase
472* :github:`6231` - samples/bluetooth/eddystone: failed to connect with central device
473* :github:`6232` - samples/bluetooth/central_hr: Run time HARD fault occurs
474* :github:`6233` - samples/bluetooth/central: Run time HARD fault occurs
475* :github:`6235` - echo server crash from ICMPv6 NS source link layer address anomaly
476* :github:`6238` - spi: stm32f0 IRQ priority is invalid
477* :github:`6240` - "Previous execution" and "Next execution" display problem.
478* :github:`6257` - test, please ignore
479* :github:`6261` - [Coverity CID: 182887] Control flow issues in /drivers/gpio/gpio_esp32.c
480* :github:`6263` - ARC: Implement userspace
481* :github:`6264` - ARM: Implement Userspace
482* :github:`6279` - Add doc to samples/bluetooth/mesh & samples/bluetooth/mesh_demo
483* :github:`6284` - docs.zephyrproject.org should be served with HTTPS
484* :github:`6309` - Non-blocking BSD sockets not working as expected
485* :github:`6312` - The shell sample does not working on k64f board
486* :github:`6315` - echo server crash from malformed ICMPv6 NA
487* :github:`6322` - shell crashes when enter is pressed
488* :github:`6323` - "SPI master port SPI_1 not found* when porting spi ethernet device enc28j60 on stm32_min_dev board
489* :github:`6324` - doc: Project coding standards: page not found
490* :github:`6333` - How do I implement GPIO on the f429zi board?
491* :github:`6339` - samples/drivers/gpio Sample doesn't work on ESP32 after SMP support was added
492* :github:`6346` - ESP-32 preemption regressions with asm2
493* :github:`6382` - echo server: crash from unsolicited RA reachable time anomaly
494* :github:`6393` - echo server: crash from NS flood
495* :github:`6429` - How to add custom driver subdirectory to application project?
496* :github:`6432` - daily doc build pages don't indicate their version
497* :github:`6439` - ESP32 doesn't compile in master
498* :github:`6444` - tests/kernel/mem_protect/obj_validation/ fails to build
499* :github:`6455` - k_sleep() fails on ESP32 sometimes
500* :github:`6469` - tests/crypto/ecc_dsa results in FATAL EXCEPTION on esp32
501* :github:`6470` - tests/crypto/ecc_dh results in FATAL EXCEPTION on esp32
502* :github:`6471` - tests/crypto/aes results in Assertion failure on esp32
503* :github:`6472` - tests/crypto/sha256 results in Assertion failure on esp32
504* :github:`6505` - Userspace support: stack corruption for ARC em7d v2.3
505