| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ## Package Base Information
- name: osp-nsdk_threadx
- owner: nuclei
- version: 6.4.1
- description: ThreadX Port Package for Nuclei SDK
- type: osp
- keywords:
- - rtos
- - risc-v
- license: MIT
- homepage: https://github.com/eclipse-threadx/threadx
- ## Package Dependency
- dependencies:
- - name: sdk-nuclei_sdk
- version:
- ## Package Configurations
- configuration:
- ## Source Code Management
- codemanage:
- installdir: ThreadX
- copyfiles:
- - path: ["common", "ports/nuclei/gcc", "ports/nuclei/port.c", "ports/nuclei/tx_port.h"]
- condition: $( ${nuclei_smp} == "" || ${nuclei_smp} == 1 )
- - path: ["common_smp", "ports_smp/nuclei/gcc", "ports_smp/nuclei/port.c", "ports_smp/nuclei/tx_port.h"]
- condition: $( ${nuclei_smp} != "" && ${nuclei_smp} > 1 )
- incdirs:
- - path: ["common/inc", "ports/nuclei"]
- condition: $( ${nuclei_smp} == "" || ${nuclei_smp} == 1 )
- - path: ["common_smp/inc", "ports_smp/nuclei"]
- condition: $( ${nuclei_smp} != "" && ${nuclei_smp} > 1 )
- libdirs:
- ldlibs:
- ## Build Configuration
- buildconfig:
- - type: common
- common_defines:
- - defines: RTOS_THREADX
|