Searched +full:riscv64 +full:- +full:linux +full:- +full:gnu +full:- (Results 1 – 4 of 4) sorted by relevance
4 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 …]
2 # SPDX-License-Identifier: BSD-2-Clause18 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 …]
6 group: ci-${{ github.ref }} # unique per branch7 cancel-in-progress: true # cancel previous runs on the same branch11 runs-on: ubuntu-latest14 - name: Checkout17 fetch-depth: 0 # full history so checkpatch can check commit IDs in commit messages18 - name: Update Git config19 run: git config --globa[all...]
1 # 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.mk14 # 6. Subsystem-specific makefiles (*/sub.mk)16 # Actual values used during the build are output to $(out-dir)/conf.mk19 # Cross-compiler prefix and suffix21 CROSS_COMPILE ?= arm-linux-gnueabihf-22 # Don't cross-compile if building on aarch64 natively23 ifneq ($(shell uname -m),aarch64)[all …]