@@ -9,18 +9,32 @@ We are pleased to announce the release of Zephyr kernel version 1.10.0.
99
1010Major enhancements with this release include:
1111
12- * Integration with MCUBOOT Bootloader
13- * Additional implementation of MMU/MPU support
14- * Build and Configuration System ( CMake)
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.
1515* Newtron Flash Filesystem (NFFS) Support
16- * Increased testsuite coverage
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.
1720
1821The following sections provide detailed lists of changes by component.
1922
2023Kernel
2124******
2225
2326* 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+
2438* Add the following application-facing memory domain APIs:
2539
2640 * k_mem_domain_init() - to initialize a memory domain
@@ -41,6 +55,7 @@ Architectures
4155
4256* nrf52: Add support for LOW_POWER state and SYSTEM_OFF
4357* Architecture specific memory domain APIs added
58+ * Tickless Kernel Implementation for Xtensa
4459* Added support for the following ARM SoCs:
4560
4661 * NXP i.MX RT1052
@@ -50,7 +65,9 @@ Architectures
5065
5166Boards
5267******
53-
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.
5471* Power Management for nrf52 series SOC
5572* Added support for the following ARM boards:
5673
@@ -70,6 +87,13 @@ Drivers and Sensors
7087
7188* timer: Add Support for TICKLESS KERNEL in xtensa_sys_timer
7289* 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
7397
7498Networking
7599**********
@@ -78,7 +102,7 @@ Networking
78102* Loopback network interface support added. This is used in testing only.
79103* LWM2M multi-fragment network packet support added.
80104* New CoAP library implementation, supporting longer network packets.
81- * Old ZoAP library deprecated .
105+ * Deprecated ZoAP library.
82106* mDNS (multicast DNS) support added.
83107* SNTP (Simple Network Time Protocol) client library added.
84108* Various fixes for: TCP, RPL, ARP, DNS, LWM2M, Ethernet, net-app API, Network
@@ -444,6 +468,7 @@ release:
444468* :github: `4757 ` - kw41z-frdm: assertion failure while setting IRQ priority
445469* :github: `4759 ` - [PTS] GATT/CL/GAW/BV-02-C fails with INCONC
446470* :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
447472* :github: `4780 ` - [Coverity CID: 178794] Error handling issues in /tests/subsys/dfu/mcuboot/src/main.c
448473* :github: `4781 ` - [Coverity CID: 178793] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c
449474* :github: `4782 ` - [Coverity CID: 178792] Memory - illegal accesses in /subsys/net/lib/http/http_app_server.c
0 commit comments