642 lines
23 KiB
Bash
Executable File
642 lines
23 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2013-2021 Igor Pecovnik, igor.pecovnik@gma**.com
|
|
#
|
|
# This file is licensed under the terms of the GNU General Public
|
|
# License version 2. This program is licensed "as is" without any
|
|
# warranty of any kind, whether express or implied.
|
|
#
|
|
# Main program
|
|
#
|
|
|
|
|
|
cleanup_list() {
|
|
local varname="${1}"
|
|
local list_to_clean="${!varname}"
|
|
list_to_clean="${list_to_clean#"${list_to_clean%%[![:space:]]*}"}"
|
|
list_to_clean="${list_to_clean%"${list_to_clean##*[![:space:]]}"}"
|
|
echo ${list_to_clean}
|
|
}
|
|
|
|
|
|
|
|
|
|
if [[ $(basename "$0") == main.sh ]]; then
|
|
|
|
echo "Please use build.sh to start the build process"
|
|
exit 255
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# default umask for root is 022 so parent directories won't be group writeable without this
|
|
# this is used instead of making the chmod in prepare_host() recursive
|
|
umask 002
|
|
|
|
# destination
|
|
if [ -d "$CONFIG_PATH/output" ]; then
|
|
DEST="${CONFIG_PATH}"/output
|
|
else
|
|
DEST="${SRC}"/output
|
|
fi
|
|
|
|
[[ -z $REVISION ]] && REVISION="3.0.8"
|
|
|
|
[[ $DOWNLOAD_MIRROR == "china" ]] && NTP_SERVER="cn.pool.ntp.org"
|
|
|
|
if [[ $BUILD_ALL != "yes" ]]; then
|
|
# override stty size
|
|
[[ -n $COLUMNS ]] && stty cols $COLUMNS
|
|
[[ -n $LINES ]] && stty rows $LINES
|
|
TTY_X=$(($(stty size | awk '{print $2}')-6)) # determine terminal width
|
|
TTY_Y=$(($(stty size | awk '{print $1}')-6)) # determine terminal height
|
|
fi
|
|
|
|
# We'll use this title on all menus
|
|
backtitle="Orange Pi building script, http://www.orangepi.org"
|
|
titlestr="Choose an option"
|
|
|
|
# Warnings mitigation
|
|
[[ -z $LANGUAGE ]] && export LANGUAGE="en_US:en" # set to english if not set
|
|
[[ -z $CONSOLE_CHAR ]] && export CONSOLE_CHAR="UTF-8" # set console to UTF-8 if not set
|
|
|
|
# Libraries include
|
|
|
|
# shellcheck source=debootstrap.sh
|
|
source "${SRC}"/scripts/debootstrap.sh # system specific install
|
|
# shellcheck source=image-helpers.sh
|
|
source "${SRC}"/scripts/image-helpers.sh # helpers for OS image building
|
|
# shellcheck source=distributions.sh
|
|
source "${SRC}"/scripts/distributions.sh # system specific install
|
|
# shellcheck source=desktop.sh
|
|
source "${SRC}"/scripts/desktop.sh # desktop specific install
|
|
# shellcheck source=compilation.sh
|
|
source "${SRC}"/scripts/compilation.sh # patching and compilation of kernel, uboot, ATF
|
|
# shellcheck source=compilation-prepare.sh
|
|
#source "${SRC}"/scripts/compilation-prepare.sh # drivers that are not upstreamed
|
|
# shellcheck source=makeboarddeb.sh
|
|
source "${SRC}"/scripts/makeboarddeb.sh # board support package
|
|
# shellcheck source=general.sh
|
|
source "${SRC}"/scripts/general.sh # general functions
|
|
# shellcheck source=chroot-buildpackages.sh
|
|
source "${SRC}"/scripts/chroot-buildpackages.sh # chroot packages building
|
|
# shellcheck source=pack.sh
|
|
source "${SRC}"/scripts/pack-uboot.sh
|
|
|
|
|
|
# set log path
|
|
LOG_SUBPATH=${LOG_SUBPATH:=debug}
|
|
|
|
# compress and remove old logs
|
|
mkdir -p "${DEST}"/${LOG_SUBPATH}
|
|
(cd "${DEST}"/${LOG_SUBPATH} && tar -czf logs-"$(<timestamp)".tgz ./*.log) > /dev/null 2>&1
|
|
rm -f "${DEST}"/${LOG_SUBPATH}/*.log > /dev/null 2>&1
|
|
date +"%d_%m_%Y-%H_%M_%S" > "${DEST}"/${LOG_SUBPATH}/timestamp
|
|
|
|
# delete compressed logs older than 7 days
|
|
(cd "${DEST}"/${LOG_SUBPATH} && find . -name '*.tgz' -mtime +7 -delete) > /dev/null
|
|
|
|
if [[ $PROGRESS_DISPLAY == none ]]; then
|
|
|
|
OUTPUT_VERYSILENT=yes
|
|
|
|
elif [[ $PROGRESS_DISPLAY == dialog ]]; then
|
|
|
|
OUTPUT_DIALOG=yes
|
|
|
|
fi
|
|
|
|
if [[ $PROGRESS_LOG_TO_FILE != yes ]]; then unset PROGRESS_LOG_TO_FILE; fi
|
|
|
|
|
|
|
|
SHOW_WARNING=yes
|
|
|
|
|
|
|
|
if [[ $USE_CCACHE != no ]]; then
|
|
|
|
CCACHE=ccache
|
|
export PATH="/usr/lib/ccache:$PATH"
|
|
# private ccache directory to avoid permission issues when using build script with "sudo"
|
|
# see https://ccache.samba.org/manual.html#_sharing_a_cache for alternative solution
|
|
[[ $PRIVATE_CCACHE == yes ]] && export CCACHE_DIR=$EXTER/cache/ccache
|
|
|
|
else
|
|
|
|
CCACHE=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ -n $REPOSITORY_UPDATE ]]; then
|
|
|
|
# select stable/beta configuration
|
|
if [[ $BETA == yes ]]; then
|
|
DEB_STORAGE=$DEST/debs-beta
|
|
REPO_STORAGE=$DEST/repository-beta
|
|
REPO_CONFIG="aptly-beta.conf"
|
|
else
|
|
DEB_STORAGE=$DEST/debs
|
|
REPO_STORAGE=$DEST/repository
|
|
REPO_CONFIG="aptly.conf"
|
|
fi
|
|
|
|
# For user override
|
|
if [[ -f "${USERPATCHES_PATH}"/lib.config ]]; then
|
|
display_alert "Using user configuration override" "userpatches/lib.config" "info"
|
|
source "${USERPATCHES_PATH}"/lib.config
|
|
fi
|
|
|
|
repo-manipulate "$REPOSITORY_UPDATE"
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# if BUILD_OPT, KERNEL_CONFIGURE, BOARD, BRANCH or RELEASE are not set, display selection menu
|
|
if [[ -z $BUILD_OPT ]]; then
|
|
|
|
options+=("u-boot" "U-boot package")
|
|
options+=("kernel" "Kernel package")
|
|
options+=("rootfs" "Rootfs and all deb packages")
|
|
options+=("image" "Full OS image for flashing")
|
|
|
|
menustr="Compile image | rootfs | kernel | u-boot"
|
|
BUILD_OPT=$(whiptail --title "${titlestr}" --backtitle "${backtitle}" --notags \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
|
|
unset options
|
|
[[ -z $BUILD_OPT ]] && exit_with_error "No option selected"
|
|
[[ $BUILD_OPT == rootfs ]] && ROOT_FS_CREATE_ONLY="yes"
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ ${BUILD_OPT} =~ kernel|image ]]; then
|
|
|
|
if [[ -z $KERNEL_CONFIGURE ]]; then
|
|
|
|
options+=("no" "Do not change the kernel configuration")
|
|
options+=("yes" "Show a kernel configuration menu before compilation")
|
|
|
|
menustr="Select the kernel configuration."
|
|
KERNEL_CONFIGURE=$(whiptail --title "${titlestr}" --backtitle "$backtitle" --notags \
|
|
--menu "${menustr}" $TTY_Y $TTY_X $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
|
|
unset options
|
|
[[ -z $KERNEL_CONFIGURE ]] && exit_with_error "No option selected"
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ -z $BOARD ]]; then
|
|
|
|
#options+=("orangepir1" "Allwinner H2+ quad core 256MB RAM WiFi SPI 2xETH")
|
|
#options+=("orangepizero" "Allwinner H2+ quad core 256MB/512MB RAM WiFi SPI")
|
|
#options+=("orangepipc" "Allwinner H3 quad core 1GB RAM")
|
|
#options+=("orangepipcplus" "Allwinner H3 quad core 1GB RAM WiFi eMMC")
|
|
#options+=("orangepione" "Allwinner H3 quad core 512MB RAM")
|
|
#options+=("orangepilite" "Allwinner H3 quad core 512MB RAM WiFi")
|
|
#options+=("orangepiplus" "Allwinner H3 quad core 1GB/2GB RAM WiFi GBE eMMC")
|
|
#options+=("orangepiplus2e" "Allwinner H3 quad core 2GB RAM WiFi GBE eMMC")
|
|
#options+=("orangepizeroplus2h3" "Allwinner H3 quad core 512MB RAM WiFi/BT eMMC")
|
|
#options+=("orangepipch5" "Allwinner H5 quad core 1GB RAM")
|
|
#options+=("orangepipc2" "Allwinner H5 quad core 1GB RAM GBE SPI")
|
|
#options+=("orangepioneh5" "Allwinner H5 quad core 512MB/1GB RAM")
|
|
#options+=("orangepiprime" "Allwinner H5 quad core 2GB RAM GBE WiFi/BT")
|
|
#options+=("orangepizeroplus" "Allwinner H5 quad core 512MB RAM GBE WiFi SPI")
|
|
#options+=("orangepizeroplus2h5" "Allwinner H5 quad core 512MB RAM WiFi/BT eMMC")
|
|
options+=("orangepi3" "Allwinner H6 quad core 1GB/2GB RAM GBE WiFi/BT eMMC USB3")
|
|
options+=("orangepi3-lts" "Allwinner H6 quad core 2GB RAM GBE WiFi/BT-AW859A eMMC USB3")
|
|
#options+=("orangepilite2" "Allwinner H6 quad core 1GB RAM WiFi/BT USB3")
|
|
#options+=("orangepioneplus" "Allwinner H6 quad core 1GB RAM GBE")
|
|
options+=("orangepizero2" "Allwinner H616 quad core 512MB/1GB RAM WiFi/BT GBE SPI")
|
|
#options+=("orangepizero2-b" "Allwinner H616 quad core 512MB/1GB RAM WiFi/BT GBE SPI")
|
|
#options+=("orangepizero2-lts" "Allwinner H616 quad core 1.5GB RAM WiFi/BT GBE SPI")
|
|
options+=("orangepizero3" "Allwinner H618 quad core 1GB/1.5GB/2GB/4GB RAM WiFi/BT GBE SPI")
|
|
options+=("orangepizero2w" "Allwinner H618 quad core 1GB/1.5GB/2GB/4GB RAM WiFi/BT SPI")
|
|
#options+=("orangepir1b" "Allwinner H618 quad core 1.5GB/2GB/4GB RAM WiFi/BT GBE SPI")
|
|
#options+=("orangepi400" "Allwinner H616 quad core 4GB RAM WiFi/BT GBE eMMC VGA")
|
|
options+=("orangepi4" "Rockchip RK3399 hexa core 4GB RAM GBE eMMC USB3 USB-C WiFi/BT")
|
|
options+=("orangepi4-lts" "Rockchip RK3399 hexa core 4GB RAM GBE eMMC USB3 USB-C WiFi/BT")
|
|
options+=("orangepi800" "Rockchip RK3399 hexa core 4GB RAM GBE eMMC USB3 USB-C WiFi/BT VGA")
|
|
options+=("orangepi5" "Rockchip RK3588S octa core 4-16GB RAM GBE USB3 USB-C NVMe")
|
|
options+=("orangepicm5" "Rockchip RK3588S octa core 4-16GB RAM GBE USB3 USB-C")
|
|
options+=("orangepi5b" "Rockchip RK3588S octa core 4-16GB RAM GBE USB3 USB-C WiFi/BT eMMC")
|
|
#options+=("orangepitab" "Rockchip RK3588S octa core 4-16GB RAM USB-C WiFi/BT NVMe")
|
|
#options+=("orangepi900" "Rockchip RK3588 octa core 4-16GB RAM 2.5GBE USB3 USB-C WiFi/BT NVMe")
|
|
#options+=("orangepi5pro" "Rockchip RK3588S octa core 4-32GB RAM GBE USB3 WiFi/BT NVMe eMMC")
|
|
#options+=("orangepi5max" "Rockchip RK3588 octa core 4-32GB RAM 2.5GBE USB3 USB-C WiFi/BT NVMe eMMC")
|
|
options+=("orangepi5plus" "Rockchip RK3588 octa core 4-32GB RAM 2.5GBE USB3 USB-C WiFi/BT NVMe eMMC")
|
|
options+=("orangepicm4" "Rockchip RK3566 quad core 2-8GB RAM GBE eMMC USB3 NvMe WiFi/BT")
|
|
options+=("orangepi3b" "Rockchip RK3566 quad core 2-8GB RAM GBE eMMC USB3 NvMe WiFi/BT")
|
|
#options+=("orangepir1plus" "Rockchip RK3328 quad core 1GB RAM 2xGBE USB2 SPI")
|
|
#options+=("orangepi3plus" "Amlogic S905D3 quad core 2/4GB RAM SoC eMMC GBE USB3 SPI WiFi/BT")
|
|
|
|
menustr="Please choose a Board."
|
|
BOARD=$(whiptail --title "${titlestr}" --backtitle "${backtitle}" \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
|
|
unset options
|
|
[[ -z $BOARD ]] && exit_with_error "No option selected"
|
|
fi
|
|
|
|
BOARD_TYPE="conf"
|
|
# shellcheck source=/dev/null
|
|
source "${EXTER}/config/boards/${BOARD}.${BOARD_TYPE}"
|
|
LINUXFAMILY="${BOARDFAMILY}"
|
|
|
|
[[ -z $KERNEL_TARGET ]] && exit_with_error "Board configuration does not define valid kernel config"
|
|
|
|
if [[ -z $BRANCH ]]; then
|
|
|
|
options=()
|
|
[[ $KERNEL_TARGET == *current* ]] && options+=("current" "Recommended. Come with best support")
|
|
[[ $KERNEL_TARGET == *legacy* ]] && options+=("legacy" "Old stable / Legacy")
|
|
[[ $KERNEL_TARGET == *next* ]] && options+=("next" "Use the latest kernel")
|
|
|
|
menustr="Select the target kernel branch\nExact kernel versions depend on selected board"
|
|
# do not display selection dialog if only one kernel branch is available
|
|
if [[ "${#options[@]}" == 2 ]]; then
|
|
BRANCH="${options[0]}"
|
|
else
|
|
BRANCH=$(whiptail --title "${titlestr}" --backtitle "${backtitle}" \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
fi
|
|
unset options
|
|
[[ -z $BRANCH ]] && exit_with_error "No kernel branch selected"
|
|
[[ $BRANCH == dev && $SHOW_WARNING == yes ]] && show_developer_warning
|
|
|
|
fi
|
|
|
|
if [[ -z ${MEM_TYPE} && ${BOARD} =~ orangepizero3|orangepir1b|orangepizero2w && ${BUILD_OPT} =~ u-boot|image && ${BRANCH} == next ]]; then
|
|
|
|
options+=("1500MB" "1.5 GB Memory")
|
|
options+=("Others" "1/2/4 GB Memory")
|
|
|
|
menustr="Please choose memory size for ${BOARD}."
|
|
MEM_TYPE=$(whiptail --title "${titlestr}" --backtitle "${backtitle}" \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
|
|
unset options
|
|
[[ -z $MEM_TYPE ]] && exit_with_error "No option selected"
|
|
fi
|
|
|
|
if [[ $BUILD_OPT =~ rootfs|image && -z $RELEASE ]]; then
|
|
|
|
options=()
|
|
|
|
distros_options
|
|
|
|
menustr="Select the target OS release package base"
|
|
RELEASE=$(whiptail --title "Choose a release package base" --backtitle "${backtitle}" \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
#echo "options : ${options}"
|
|
[[ -z $RELEASE ]] && exit_with_error "No release selected"
|
|
|
|
unset options
|
|
fi
|
|
|
|
# don't show desktop option if we choose minimal build
|
|
[[ $BUILD_MINIMAL == yes ]] && BUILD_DESKTOP=no
|
|
|
|
if [[ $BUILD_OPT =~ rootfs|image && -z $BUILD_DESKTOP ]]; then
|
|
|
|
# read distribution support status which is written to the orangepi-release file
|
|
set_distribution_status
|
|
|
|
options=()
|
|
options+=("no" "Image with console interface (server)")
|
|
options+=("yes" "Image with desktop environment")
|
|
|
|
menustr="Select the target image type"
|
|
BUILD_DESKTOP=$(whiptail --title "Choose image type" --backtitle "${backtitle}" \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
unset options
|
|
[[ -z $BUILD_DESKTOP ]] && exit_with_error "No option selected"
|
|
if [[ ${BUILD_DESKTOP} == "yes" ]]; then
|
|
BUILD_MINIMAL=no
|
|
SELECTED_CONFIGURATION="desktop"
|
|
fi
|
|
|
|
fi
|
|
|
|
if [[ $BUILD_OPT =~ rootfs|image && $BUILD_DESKTOP == no && -z $BUILD_MINIMAL ]]; then
|
|
|
|
options=()
|
|
options+=("no" "Standard image with console interface")
|
|
options+=("yes" "Minimal image with console interface")
|
|
menustr="Select the target image type"
|
|
BUILD_MINIMAL=$(whiptail --title "Choose image type" --backtitle "${backtitle}" \
|
|
--menu "${menustr}" "${TTY_Y}" "${TTY_X}" $((TTY_Y - 8)) \
|
|
--cancel-button Exit --ok-button Select "${options[@]}" \
|
|
3>&1 1>&2 2>&3)
|
|
unset options
|
|
[[ -z $BUILD_MINIMAL ]] && exit_with_error "No option selected"
|
|
if [[ $BUILD_MINIMAL == "yes" ]]; then
|
|
SELECTED_CONFIGURATION="cli_minimal"
|
|
else
|
|
SELECTED_CONFIGURATION="cli_standard"
|
|
fi
|
|
|
|
fi
|
|
|
|
#prevent conflicting setup
|
|
if [[ $BUILD_DESKTOP == "yes" ]]; then
|
|
BUILD_MINIMAL=no
|
|
SELECTED_CONFIGURATION="desktop"
|
|
elif [[ $BUILD_MINIMAL != "yes" || -z "${BUILD_MINIMAL}" ]]; then
|
|
BUILD_MINIMAL=no # Just in case BUILD_MINIMAL is not defined
|
|
BUILD_DESKTOP=no
|
|
SELECTED_CONFIGURATION="cli_standard"
|
|
elif [[ $BUILD_MINIMAL == "yes" ]]; then
|
|
BUILD_DESKTOP=no
|
|
SELECTED_CONFIGURATION="cli_minimal"
|
|
fi
|
|
|
|
#[[ ${KERNEL_CONFIGURE} == prebuilt ]] && [[ -z ${REPOSITORY_INSTALL} ]] && \
|
|
#REPOSITORY_INSTALL="u-boot,kernel,bsp,orangepi-zsh,orangepi-config,orangepi-firmware${BUILD_DESKTOP:+,orangepi-desktop}"
|
|
|
|
|
|
#shellcheck source=configuration.sh
|
|
source "${SRC}"/scripts/configuration.sh
|
|
|
|
# optimize build time with 100% CPU usage
|
|
CPUS=$(grep -c 'processor' /proc/cpuinfo)
|
|
if [[ $USEALLCORES != no ]]; then
|
|
|
|
CTHREADS="-j$((CPUS + CPUS/2))"
|
|
|
|
else
|
|
|
|
CTHREADS="-j1"
|
|
|
|
fi
|
|
|
|
call_extension_method "post_determine_cthreads" "config_post_determine_cthreads" << 'POST_DETERMINE_CTHREADS'
|
|
*give config a chance modify CTHREADS programatically. A build server may work better with hyperthreads-1 for example.*
|
|
Called early, before any compilation work starts.
|
|
POST_DETERMINE_CTHREADS
|
|
|
|
if [[ $BETA == yes ]]; then
|
|
IMAGE_TYPE=nightly
|
|
elif [[ $BETA != "yes" && $BUILD_ALL == yes && -n $GPG_PASS ]]; then
|
|
IMAGE_TYPE=stable
|
|
else
|
|
IMAGE_TYPE=user-built
|
|
fi
|
|
|
|
branch2dir() {
|
|
[[ "${1}" == "head" ]] && echo "HEAD" || echo "${1##*:}"
|
|
}
|
|
|
|
BOOTSOURCEDIR="${BOOTDIR}/$(branch2dir "${BOOTBRANCH}")"
|
|
LINUXSOURCEDIR="${KERNELDIR}/$(branch2dir "${KERNELBRANCH}")"
|
|
[[ -n $ATFSOURCE ]] && ATFSOURCEDIR="${ATFDIR}/$(branch2dir "${ATFBRANCH}")"
|
|
|
|
BSP_CLI_PACKAGE_NAME="orangepi-bsp-cli-${BOARD}"
|
|
BSP_CLI_PACKAGE_FULLNAME="${BSP_CLI_PACKAGE_NAME}_${REVISION}_${ARCH}"
|
|
BSP_DESKTOP_PACKAGE_NAME="orangepi-bsp-desktop-${BOARD}"
|
|
BSP_DESKTOP_PACKAGE_FULLNAME="${BSP_DESKTOP_PACKAGE_NAME}_${REVISION}_${ARCH}"
|
|
|
|
CHOSEN_UBOOT=linux-u-boot-${BRANCH}-${BOARD}
|
|
CHOSEN_KERNEL=linux-image-${BRANCH}-${LINUXFAMILY}
|
|
CHOSEN_ROOTFS=${BSP_CLI_PACKAGE_NAME}
|
|
CHOSEN_DESKTOP=orangepi-${RELEASE}-desktop-${DESKTOP_ENVIRONMENT}
|
|
CHOSEN_KSRC=linux-source-${BRANCH}-${LINUXFAMILY}
|
|
|
|
do_default() {
|
|
|
|
start=$(date +%s)
|
|
|
|
# Check and install dependencies, directory structure and settings
|
|
# The OFFLINE_WORK variable inside the function
|
|
prepare_host
|
|
|
|
[[ "${JUST_INIT}" == "yes" ]] && exit 0
|
|
|
|
[[ $CLEAN_LEVEL == *sources* ]] && cleaning "sources"
|
|
|
|
# fetch_from_repo <url> <dir> <ref> <subdir_flag>
|
|
|
|
# ignore updates help on building all images - for internal purposes
|
|
if [[ ${IGNORE_UPDATES} != yes ]]; then
|
|
|
|
display_alert "Downloading sources" "" "info"
|
|
|
|
[[ $BUILD_OPT =~ u-boot|image ]] && fetch_from_repo "$BOOTSOURCE" "$BOOTDIR" "$BOOTBRANCH" "yes"
|
|
[[ $BUILD_OPT =~ kernel|image ]] && fetch_from_repo "$KERNELSOURCE" "$KERNELDIR" "$KERNELBRANCH" "yes"
|
|
|
|
if [[ -n ${ATFSOURCE} ]]; then
|
|
|
|
[[ ${BUILD_OPT} =~ u-boot|image ]] && fetch_from_repo "$ATFSOURCE" "${EXTER}/cache/sources/$ATFDIR" "$ATFBRANCH" "yes"
|
|
|
|
fi
|
|
|
|
if [[ ${BOARD} =~ orangepi4|orangepi4-lts|orangepi800 && $BRANCH == legacy ]]; then
|
|
|
|
[[ $BUILD_OPT =~ image ]] && fetch_from_repo "https://github.com/orangepi-xunlong/rk3399_gst_xserver_libs.git" "${EXTER}/cache/sources/rk3399_gst_xserver_libs" "branch:main"
|
|
|
|
fi
|
|
|
|
if [[ ${BOARD} =~ orangepi4|orangepi4-lts|orangepi800 && $RELEASE =~ focal|buster|bullseye|bookworm ]]; then
|
|
|
|
[[ ${BUILD_OPT} == image ]] && fetch_from_repo "https://github.com/orangepi-xunlong/rk-rootfs-build.git" "${EXTER}/cache/sources/rk-rootfs-build-${RELEASE}" "branch:rk-rootfs-build-${RELEASE}"
|
|
|
|
fi
|
|
|
|
if [[ ${BOARDFAMILY} == "rockchip-rk3588" && $RELEASE =~ bullseye|bookworm|focal|jammy|raspi ]]; then
|
|
|
|
[[ ${BUILD_OPT} == image ]] && fetch_from_repo "https://github.com/orangepi-xunlong/rk-rootfs-build.git" "${EXTER}/cache/sources/rk35xx_packages" "branch:rk35xx_packages"
|
|
|
|
fi
|
|
|
|
if [[ ${BOARDFAMILY} == "rockchip-rk356x" && $RELEASE =~ bullseye|focal|jammy|raspi ]]; then
|
|
|
|
[[ ${BUILD_OPT} == image ]] && fetch_from_repo "https://github.com/orangepi-xunlong/rk-rootfs-build.git" "${EXTER}/cache/sources/rk35xx_packages" "branch:rk35xx_packages"
|
|
|
|
fi
|
|
|
|
if [[ ${BOARD} =~ orangepi3|orangepi3-lts && $RELEASE =~ bullseye && $BRANCH == current ]]; then
|
|
|
|
[[ ${BUILD_OPT} == image ]] && fetch_from_repo "https://github.com/orangepi-xunlong/rk-rootfs-build.git" "${EXTER}/cache/sources/ffmpeg_kodi_${RELEASE}" "branch:ffmpeg_kodi_${RELEASE}"
|
|
|
|
fi
|
|
|
|
if [[ ${BOARD} =~ orangepi4|orangepi4-lts|orangepi800 && $RELEASE =~ jammy && $BRANCH == next ]]; then
|
|
|
|
[[ ${BUILD_OPT} == image ]] && fetch_from_repo "https://github.com/orangepi-xunlong/rk-rootfs-build.git" "${EXTER}/cache/sources/ffmpeg_kodi_${RELEASE}" "branch:ffmpeg_kodi_${RELEASE}"
|
|
|
|
fi
|
|
|
|
call_extension_method "fetch_sources_tools" <<- 'FETCH_SOURCES_TOOLS'
|
|
*fetch host-side sources needed for tools and build*
|
|
Run early to fetch_from_repo or otherwise obtain sources for needed tools.
|
|
FETCH_SOURCES_TOOLS
|
|
|
|
call_extension_method "build_host_tools" <<- 'BUILD_HOST_TOOLS'
|
|
*build needed tools for the build, host-side*
|
|
After sources are fetched, build host-side tools needed for the build.
|
|
BUILD_HOST_TOOLS
|
|
|
|
if [[ ${BOARDFAMILY} == "rockchip-rk3588" ]]; then
|
|
local rkbin_url="https://github.com/orangepi-xunlong/rk-rootfs-build/raw/rkbin/rk35"
|
|
wget -qnc -P ${EXTER}/cache/sources/rkbin-tools/rk35/ ${rkbin_url}/rk3588_ddr_lp4_2112MHz_lp5_2736MHz_v1.15.bin
|
|
wget -qnc -P ${EXTER}/cache/sources/rkbin-tools/rk35/ ${rkbin_url}/rk3588_bl31_v1.44.elf
|
|
fi
|
|
|
|
fi
|
|
|
|
for option in $(tr ',' ' ' <<< "$CLEAN_LEVEL"); do
|
|
[[ $option != sources ]] && cleaning "$option"
|
|
done
|
|
|
|
# Compile u-boot if packed .deb does not exist or use the one from Orange Pi
|
|
if [[ $BUILD_OPT == u-boot || $BUILD_OPT == image ]]; then
|
|
|
|
if [[ ! -f "${DEB_STORAGE}"/u-boot/${CHOSEN_UBOOT}_${REVISION}_${ARCH}.deb ]]; then
|
|
|
|
[[ -n "${ATFSOURCE}" && "${REPOSITORY_INSTALL}" != *u-boot* ]] && compile_atf
|
|
|
|
[[ ${REPOSITORY_INSTALL} != *u-boot* ]] && compile_uboot
|
|
fi
|
|
|
|
if [[ $BUILD_OPT == "u-boot" ]]; then
|
|
unset BUILD_MINIMAL BUILD_DESKTOP COMPRESS_OUTPUTIMAGE
|
|
display_alert "U-boot build done" "@host" "info"
|
|
display_alert "Target directory" "${DEB_STORAGE}/u-boot" "info"
|
|
display_alert "File name" "${CHOSEN_UBOOT}_${REVISION}_${ARCH}.deb" "info"
|
|
fi
|
|
fi
|
|
|
|
# Compile kernel if packed .deb does not exist or use the one from Orange Pi
|
|
if [[ $BUILD_OPT == kernel || $BUILD_OPT == image ]]; then
|
|
|
|
if [[ ! -f ${DEB_STORAGE}/${CHOSEN_KERNEL}_${REVISION}_${ARCH}.deb ]]; then
|
|
|
|
KDEB_CHANGELOG_DIST=$RELEASE
|
|
[[ "${REPOSITORY_INSTALL}" != *kernel* ]] && compile_kernel
|
|
fi
|
|
|
|
if [[ $BUILD_OPT == "kernel" ]]; then
|
|
unset BUILD_MINIMAL BUILD_DESKTOP COMPRESS_OUTPUTIMAGE
|
|
display_alert "Kernel build done" "@host" "info"
|
|
display_alert "Target directory" "${DEB_STORAGE}/" "info"
|
|
display_alert "File name" "${CHOSEN_KERNEL}_${REVISION}_${ARCH}.deb" "info"
|
|
fi
|
|
fi
|
|
|
|
if [[ $BUILD_OPT == rootfs || $BUILD_OPT == image ]]; then
|
|
|
|
# Compile orangepi-config if packed .deb does not exist or use the one from Orange Pi
|
|
if [[ ! -f ${DEB_STORAGE}/orangepi-config_${REVISION}_all.deb ]]; then
|
|
|
|
[[ "${REPOSITORY_INSTALL}" != *orangepi-config* ]] && compile_orangepi-config
|
|
fi
|
|
|
|
# Compile orangepi-zsh if packed .deb does not exist or use the one from repository
|
|
if [[ ! -f ${DEB_STORAGE}/orangepi-zsh_${REVISION}_all.deb ]]; then
|
|
|
|
[[ "${REPOSITORY_INSTALL}" != *orangepi-zsh* ]] && compile_orangepi-zsh
|
|
fi
|
|
|
|
# Compile plymouth-theme-orangepi if packed .deb does not exist or use the one from repository
|
|
if [[ ! -f ${DEB_STORAGE}/plymouth-theme-orangepi_${REVISION}_all.deb ]]; then
|
|
|
|
[[ "${REPOSITORY_INSTALL}" != *plymouth-theme-orangepi* ]] && compile_plymouth-theme-orangepi
|
|
fi
|
|
|
|
# Compile orangepi-firmware if packed .deb does not exist or use the one from repository
|
|
if [[ "${REPOSITORY_INSTALL}" != *orangepi-firmware* ]]; then
|
|
|
|
if ! ls "${DEB_STORAGE}/orangepi-firmware_${REVISION}_all.deb" 1> /dev/null 2>&1; then
|
|
|
|
FULL=""
|
|
REPLACE="-full"
|
|
compile_firmware
|
|
|
|
fi
|
|
|
|
#if ! ls "${DEB_STORAGE}/orangepi-firmware-full_${REVISION}_all.deb" 1> /dev/null 2>&1; then
|
|
|
|
#FULL="-full"
|
|
#REPLACE=""
|
|
#compile_firmware
|
|
|
|
#fi
|
|
|
|
fi
|
|
|
|
overlayfs_wrapper "cleanup"
|
|
|
|
# create board support package
|
|
[[ -n $RELEASE && ! -f ${DEB_STORAGE}/$RELEASE/${BSP_CLI_PACKAGE_FULLNAME}.deb ]] && create_board_package
|
|
|
|
# create desktop package
|
|
#[[ -n $RELEASE && $DESKTOP_ENVIRONMENT && ! -f ${DEB_STORAGE}/$RELEASE/${CHOSEN_DESKTOP}_${REVISION}_all.deb ]] && create_desktop_package
|
|
#[[ -n $RELEASE && $DESKTOP_ENVIRONMENT && ! -f ${DEB_STORAGE}/${RELEASE}/${BSP_DESKTOP_PACKAGE_FULLNAME}.deb ]] && create_bsp_desktop_package
|
|
[[ -n $RELEASE && $DESKTOP_ENVIRONMENT ]] && create_desktop_package
|
|
[[ -n $RELEASE && $DESKTOP_ENVIRONMENT ]] && create_bsp_desktop_package
|
|
|
|
# build additional packages
|
|
[[ $EXTERNAL_NEW == compile ]] && chroot_build_packages
|
|
|
|
[[ $BSP_BUILD != yes ]] && debootstrap_ng
|
|
|
|
fi
|
|
|
|
# hook for function to run after build, i.e. to change owner of $SRC
|
|
# NOTE: this will run only if there were no errors during build process
|
|
[[ $(type -t run_after_build) == function ]] && run_after_build || true
|
|
|
|
end=$(date +%s)
|
|
runtime=$(((end-start)/60))
|
|
display_alert "Runtime" "$runtime min" "info"
|
|
|
|
# Make it easy to repeat build by displaying build options used
|
|
[ "$(systemd-detect-virt)" == 'docker' ] && BUILD_CONFIG='docker'
|
|
|
|
display_alert "Repeat Build Options" "sudo ./build.sh ${BUILD_CONFIG} BOARD=${BOARD} BRANCH=${BRANCH} \
|
|
$([[ -n $BUILD_OPT ]] && echo "BUILD_OPT=${BUILD_OPT} ")\
|
|
$([[ -n $RELEASE ]] && echo "RELEASE=${RELEASE} ")\
|
|
$([[ -n $BUILD_MINIMAL ]] && echo "BUILD_MINIMAL=${BUILD_MINIMAL} ")\
|
|
$([[ -n $BUILD_DESKTOP ]] && echo "BUILD_DESKTOP=${BUILD_DESKTOP} ")\
|
|
$([[ -n $KERNEL_CONFIGURE ]] && echo "KERNEL_CONFIGURE=${KERNEL_CONFIGURE} ")\
|
|
$([[ -n $DESKTOP_ENVIRONMENT ]] && echo "DESKTOP_ENVIRONMENT=${DESKTOP_ENVIRONMENT} ")\
|
|
$([[ -n $DESKTOP_ENVIRONMENT_CONFIG_NAME ]] && echo "DESKTOP_ENVIRONMENT_CONFIG_NAME=${DESKTOP_ENVIRONMENT_CONFIG_NAME} ")\
|
|
$([[ -n $DESKTOP_APPGROUPS_SELECTED ]] && echo "DESKTOP_APPGROUPS_SELECTED=\"${DESKTOP_APPGROUPS_SELECTED}\" ")\
|
|
$([[ -n $DESKTOP_APT_FLAGS_SELECTED ]] && echo "DESKTOP_APT_FLAGS_SELECTED=\"${DESKTOP_APT_FLAGS_SELECTED}\" ")\
|
|
$([[ -n $COMPRESS_OUTPUTIMAGE ]] && echo "COMPRESS_OUTPUTIMAGE=${COMPRESS_OUTPUTIMAGE} ")\
|
|
" "ext"
|
|
|
|
} # end of do_default()
|
|
|
|
if [[ -z $1 ]]; then
|
|
do_default
|
|
else
|
|
eval "$@"
|
|
fi
|