-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* libphoenix 96c4c08...5073395 (1): > arm: convert __ieee754_sqrt(f) to macros * phoenix-rtos-build 97fb495...f335a5c (4): > build: add noexecstack flag > toolchain: update multilib configuration for SPARC > toolchain: add patch with armv7-r/v8-r multilib config > toolchain: add PIC flags to armv7-r/v8-r in libstdcpp * phoenix-rtos-doc 4ac6a9c...6eae539 (2): > libc/functions page adjustments > css: hide theme-toggle icon * phoenix-rtos-kernel bcc5c41...1f9ea40 (8): > mprotect: fix mapEntrySplit > Cortex-M: NVIC and SCB code duplication cleanup > process_load: copy p_filesz bytes instead of p_memsz > hal/imxrt10xx: remove enet PLL deinit > hal/ia32: change I/O input parameter to u16 > mmap: allow for not page aligned len > hal/ia32: cast operands to correct sizes > build: remove program headers from first loadable segment * phoenix-rtos-lwip b1ab9f6...4896655 (4): > Update submodule > Add IPv6 address autoconfiguration > drivers/rtl8139cp.c: Change multicast filters > port/sockets.c: Fix IPv6 ioctls * phoenix-rtos-ports b659aa2...df40217 (2): > build: Adapt ports to a new common definitions of paths (prefixes) > build: Move common definitions/actions from ports to a single spot * phoenix-rtos-tests 3a22101...a20b474 (7): > psh: exclude touch test on imx117x due to #1097 issue > trunner: disable rebooting each test > psh: enable test execution in new psh for imxrt117x > mmap: add test for unaligned len > trunner.tools: fix error message in wait_for_vid_pid() > psh/trunner: fix wrong message in case of failing > unity: add handling fails without message in harness
- Loading branch information
1 parent
86fe443
commit 1c318f4
Showing
7 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Submodule libphoenix
updated
5 files
+3 −18 | include/arch/armv7a/arch.h | |
+4 −18 | include/arch/armv7m/arch.h | |
+4 −18 | include/arch/armv8m/arch.h | |
+4 −18 | include/arch/armv8r/arch.h | |
+0 −4 | math/power.c |
Submodule phoenix-rtos-build
updated
4 files
+1 −0 | Makefile.common | |
+25 −22 | toolchain/gcc-9.5.0-06-libstdcpp.patch | |
+5 −5 | toolchain/gcc-9.5.0-07-sparc-phoenix.patch | |
+113 −0 | toolchain/gcc-9.5.0-11-armv-r-phoenix-multilib.patch |
Submodule phoenix-rtos-doc
updated
3 files
+2 −7 | _static/css/furo-phoenix.css | |
+4 −2 | _static/js/functions.js | |
+28 −28 | libc/functions/index.md |
Submodule phoenix-rtos-kernel
updated
54 files
Submodule phoenix-rtos-lwip
updated
6 files
+11 −0 | drivers/netif-driver.c | |
+2 −2 | drivers/rtl8139cp.c | |
+3 −0 | include/route.h | |
+1 −1 | lib-lwip | |
+7 −0 | port/devs.c | |
+12 −8 | port/sockets.c |
Submodule phoenix-rtos-ports
updated
23 files
+7 −11 | azure_sdk/build.sh | |
+45 −43 | build.sh | |
+83 −0 | build.subr | |
+17 −20 | busybox/build.sh | |
+13 −16 | coremark/build.sh | |
+11 −14 | curl/build.sh | |
+14 −17 | dropbear/build.sh | |
+10 −13 | fs_mark/build.sh | |
+10 −13 | jansson/build.sh | |
+9 −12 | libevent/build.sh | |
+13 −16 | lighttpd/build.sh | |
+7 −10 | lua/build.sh | |
+9 −12 | lzo/build.sh | |
+12 −15 | mbedtls/build.sh | |
+10 −14 | micropython/build.sh | |
+9 −12 | openiked/build.sh | |
+14 −17 | openssl/build.sh | |
+12 −15 | openvpn/build.sh | |
+10 −13 | pcre/build.sh | |
+8 −12 | picocom/build.sh | |
+9 −12 | sscep/build.sh | |
+9 −12 | wpa_supplicant/build.sh | |
+8 −11 | zlib/build.sh |
Submodule phoenix-rtos-tests
updated
10 files
+2 −0 | mem/Makefile | |
+4 −1 | mem/test.yaml | |
+97 −0 | mem/test_mmap_new.c | |
+3 −0 | psh/test.yaml | |
+2 −10 | psh/tools/psh.py | |
+7 −5 | trunner/harness/psh.py | |
+3 −3 | trunner/harness/unity.py | |
+1 −1 | trunner/target/armv7a9.py | |
+0 −6 | trunner/target/armv7m7.py | |
+10 −10 | trunner/tools/phoenix.py |