Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update installed headers, update submodules #1001

Merged
merged 2 commits into from
Feb 7, 2024
Merged

Conversation

lukileczo
Copy link
Member

@lukileczo lukileczo commented Feb 5, 2024

Description

  • libphoenix fed7350...10af1b0 (5):

    riscv64/reboot: fix include path
    unistd/alarm: update tid type
    !sys/interrupt: update function signature
    clean up includes
    riscv64: add system reset handling

  • phoenix-rtos-build 14a4a73...132890f (1):

    host-generic: install kernel headers

  • phoenix-rtos-corelibs 25343d8...3ec9db3 (2):

    libstorage: use off_t instead of offs_t
    update installed headers include path

  • phoenix-rtos-devices 7f980d4...ac27d41 (5):

    dma: imx6ull, imxrt: fix handle type in sdma_init
    multiple files: use off_t instead of offs_t
    update installed headers include path
    imxrt-multi: disallow CM4 lockup to reset system
    imxrt-multi: add CM4 core reset

  • phoenix-rtos-filesystems 5d26712...8af595a (1):

    multiple files: use off_t instead of offs_t

  • phoenix-rtos-kernel 56a3b7a...1c700bb (6):

    Makefile: set headers install dir on host
    remove offs_t definition
    !proc/userintr: update cond type in setHandler
    !proc/threads: update id type in threadCreate
    !syscalls: update handle type
    !clean up installed headers

  • phoenix-rtos-lwip 9dd6b7c...4109940 (2):

    wi-fi/lwip: use off_t instead of offs_t
    update installed headers include path

  • phoenix-rtos-tests d1ce098...783845a (2):

    fs/test_fcntl: cast off_t to long long int printf
    update installed headers include path

  • phoenix-rtos-utils b3486af...992f5fc (3):

    multiple files: use off_t instead of offs_t
    psh: cast off_t before printing
    update installed headers include path

  • plo a688ce0...a26067c (2):

    hal/ia32/efi/kernel: remove offs_t
    update installed headers include path

Motivation and Context

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

How Has This Been Tested?

  • Already covered by automatic testing.
  • New test added: (add PR link here).
  • Tested by hand on: (list targets here).

Checklist:

  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing linter checks and tests passed.
  • My changes generate no new compilation warnings for any of the targets.

Special treatment

  • This PR needs additional PRs to work (list the PRs, preferably in merge-order).
  • I will merge this PR by myself when appropriate.

@lukileczo lukileczo force-pushed the lukileczo/headers branch 2 times, most recently from 8fc5055 to da9cb9e Compare February 5, 2024 12:29
Copy link

github-actions bot commented Feb 5, 2024

Unit Test Results

6 410 tests  ±0   5 780 ✅ ±0   33m 2s ⏱️ -56s
  354 suites ±0     630 💤 ±0 
    1 files   ±0       0 ❌ ±0 

Results for commit a3da341. ± Comparison against base commit eea3863.

♻️ This comment has been updated with latest results.

@lukileczo lukileczo force-pushed the lukileczo/headers branch 2 times, most recently from a1ca0cf to 67e5831 Compare February 5, 2024 12:59
off_t is now defined as 64-bit signed integer,
which type may differ between systems.

JIRA: RTOS-125
@lukileczo lukileczo force-pushed the lukileczo/headers branch 2 times, most recently from 30d4cfb to 4eaf906 Compare February 5, 2024 13:24
@lukileczo lukileczo requested review from agkaminski and removed request for agkaminski February 5, 2024 13:37
@lukileczo lukileczo force-pushed the lukileczo/headers branch 2 times, most recently from 8a2ac19 to 3686cf3 Compare February 7, 2024 11:07
@lukileczo lukileczo changed the title update installed headers update installed headers, update submodules Feb 7, 2024
@lukileczo lukileczo marked this pull request as ready for review February 7, 2024 11:07
@lukileczo lukileczo requested a review from agkaminski February 7, 2024 11:07
* libphoenix fed7350...10af1b0 (5):
  > riscv64/reboot: fix include path
  > unistd/alarm: update `tid` type
  > !sys/interrupt: update function signature
  > clean up includes
  > riscv64: add system reset handling

* phoenix-rtos-build 14a4a73...132890f (1):
  > host-generic: install kernel headers

* phoenix-rtos-corelibs 25343d8...3ec9db3 (2):
  > libstorage: use off_t instead of offs_t
  > update installed headers include path

* phoenix-rtos-devices 7f980d4...ac27d41 (5):
  > dma: imx6ull, imxrt: fix handle type in `sdma_init`
  > multiple files: use off_t instead of offs_t
  > update installed headers include path
  > imxrt-multi: disallow CM4 lockup to reset system
  > imxrt-multi: add CM4 core reset

* phoenix-rtos-filesystems 5d26712...8af595a (1):
  > multiple files: use off_t instead of offs_t

* phoenix-rtos-kernel 56a3b7a...1c700bb (6):
  > Makefile: set headers install dir on host
  > remove offs_t definition
  > !proc/userintr: update cond type in `setHandler`
  > !proc/threads: update `id` type in `threadCreate`
  > !syscalls: update handle type
  > !clean up installed headers

* phoenix-rtos-lwip 9dd6b7c...4109940 (2):
  > wi-fi/lwip: use off_t instead of offs_t
  > update installed headers include path

* phoenix-rtos-tests d1ce098...783845a (2):
  > fs/test_fcntl: cast off_t to long long int printf
  > update installed headers include path

* phoenix-rtos-utils b3486af...992f5fc (3):
  > multiple files: use off_t instead of offs_t
  > psh: cast `off_t` before printing
  > update installed headers include path

* plo a688ce0...a26067c (2):
  > hal/ia32/efi/kernel: remove offs_t
  > update installed headers include path
@lukileczo lukileczo merged commit 4932b4c into master Feb 7, 2024
30 checks passed
@lukileczo lukileczo deleted the lukileczo/headers branch February 7, 2024 11:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants