CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/config/sources/armhf.conf
Views: 3957
1
#!/bin/bash
2
#
3
# Copyright (c) 2013-2021 Igor Pecovnik, igor.pecovnik@gma**.com
4
#
5
# This file is licensed under the terms of the GNU General Public
6
# License version 2. This program is licensed "as is" without any
7
# warranty of any kind, whether express or implied.
8
9
INITRD_ARCH=arm
10
QEMU_BINARY="qemu-arm-static"
11
ARCHITECTURE=arm
12
ARCH=armhf
13
KERNEL_IMAGE_TYPE=Image
14
CAN_BUILD_STRETCH=yes
15
GIT_SERVER="https://github.com/orangepi-xunlong"
16
17
[[ -z $UBOOT_COMPILER ]] && UBOOT_COMPILER="arm-none-linux-gnueabihf-"
18
[[ -z $UBOOT_USE_GCC ]] && UBOOT_USE_GCC='> 8.0'
19
[[ -z $BOOTSOURCE ]] && BOOTSOURCE="${GIT_SERVER}/u-boot-orangepi.git"
20
[[ -z $BOOTDIR ]] && BOOTDIR="${SRC}/u-boot"
21
[[ -z $BOOTBRANCH ]] && BOOTBRANCH='branch:v2020.04'
22
23
[[ -z $KERNEL_COMPILER ]] && KERNEL_COMPILER="arm-none-linux-gnueabihf-"
24
[[ -z $KERNEL_USE_GCC ]] && KERNEL_USE_GCC='> 8.0'
25
[[ -z $KERNELDIR ]] && KERNELDIR="${SRC}/kernel"
26
[[ -z $KERNELSOURCE ]] && KERNELSOURCE="${GIT_SERVER}/linux-orangepi.git"
27
[[ -z $KERNELBRANCH ]] && KERNELBRANCH='branch:orange-pi-5.4'
28
29