-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* libphoenix 49f0324...96c4c08 (4): > feat(signal): implement sigisemptyset and sigfillset > fix(signal): set errno on error > include: remove EALREADY, EINPROGRESS errnos > fix(exit): fflush after calling atexit handlers * phoenix-rtos-build 9acad4d...97fb495 (1): > build.sh: add mkrofs to hostutils list * phoenix-rtos-doc e7909f6...8c548c2 (2): > quickstart: add sparcv8leon3-gr716-mimas target > order images * phoenix-rtos-filesystems ac000e1...63e36a5 (5): > rofs: fix review comments > rofs: fix TRACE format specifiers > rofs: fix dirfind return value > rofs: support native target endianness > rofs: introduce readonly file system * phoenix-rtos-hostutils 8472cfa...03e833e (2): > mkrofs: allow creating BE & LE filesystems > mkrofs: introduce tool: make Read Only FS * phoenix-rtos-kernel ca23837...b8de910 (2): > sparcv8leon3: allocate space for copied syspage > riscv64: allocate space for copied syspage * phoenix-rtos-tests 21d61a7...3a22101 (1): > busybox: make ls test to run first due to #1117 issue
- Loading branch information
Showing
7 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Submodule libphoenix
updated
3 files
+0 −2 | include/errno.h | |
+24 −8 | signal/signal.c | |
+1 −1 | stdlib/exit.c |
Submodule phoenix-rtos-doc
updated
28 files
Submodule phoenix-rtos-filesystems
updated
5 files
+1 −1 | _targets/Makefile.armv7m7-imxrt106x | |
+10 −0 | rofs/Makefile | |
+570 −0 | rofs/rofs.c | |
+95 −0 | rofs/rofs.h | |
+212 −0 | rofs/srv.c |
Submodule phoenix-rtos-kernel
updated
5 files
+8 −3 | hal/riscv64/_init.S | |
+1 −2 | hal/riscv64/pmap.c | |
+10 −10 | hal/sparcv8leon3/gaisler/generic/_init.S | |
+10 −10 | hal/sparcv8leon3/gaisler/gr712rc/_init.S | |
+5 −5 | hal/sparcv8leon3/pmap.c |