2015-12-02 19:33:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2021-06-26 21:36:47 +00:00
|
|
|
# Copyright (c) 2013-2021 Igor Pecovnik, igor.pecovnik@gma**.com
|
2015-12-02 19:33:32 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2017-08-01 09:51:10 +00:00
|
|
|
# This file is a part of the Armbian build script
|
|
|
|
# https://github.com/armbian/build/
|
2015-12-02 19:33:32 +00:00
|
|
|
|
2017-08-06 14:11:16 +00:00
|
|
|
# DO NOT EDIT THIS FILE
|
|
|
|
# use configuration files like config-default.conf to set the build configuration
|
2021-06-21 21:03:39 +00:00
|
|
|
# check Armbian documentation https://docs.armbian.com/ for more info
|
2017-08-06 14:11:16 +00:00
|
|
|
|
2019-05-30 20:19:53 +00:00
|
|
|
SRC="$(dirname "$(realpath "${BASH_SOURCE[0]}")")"
|
2017-09-13 10:59:03 +00:00
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
# check for whitespace in ${SRC} and exit for safety reasons
|
2017-09-14 10:13:26 +00:00
|
|
|
grep -q "[[:space:]]" <<<"${SRC}" && { echo "\"${SRC}\" contains whitespace. Not supported. Aborting." >&2 ; exit 1 ; }
|
2017-09-13 10:59:03 +00:00
|
|
|
|
2019-05-30 20:19:53 +00:00
|
|
|
cd "${SRC}" || exit
|
2015-12-02 19:33:32 +00:00
|
|
|
|
2021-11-22 10:06:50 +00:00
|
|
|
if [[ "${ARMBIAN_ENABLE_CALL_TRACING}" == "yes" ]]; then
|
|
|
|
set -T # inherit return/debug traps
|
|
|
|
mkdir -p "${SRC}"/output/debug
|
|
|
|
echo -n "" > "${SRC}"/output/debug/calls.txt
|
|
|
|
trap 'echo "${BASH_LINENO[@]}|${BASH_SOURCE[@]}|${FUNCNAME[@]}" >> ${SRC}/output/debug/calls.txt ;' RETURN
|
|
|
|
fi
|
|
|
|
|
2022-10-03 02:51:44 +00:00
|
|
|
if [[ -f "${SRC}"/lib/import-functions.sh ]]; then
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2022-04-18 11:43:31 +00:00
|
|
|
# Declare this folder as safe
|
2022-07-16 14:59:40 +00:00
|
|
|
if ! grep -q 2>/dev/null "directory = \*" "$HOME/.gitconfig"; then
|
2022-05-11 17:46:10 +00:00
|
|
|
git config --global --add safe.directory "*"
|
|
|
|
fi
|
2022-04-18 11:43:31 +00:00
|
|
|
|
2022-10-03 02:51:44 +00:00
|
|
|
# shellcheck source=lib/import-functions.sh
|
|
|
|
source "${SRC}"/lib/import-functions.sh
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2017-07-11 09:39:32 +00:00
|
|
|
else
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2017-07-11 09:39:32 +00:00
|
|
|
echo "Error: missing build directory structure"
|
|
|
|
echo "Please clone the full repository https://github.com/armbian/build/"
|
2019-05-30 20:19:53 +00:00
|
|
|
exit 255
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2015-12-02 19:33:32 +00:00
|
|
|
fi
|
|
|
|
|
2020-06-25 13:23:16 +00:00
|
|
|
# Add the variables needed at the beginning of the path
|
|
|
|
check_args ()
|
|
|
|
{
|
2021-06-26 21:36:47 +00:00
|
|
|
|
|
|
|
for p in "$@"; do
|
2020-06-25 13:23:16 +00:00
|
|
|
|
|
|
|
case "${p%=*}" in
|
|
|
|
LIB_TAG)
|
|
|
|
# Take a variable if the branch exists locally
|
|
|
|
if [ "${p#*=}" == "$(git branch | \
|
|
|
|
gawk -v b="${p#*=}" '{if ( $NF == b ) {print $NF}}')" ]; then
|
2021-06-21 21:03:39 +00:00
|
|
|
echo -e "[\e[0;35m warn \x1B[0m] Setting $p"
|
2020-06-25 13:23:16 +00:00
|
|
|
eval "$p"
|
|
|
|
else
|
2021-06-21 21:03:39 +00:00
|
|
|
echo -e "[\e[0;35m warn \x1B[0m] Skip $p setting as LIB_TAG=\"\""
|
2020-06-25 13:23:16 +00:00
|
|
|
eval LIB_TAG=""
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
done
|
|
|
|
|
2020-06-25 13:23:16 +00:00
|
|
|
}
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2020-06-25 13:23:16 +00:00
|
|
|
check_args "$@"
|
2019-07-06 20:35:43 +00:00
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-29 09:41:43 +00:00
|
|
|
update_src() {
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-29 09:41:43 +00:00
|
|
|
cd "${SRC}" || exit
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ ! -f "${SRC}"/.ignore_changes ]]; then
|
2019-09-29 09:41:43 +00:00
|
|
|
echo -e "[\e[0;32m o.k. \x1B[0m] This script will try to update"
|
2020-06-25 13:23:16 +00:00
|
|
|
|
2019-09-29 09:41:43 +00:00
|
|
|
CHANGED_FILES=$(git diff --name-only)
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ -n "${CHANGED_FILES}" ]]; then
|
2019-09-29 09:41:43 +00:00
|
|
|
echo -e "[\e[0;35m warn \x1B[0m] Can't update since you made changes to: \e[0;32m\n${CHANGED_FILES}\x1B[0m"
|
|
|
|
while true; do
|
2021-06-26 21:36:47 +00:00
|
|
|
echo -e "Press \e[0;33m<Ctrl-C>\x1B[0m or \e[0;33mexit\x1B[0m to abort compilation"\
|
|
|
|
", \e[0;33m<Enter>\x1B[0m to ignore and continue, \e[0;33mdiff\x1B[0m to display changes"
|
2019-09-29 09:41:43 +00:00
|
|
|
read -r
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ "${REPLY}" == "diff" ]]; then
|
2019-09-29 09:41:43 +00:00
|
|
|
git diff
|
2020-06-18 14:06:21 +00:00
|
|
|
elif [[ "${REPLY}" == "exit" ]]; then
|
2019-09-29 09:41:43 +00:00
|
|
|
exit 1
|
2020-06-18 14:06:21 +00:00
|
|
|
elif [[ "${REPLY}" == "" ]]; then
|
2019-09-29 09:41:43 +00:00
|
|
|
break
|
|
|
|
else
|
|
|
|
echo "Unknown command!"
|
|
|
|
fi
|
|
|
|
done
|
2021-06-21 21:03:39 +00:00
|
|
|
elif [[ $(git branch | grep "*" | awk '{print $2}') != "${LIB_TAG}" && -n "${LIB_TAG}" ]]; then
|
2019-09-29 09:41:43 +00:00
|
|
|
git checkout "${LIB_TAG:-master}"
|
2020-06-25 13:23:16 +00:00
|
|
|
git pull
|
2019-09-29 09:41:43 +00:00
|
|
|
fi
|
|
|
|
fi
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-29 09:41:43 +00:00
|
|
|
}
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
TMPFILE=$(mktemp)
|
|
|
|
chmod 644 "${TMPFILE}"
|
2020-06-25 13:23:16 +00:00
|
|
|
{
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2020-06-25 13:23:16 +00:00
|
|
|
echo SRC="$SRC"
|
|
|
|
echo LIB_TAG="$LIB_TAG"
|
|
|
|
declare -f update_src
|
|
|
|
echo "update_src"
|
|
|
|
|
|
|
|
} > "$TMPFILE"
|
2019-09-29 09:41:43 +00:00
|
|
|
|
|
|
|
#do not update/checkout git with root privileges to messup files onwership.
|
|
|
|
#due to in docker/VM, we can't su to a normal user, so do not update/checkout git.
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ $(systemd-detect-virt) == 'none' ]]; then
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ "${EUID}" == "0" ]]; then
|
|
|
|
su "$(stat --format=%U "${SRC}"/.git)" -c "bash ${TMPFILE}"
|
2019-09-29 09:41:43 +00:00
|
|
|
else
|
2020-06-18 14:06:21 +00:00
|
|
|
bash "${TMPFILE}"
|
2019-09-29 09:41:43 +00:00
|
|
|
fi
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-29 09:41:43 +00:00
|
|
|
fi
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
rm "${TMPFILE}"
|
2019-09-29 09:41:43 +00:00
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2020-06-25 13:23:16 +00:00
|
|
|
if [[ "${EUID}" == "0" ]] || [[ "${1}" == "vagrant" ]]; then
|
|
|
|
:
|
|
|
|
elif [[ "${1}" == docker || "${1}" == dockerpurge || "${1}" == docker-shell ]] && grep -q "$(whoami)" <(getent group docker); then
|
|
|
|
:
|
|
|
|
else
|
|
|
|
display_alert "This script requires root privileges, trying to use sudo" "" "wrn"
|
|
|
|
sudo "${SRC}/compile.sh" "$@"
|
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|
2021-07-04 21:25:40 +00:00
|
|
|
if [ "$OFFLINE_WORK" == "yes" ]; then
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2021-07-04 21:25:40 +00:00
|
|
|
echo -e "\n"
|
|
|
|
display_alert "* " "You are working offline."
|
|
|
|
display_alert "* " "Sources, time and host will not be checked"
|
|
|
|
echo -e "\n"
|
|
|
|
sleep 3s
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2021-07-04 21:25:40 +00:00
|
|
|
else
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2021-07-04 21:25:40 +00:00
|
|
|
# check and install the basic utilities here
|
|
|
|
prepare_host_basic
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2021-02-24 17:19:09 +00:00
|
|
|
fi
|
2020-01-30 17:28:31 +00:00
|
|
|
|
2019-09-28 18:49:28 +00:00
|
|
|
# Check for Vagrant
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ "${1}" == vagrant && -z "$(command -v vagrant)" ]]; then
|
2019-09-28 18:49:28 +00:00
|
|
|
display_alert "Vagrant not installed." "Installing"
|
2020-04-25 19:25:05 +00:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y vagrant virtualbox
|
2017-07-11 09:46:08 +00:00
|
|
|
fi
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
# Purge Armbian Docker images
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ "${1}" == dockerpurge && -f /etc/debian_version ]]; then
|
2019-11-28 14:24:22 +00:00
|
|
|
display_alert "Purging Armbian Docker containers" "" "wrn"
|
|
|
|
docker container ls -a | grep armbian | awk '{print $1}' | xargs docker container rm &> /dev/null
|
|
|
|
docker image ls | grep armbian | awk '{print $3}' | xargs docker image rm &> /dev/null
|
|
|
|
shift
|
|
|
|
set -- "docker" "$@"
|
|
|
|
fi
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
# Docker shell
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ "${1}" == docker-shell ]]; then
|
2019-11-28 14:24:22 +00:00
|
|
|
shift
|
2020-06-18 14:06:21 +00:00
|
|
|
#shellcheck disable=SC2034
|
2019-11-28 14:24:22 +00:00
|
|
|
SHELL_ONLY=yes
|
|
|
|
set -- "docker" "$@"
|
|
|
|
fi
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
# Install Docker if not there but wanted. We cover only Debian based distro install. On other distros, manual Docker install is needed
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ "${1}" == docker && -f /etc/debian_version && -z "$(command -v docker)" ]]; then
|
2020-02-02 09:31:30 +00:00
|
|
|
|
2021-05-30 19:09:48 +00:00
|
|
|
DOCKER_BINARY="docker-ce"
|
|
|
|
|
2020-02-02 09:31:30 +00:00
|
|
|
# add exception for Ubuntu Focal until Docker provides dedicated binary
|
2021-05-02 16:06:38 +00:00
|
|
|
codename=$(cat /etc/os-release | grep VERSION_CODENAME | cut -d"=" -f2)
|
|
|
|
codeid=$(cat /etc/os-release | grep ^NAME | cut -d"=" -f2 | awk '{print tolower($0)}' | tr -d '"' | awk '{print $1}')
|
|
|
|
[[ "${codename}" == "debbie" ]] && codename="buster" && codeid="debian"
|
2021-11-09 17:15:04 +00:00
|
|
|
[[ "${codename}" == "ulyana" || "${codename}" == "jammy" ]] && codename="focal" && codeid="ubuntu"
|
2020-02-02 09:31:30 +00:00
|
|
|
|
2021-06-04 13:24:41 +00:00
|
|
|
# different binaries for some. TBD. Need to check for all others
|
2021-06-04 09:06:54 +00:00
|
|
|
[[ "${codename}" =~ focal|hirsute ]] && DOCKER_BINARY="docker containerd docker.io"
|
2021-05-30 19:09:48 +00:00
|
|
|
|
2019-09-28 18:49:28 +00:00
|
|
|
display_alert "Docker not installed." "Installing" "Info"
|
2022-01-08 07:05:23 +00:00
|
|
|
sudo bash -c "echo \"deb [arch=$(dpkg --print-architecture)] https://download.docker.com/linux/${codeid} ${codename} stable\" > /etc/apt/sources.list.d/docker.list"
|
2019-09-29 09:47:49 +00:00
|
|
|
|
2022-01-08 07:05:23 +00:00
|
|
|
sudo bash -c "curl -fsSL \"https://download.docker.com/linux/${codeid}/gpg\" | apt-key add -qq - > /dev/null 2>&1 "
|
2019-09-28 18:49:28 +00:00
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
2022-01-08 07:05:23 +00:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y -qq --no-install-recommends ${DOCKER_BINARY}
|
2019-09-29 09:41:43 +00:00
|
|
|
display_alert "Add yourself to docker group to avoid root privileges" "" "wrn"
|
2020-06-18 14:06:21 +00:00
|
|
|
"${SRC}/compile.sh" "$@"
|
2019-09-29 09:41:43 +00:00
|
|
|
exit $?
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-28 18:49:28 +00:00
|
|
|
fi
|
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-28 18:49:28 +00:00
|
|
|
# Create userpatches directory if not exists
|
2020-06-18 14:06:21 +00:00
|
|
|
mkdir -p "${SRC}"/userpatches
|
2019-09-28 18:49:28 +00:00
|
|
|
|
2021-06-26 21:36:47 +00:00
|
|
|
|
2019-09-28 18:49:28 +00:00
|
|
|
# Create example configs if none found in userpatches
|
Improve template config copying (#3535)
* Do not overwrite config-default.conf
Previously, when config-example.conf was missing, it would be created
and config-default.conf would be made a symlink to it. However, this
would overwrite any existing config-default.conf, potentially throwing
away a user's data. This occurs when you clean up and throw away the
(cluttering) config-example.conf (and depending on whether you use a
symlink to another named config, or put data in config-default.conf,
this would either just replace the symlink, or throw away your actual
config data).
This commit splits the update checks, so no files are ever overwritten,
except a broken config-default.conf symlink.
* Do not recreate example.conf if you remove it
Previously, whenever config-example.conf (and some others) was missing,
it start copying any missing example configs. This means that if you
would remove config-example.conf to clean up your userpatches directory,
it would be recreated everytime.
Now, this is triggered by a missing config-default.conf (which is also
created by the same block of code). The creating of config-example.conf
is still there, so if you have no config-default.conf (or one of the
others listed), then config-example.conf is created anyway, with
config-default.conf being a link to it, just like before (so the
first-run behavior is unmodified).
2022-03-19 15:48:32 +00:00
|
|
|
if ! ls "${SRC}"/userpatches/{config-default.conf,config-docker.conf,config-vagrant.conf} 1> /dev/null 2>&1; then
|
2019-09-28 18:49:28 +00:00
|
|
|
|
|
|
|
# Migrate old configs
|
2020-06-18 14:06:21 +00:00
|
|
|
if ls "${SRC}"/*.conf 1> /dev/null 2>&1; then
|
2019-09-28 18:49:28 +00:00
|
|
|
display_alert "Migrate config files to userpatches directory" "all *.conf" "info"
|
|
|
|
cp "${SRC}"/*.conf "${SRC}"/userpatches || exit 1
|
|
|
|
rm "${SRC}"/*.conf
|
|
|
|
[[ ! -L "${SRC}"/userpatches/config-example.conf ]] && ln -fs config-example.conf "${SRC}"/userpatches/config-default.conf || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
display_alert "Create example config file using template" "config-default.conf" "info"
|
|
|
|
|
|
|
|
# Create example config
|
|
|
|
if [[ ! -f "${SRC}"/userpatches/config-example.conf ]]; then
|
|
|
|
cp "${SRC}"/config/templates/config-example.conf "${SRC}"/userpatches/config-example.conf || exit 1
|
Improve template config copying (#3535)
* Do not overwrite config-default.conf
Previously, when config-example.conf was missing, it would be created
and config-default.conf would be made a symlink to it. However, this
would overwrite any existing config-default.conf, potentially throwing
away a user's data. This occurs when you clean up and throw away the
(cluttering) config-example.conf (and depending on whether you use a
symlink to another named config, or put data in config-default.conf,
this would either just replace the symlink, or throw away your actual
config data).
This commit splits the update checks, so no files are ever overwritten,
except a broken config-default.conf symlink.
* Do not recreate example.conf if you remove it
Previously, whenever config-example.conf (and some others) was missing,
it start copying any missing example configs. This means that if you
would remove config-example.conf to clean up your userpatches directory,
it would be recreated everytime.
Now, this is triggered by a missing config-default.conf (which is also
created by the same block of code). The creating of config-example.conf
is still there, so if you have no config-default.conf (or one of the
others listed), then config-example.conf is created anyway, with
config-default.conf being a link to it, just like before (so the
first-run behavior is unmodified).
2022-03-19 15:48:32 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Link default config to example config
|
|
|
|
if [[ ! -f "${SRC}"/userpatches/config-default.conf ]]; then
|
2019-09-28 18:49:28 +00:00
|
|
|
ln -fs config-example.conf "${SRC}"/userpatches/config-default.conf || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create Docker config
|
|
|
|
if [[ ! -f "${SRC}"/userpatches/config-docker.conf ]]; then
|
|
|
|
cp "${SRC}"/config/templates/config-docker.conf "${SRC}"/userpatches/config-docker.conf || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create Docker file
|
|
|
|
if [[ ! -f "${SRC}"/userpatches/Dockerfile ]]; then
|
2022-03-30 05:26:59 +00:00
|
|
|
cp "${SRC}"/config/templates/Dockerfile "${SRC}"/userpatches/Dockerfile || exit 1
|
2019-09-28 18:49:28 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Create Vagrant config
|
|
|
|
if [[ ! -f "${SRC}"/userpatches/config-vagrant.conf ]]; then
|
|
|
|
cp "${SRC}"/config/templates/config-vagrant.conf "${SRC}"/userpatches/config-vagrant.conf || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create Vagrant file
|
|
|
|
if [[ ! -f "${SRC}"/userpatches/Vagrantfile ]]; then
|
|
|
|
cp "${SRC}"/config/templates/Vagrantfile "${SRC}"/userpatches/Vagrantfile || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ -z "${CONFIG}" && -n "$1" && -f "${SRC}/userpatches/config-$1.conf" ]]; then
|
2019-09-28 18:49:28 +00:00
|
|
|
CONFIG="userpatches/config-$1.conf"
|
2019-11-26 17:00:39 +00:00
|
|
|
shift
|
2015-12-07 13:55:53 +00:00
|
|
|
fi
|
2015-12-02 19:33:32 +00:00
|
|
|
|
2019-09-28 18:49:28 +00:00
|
|
|
# usind default if custom not found
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ -z "${CONFIG}" && -f "${SRC}/userpatches/config-default.conf" ]]; then
|
2019-09-28 18:49:28 +00:00
|
|
|
CONFIG="userpatches/config-default.conf"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# source build configuration file
|
2020-06-18 14:06:21 +00:00
|
|
|
CONFIG_FILE="$(realpath "${CONFIG}")"
|
2019-09-28 18:49:28 +00:00
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
if [[ ! -f "${CONFIG_FILE}" ]]; then
|
|
|
|
display_alert "Config file does not exist" "${CONFIG}" "error"
|
2019-09-28 18:49:28 +00:00
|
|
|
exit 254
|
|
|
|
fi
|
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
CONFIG_PATH=$(dirname "${CONFIG_FILE}")
|
2019-09-28 18:49:28 +00:00
|
|
|
|
extensions framework + UEFI aarch64/x86 + rpi4b + core changes/fixes (#3300)
* extensions framework (née "fragments")
- this should actually change nothing at this point, just add capabilities
- the framework is implemented in lib/extensions.sh
- the "if function x exists then call x" replaced with call_extension_method()
- +inline documentation
- +compatibility names
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions framework; meta-extensions: auto-docs and sample extension gen
- 2 extensions dealing with extensibility itself
- detect-unused-extensions: shows which extensions are enabled, but never called.
- gen-sample-extension-docs: generates a sample empty extension & Markdown documentation for extensions
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* new extension methods and features via config variables in core Armbian
- `SKIP_EXTERNAL_TOOLCHAINS=yes` - does not download or use any linaro toolchains, only build host-installed ones
- `SKIP_BOOTSPLASH=yes` - does not patch kernel for splash file
- `EXTRA_BSP_NAME=xyz` - allows for BSP variants, useful for when extensions modify the BSP
- `EXTRA_ROOTFS_MIB_SIZE=x` - add x mib's to rootfs size, for use with very small images
- `KERNEL_EXTRA_TARGETS` - what extra targets to make kernel for, default to "modules dtbs"
- `BOOTCONFIG=none` - does not build nor install u-boot; also doesn't handle bootscripts et al
- `unset KERNELSOURCE` - does not build nor install kernel, nor build initrd, nor build nor install firmware
- `ARMHF_ARCH=skip` - does not add armhf to apt/dpkg, thus pure arm64
- `SKIP_ARMBIAN_REPO=yes` - results in armbian.list.disabled in the final image
- define `APT_EXTRA_DIST_PARAMS` with apt-cacher-ng options and use it for `PACKAGE_LIST_INSTALL/REMOVE` et al
- initial support for targeting x86/amd64 UEFI and BIOS
- some do's/don'ts for x86/amd64, like a different `UBUNTU_MIRROR` default
- GPT/EFI(ESP) partitions (fat, `UEFISIZE=256` to enable, mount `UEFI_MOUNT_POINT=/boot/efi`, first on disk but ends
up at `$uefipart`=15)
- GPT/BIOS partitions (fat, `BIOSSIZE=1` to enable, second on disk but ends up at partition 14)
- `UEFI_FS_LABEL="armbiefi"` - to set the FAT label for the EFI partition, visible in Win/Mac
- hard-requires gdisk package host-side
- add add_host_dependencies() extension method; fill `EXTRA_BUILD_DEPS="pkg pkg2"` to install to host before toolchains
download
- add pre_prepare_partitions() extension method, for custom partition size calculations
- add create_partition_table() extension method, used to do full-custom partitioning if `USE_HOOK_FOR_PARTITION=yes`
- add post_create_partitions() extension method, mostly for easy debugging
- add post_write_sdcard() extension method, where you can also set `SKIP_VERIFY=yes` to skip sdcard verification
- add post_install_kernel_debs() extension method.
- multiple fixes to bsp to avoid spurious errors when files are not where it expects
- v4: detect `update-initramfs` failure and abort build with useful message if it does
- v4: show useful stacktrace in `exit_with_error`
- if `ERROR_DEBUG_SHELL=yes`, drop into a shell before unmounting/deleting everything, so we can inspect what went wrong
- v4: display a message before `apt-get remove PACKAGE_LIST_BOARD_REMOVE` packages, so any errors while removing are easy to understand
- v4: preserve kernel .config's dates when copying
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions framework; refactor tool fetching/building into extensions
- a few examples of core refactoring using extensions
- sunxi-tools extension, enabled by 2 different sunxi family includes ("reuse" example)
- marvel-tools extension, enabled by 2 different mvebu family includes
- rkbin-tools extension, enabled by rockship64_common family include
- amlogic-fip/c2-blobs stuff refactored directly into meson64_common.inc ("single-use" example)
- removed the 'testings' fetch_from_repo completely since not used anywhere.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* .wip's for UEFI arm64 and UEFI/BIOS x86 via new GRUB extension
- v3: added `growroot`-awareness to `armbian-resize-filesystem`
- the partition-growing part of `armbian-resize-filesystem` does not deal correctly with the UEFI layout
- `growroot` is installed on UEFI images by default, that handles growing partition during initramfs
- now `armbian-resize-filesystem` handles `resize2fs` only, and works.
- v4: reworked UEFI board/family/include structure:
- use Distro's `linux-generic` kernel only for `current`
- `edge` now builds it's own pure-mainline `5.15.y` kernel, for both x86 and arm64
- `.config` taken from Ubuntu, probably needs tuning for EXTRAWIFI=yes et al
- v4: introduce `SKIP_KERNEL_SYMLINK=yes`, tested in `builddeb`
- to avoid symlinking kernel; u-boot likes it, but grub and flash-kernel hates it
- v5: many fixes
- v7: more small fixes.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* .wip for the RaspberryPi 4B via new flash-kernel extension
- this does not build it's own kernel "yet", but uses default linux-raspi kernel from Ubuntu
- flash-kernel is not really a bootloader
- it just prepares kernel et al a FAT partition for booting by the RPi4b bootloader
- flash-kernel is standard Debian package, but has only been tested on Ubuntu releases
- it is really only known-working since Hirsute release.
- Debian's rpi kernel is armhf only, so out of scope here, at least until we add source-built kernels.
- v3: fixed focal rootfs build. untested.
- v3: better variable names, preparing for source-built kernel.
- v5: new edge build with pure mainline kernel.
- v6: many fixes and some hacks for packaging and layout, also firmware (using Ubuntu's)
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Added first patch to edge x86 related to wifi drivers
* extensions: leave hostapd alone; remove hackish ext; block reentrancy
- package-list-utils does not belong in this PR
- grub or bcm2711 is not the place to remove hostapd
- block recursive enable_extension() calls, for now.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* gen-sample-extension-docs: fix: avoid counter in generated sample
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: dependencies: enable_extension() in extensions with a stack
- and better stacktraces, I hope
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Remove code from package list since we don't have it in repository
Adjust kernel config to disable driver that needs further polishing.
* Allow amd64 to build the same desktops as aarch64. We only have this limit for armhf, where some desktops don't work
* amd64: allow building amd64 on aarch64 with system toolchain
- conditionally add gcc-x86-64-linux-gnu to hostdeps
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* add libelf-dev directly to hostdeps (and Dockerfile), remove extension
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* packaging: remove SKIP_KERNEL_SYMLINK hack, fix the root cause
- which was the missing $image_name for non-arm64 & non-arm, so: x86 for example
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* grub: really obliterate u-boot stuff from BSP
- for now. soon we'll refactor u-boot so not have to do this
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* flash-kernel: really obliterate u-boot stuff from BSP
- for now. soon we'll refactor u-boot so not have to do this
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: add host_dependencies_ready() hook
- this passes FINAL_HOST_DEPS containing all hostdeps for the run after they're installed
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Add verification functions for correct selection.
* If UEFI Skip symlink creation
* Do not create dtb package for amd64
* Skip scripts folder cleaning if build process native.
Skip creating postinst prerm scripts for headers.
* Skip applying headers-debian-byteshift.patch if build native
* Fix architecture syntax as x86_64
* Revert "amd64: allow building amd64 on aarch64 with system toolchain"
This reverts commit 0c5ee20bb1b33a133e6e359476082d43d5ad457c.
* Compare architectures before starting compilation.
Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
* extensions: cleanups after fixes by the-Going
- packaging:
- there is _no need_ anymore for the symlink hack, CONFIG_EFI or no. But check is great, see below
- it's not `amd64` that has no DTB's, it's all UEFI, thus: `is_enabled CONFIG_EFI`, thanks!
- Explicitly disallow "reverse cross compile" in amd64.conf.
- whitespace-only-deletions: revert. we shall shellfmt the whole thing one day, but not today.
- fix a few syntax warnings in newly introduced code (floating `$ARCH` vs `"${ARCH}`) - blame shellcheck
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* packaging: fix: turns out a lot of boards have CONFIG_EFI=y, can't use that for dtb/no-dtb decision.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* grub: remove debug
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* firmware: allow installing `armbian-firmware-full`; make it really full
- can now use `BOARD_FIRMWARE_INSTALL="-full"` to install full firmware for the board. enable for UEFI.
- don't rely on KERNELSOURCE for firmware-related decisions. introduce `INSTALL_ARMBIAN_FIRMWARE` which defaults to `yes`
- rpi4b/flash-kernel: disable Armbian firmware; we need linux-firmware-raspi2, which conflicts.
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: log to /${LOG_SUBPATH}/ instead of fixed /debug/
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: introduce cleanup_extension_manager() called by build-all-ng's unset_all()
- to reset/unset everything done by the the initializer, so build can run again
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: remove 'global' logging, for use with build_all_ng
- enable_extensions() will have to live on without logging to file. it's just too early.
- now init EXTENSION_MANAGER_TMP_DIR in initialize_extension_manager()
- now init EXTENSION_MANAGER_LOG_FILE in initialize_extension_manager()
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* extensions: build-all-ng.sh bugfix due to extension's debug to stdout
- extensions (among other things) can produce output to stdout when activated
- fix: check_hash() produced "idential" (sic, now changed to IDENTICAL) to stdout as a trigger
- debugging output got mixed with "idential", rendering hash cache void for families that used extensions
- eg: sunxi, others
- fix is to send stdout to the bitbucket when sourcing the board & arch config files
- proper fix would be stop using stdout in this case and use return code for check_hash()
- one day soon
Signed-off-by: Ricardo Pardini <ricardo@pardini.net>
* Add CI build targets
Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
Co-authored-by: The-going <48602507+The-going@users.noreply.github.com>
2021-12-06 08:49:49 +00:00
|
|
|
# Source the extensions manager library at this point, before sourcing the config.
|
|
|
|
# This allows early calls to enable_extension(), but initialization proper is done later.
|
|
|
|
# shellcheck source=lib/extensions.sh
|
|
|
|
source "${SRC}"/lib/extensions.sh
|
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
display_alert "Using config file" "${CONFIG_FILE}" "info"
|
|
|
|
pushd "${CONFIG_PATH}" > /dev/null || exit
|
2019-09-28 18:49:28 +00:00
|
|
|
# shellcheck source=/dev/null
|
2020-06-18 14:06:21 +00:00
|
|
|
source "${CONFIG_FILE}"
|
|
|
|
popd > /dev/null || exit
|
2019-09-28 18:49:28 +00:00
|
|
|
|
2020-06-18 14:06:21 +00:00
|
|
|
[[ -z "${USERPATCHES_PATH}" ]] && USERPATCHES_PATH="${CONFIG_PATH}"
|
2019-09-28 18:49:28 +00:00
|
|
|
|
2018-05-24 19:33:16 +00:00
|
|
|
# Script parameters handling
|
2020-06-18 14:06:21 +00:00
|
|
|
while [[ "${1}" == *=* ]]; do
|
2021-06-26 21:36:47 +00:00
|
|
|
|
|
|
|
parameter=${1%%=*}
|
|
|
|
value=${1##*=}
|
|
|
|
shift
|
|
|
|
display_alert "Command line: setting $parameter to" "${value:-(empty)}" "info"
|
|
|
|
eval "$parameter=\"$value\""
|
|
|
|
|
2018-05-24 19:33:16 +00:00
|
|
|
done
|
|
|
|
|
2022-02-27 10:21:20 +00:00
|
|
|
# shellcheck source=lib/main.sh
|
|
|
|
source "${SRC}"/lib/main.sh
|