Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/next/external/config/sources/arm64.conf
Views: 3957
#!/bin/bash1#2# Copyright (c) 2013-2021 Igor Pecovnik, igor.pecovnik@gma**.com3#4# This file is licensed under the terms of the GNU General Public5# License version 2. This program is licensed "as is" without any6# warranty of any kind, whether express or implied.7#8# This file is a part of the Armbian build script9# https://github.com/armbian/build/10QEMU_BINARY="qemu-aarch64-static"11ARCHITECTURE=arm6412ARCH=arm6413KERNEL_IMAGE_TYPE=Image14CAN_BUILD_STRETCH=yes15GIT_SERVER="https://github.com/orangepi-xunlong"1617[[ -z $INITRD_ARCH ]] && INITRD_ARCH=arm641819if [[ $BOARD =~ orangepipch5|orangepioneh5 ]]; then20ARCH=armhf21QEMU_BINARY="qemu-arm-static"22fi2324if [ "$(uname -m)" = "aarch64" ]; then25[[ $ATF_COMPILE != "no" && -z $ATF_COMPILER ]] && ATF_COMPILER="aarch64-linux-gnu-"26[[ -z $UBOOT_COMPILER ]] && UBOOT_COMPILER="aarch64-linux-gnu-"27[[ -z $KERNEL_COMPILER ]] && KERNEL_COMPILER="aarch64-linux-gnu-"28else29[[ $ATF_COMPILE != "no" && -z $ATF_COMPILER ]] && ATF_COMPILER="aarch64-none-linux-gnu-"30[[ -z $UBOOT_COMPILER ]] && UBOOT_COMPILER="aarch64-none-linux-gnu-"31[[ -z $KERNEL_COMPILER ]] && KERNEL_COMPILER="aarch64-none-linux-gnu-"32fi3334[[ $ATF_COMPILE != "no" && -z $ATFSOURCE ]] && ATFSOURCE='https://github.com/ARM-software/arm-trusted-firmware'35[[ $ATF_COMPILE != "no" && -z $ATFDIR ]] && ATFDIR='arm-trusted-firmware-sunxi-mainline'36[[ $ATF_COMPILE != "no" && -z $ATFBRANCH ]] && ATFBRANCH='branch:master'37[[ $ATF_COMPILE != "no" && -z $ATF_USE_GCC ]] && ATF_USE_GCC='> 8.0'3839[[ -z $UBOOT_USE_GCC ]] && UBOOT_USE_GCC='> 8.0'40[[ -z $BOOTSOURCE ]] && BOOTSOURCE="${GIT_SERVER}/u-boot-orangepi.git"41[[ -z $BOOTDIR ]] && BOOTDIR="${SRC}/u-boot"42[[ -z $BOOTBRANCH ]] && BOOTBRANCH='branch:v2020.04'4344[[ -z $KERNEL_USE_GCC ]] && KERNEL_USE_GCC='> 8.0'45[[ -z $KERNELDIR ]] && KERNELDIR="${SRC}/kernel"46[[ -z $KERNELSOURCE ]] && KERNELSOURCE="${GIT_SERVER}/linux-orangepi.git"47[[ -z $KERNELBRANCH ]] && KERNELBRANCH='branch:orange-pi-5.4'484950