Home
last modified time | relevance | path

Searched +full:riscv64 +full:- +full:linux +full:- +full:gnu +full:- (Results 1 – 4 of 4) sorted by relevance

/optee_os/.devcontainer/
H A DDockerfile.vscode4 RUN apt update && apt upgrade -y && apt-get install -y \
5 build-essential \
14 device-tree-compiler \
17 gcc-aarch64-linux-gnu \
18 gcc-arm-linux-gnueabihf \
19 gcc-riscv64-linux-gnu \
20 gdb-multiarch \
24 libssl-dev \
25 lsb-release \
27 python3-pip \
[all …]
/optee_os/scripts/
H A Dsymbolize.py2 # SPDX-License-Identifier: BSD-2-Clause
18 TEE_LOAD_ADDR_RE = re.compile(r'TEE load address @ (?P<load_addr>0x[0-9a-f]+)')
22 r'[UEIDFM]/(TC|LD):([0-9]+ )?(\?*|[0-9]*) [0-9]* +(?P<addr>0x[0-9a-f]+)')
23 ABORT_ADDR_RE = re.compile(r'-abort at address (?P<addr>0x[0-9a-f]+)')
24 TA_PANIC_RE = re.compile(r'TA panicked with code (?P<code>0x[0-9a-f]+)')
25 REGION_RE = re.compile(r'region +[0-9]+: va (?P<addr>0x[0-9a-f]+) '
26 r'pa 0x[0-9a-f]+ size (?P<size>0x[0-9a-f]+)'
27 r'( flags .{4} (\[(?P<elf_idx>[0-9]+)\])?)?')
28 ELF_LIST_RE = re.compile(r'\[(?P<idx>[0-9]+)\] (?P<uuid>[0-9a-f\-]+)'
29 r' @ (?P<load_addr>0x[0-9a-f\-]+)')
[all …]
/optee_os/.github/workflows/
H A Dci.yml6 group: ci-${{ github.ref }} # unique per branch
7 cancel-in-progress: true # cancel previous runs on the same branch
11 runs-on: ubuntu-latest
14 - name: Checkout
17 fetch-depth: 0 # full history so checkpatch can check commit IDs in commit messages
18 - name: Update Git config
19 run: git config --globa
[all...]
/optee_os/mk/
H A Dconfig.mk1 # Default configuration values for OP-TEE core (all platforms).
3 # Platform-specific overrides are in core/arch/arm32/plat-*/conf.mk.
4 # Some subsystem-specific defaults are not here but rather in */sub.mk.
12 # 4. The platform-specific configuration file: core/arch/arm32/plat-*/conf.mk
14 # 6. Subsystem-specific makefiles (*/sub.mk)
16 # Actual values used during the build are output to $(out-dir)/conf.mk
19 # Cross-compiler prefix and suffix
21 CROSS_COMPILE ?= arm-linux-gnueabihf-
22 # Don't cross-compile if building on aarch64 natively
23 ifneq ($(shell uname -m),aarch64)
[all …]