- if we get to arch code without an ATF_COMPILER, default it, no matter what the value of ATF_COMPILE is (yes/no/?)
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
|
|
#
|
|
# This file is a part of the Armbian Build Framework
|
|
# https://github.com/armbian/build/
|
|
#
|
|
# 'common.conf' is already sourced when this arch is sourced.
|
|
|
|
declare -g ARCH='loong64'
|
|
declare -g ARCHITECTURE='loongarch'
|
|
declare -g QEMU_BINARY='qemu-loongarch64-static'
|
|
declare -g IMAGE_PARTITION_TABLE='gpt'
|
|
declare -g KERNEL_SRC_ARCH='loongarch'
|
|
|
|
# Linux root has a different Type-UUID for every architecture
|
|
# See https://uapi-group.org/specifications/specs/discoverable_partitions_specification/
|
|
declare -g PARTITION_TYPE_UUID_ROOT="77055800-792c-4f94-b39a-98c91b762bb6" # "Linux root (LoongArch 64-bit)"
|
|
|
|
# Defaults, if not set by board or family.
|
|
declare -g KERNEL_IMAGE_TYPE="${KERNEL_IMAGE_TYPE:-"vmlinux"}"
|
|
declare -g KERNEL_INSTALL_TYPE="${KERNEL_INSTALL_TYPE:-"install"}"
|
|
declare -g NAME_KERNEL="${NAME_KERNEL:-"vmlinux"}"
|
|
declare -g NAME_INITRD="${NAME_INITRD:-"initrd.img"}"
|
|
|
|
declare -g KERNEL_COMPILER="${KERNEL_COMPILER:-"loongarch64-linux-gnu-"}"
|
|
declare -g UBOOT_COMPILER="${UBOOT_COMPILER:-"loongarch64-linux-gnu-"}"
|
|
|
|
true # make sure to exit with 0 status; this protects against shortcircuits etc above.
|