mirror of
https://github.com/armbian/build.git
synced 2025-08-10 13:16:58 +02:00
75 lines
4.3 KiB
Bash
75 lines
4.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
function kernel_main_patching_python() {
|
|
prepare_pip_packages_for_python_tools
|
|
|
|
# outer scope variables: kernel_drivers_patch_file kernel_drivers_patch_hash
|
|
|
|
declare patch_debug="${SHOW_DEBUG:-${DEBUG_PATCHING:-"no"}}"
|
|
declare temp_file_for_output
|
|
temp_file_for_output="$(mktemp)" # Get a temporary file for the output.
|
|
|
|
# array with all parameters; will be auto-quoted by bash's @Q modifier below
|
|
declare -a params_quoted=(
|
|
"PYTHONUNBUFFERED=yes" # Python should not buffer output, so we can see it in real time.
|
|
"PYTHONPYCACHEPREFIX=${SRC}/cache/pycache" # Python should not use its own cache, but use our own.
|
|
"LOG_DEBUG=${patch_debug}" # Logging level for python.
|
|
"SRC=${SRC}" # Armbian root
|
|
"OUTPUT=${temp_file_for_output}" # Output file for the python script.
|
|
"ASSET_LOG_BASE=$(print_current_asset_log_base_file)" # base file name for the asset log; to write .md summaries.
|
|
"PATCH_TYPE=kernel" # or, u-boot, or, atf
|
|
"PATCH_DIRS_TO_APPLY=${KERNELPATCHDIR}" # A space-separated list of directories to apply...
|
|
"USERPATCHES_PATH=${USERPATCHES_PATH}" # Needed to find the userpatches.
|
|
#"BOARD=" # BOARD is needed for the patchset selection logic; mostly for u-boot. empty for kernel.
|
|
#"TARGET=" # TARGET is need for u-boot's SPI/SATA etc selection logic. empty for kernel
|
|
# Needed so git can find the global .gitconfig, and Python can parse the PATH to determine which git to use.
|
|
"PATH=${PATH}"
|
|
"HOME=${HOME}"
|
|
# What to do?
|
|
"APPLY_PATCHES=yes" # Apply the patches to the filesystem. Does not imply git commiting. If no, still exports the hash.
|
|
"PATCHES_TO_GIT=${PATCHES_TO_GIT:-no}" # Commit to git after applying the patches.
|
|
"REWRITE_PATCHES=${REWRITE_PATCHES:-no}" # Rewrite the original patch files after git commiting.
|
|
# Git dir, revision, and target branch
|
|
"GIT_WORK_DIR=${kernel_work_dir}" # "Where to apply patches?"
|
|
"BASE_GIT_REVISION=${kernel_git_revision}" # The revision we're building/patching. Python will reset and clean to this.
|
|
"BRANCH_FOR_PATCHES=kernel-${LINUXFAMILY}-${KERNEL_MAJOR_MINOR}" # When applying patches-to-git, use this branch.
|
|
# Lenience: allow problematic patches to be applied.
|
|
"ALLOW_RECREATE_EXISTING_FILES=yes" # Allow patches to recreate files that already exist.
|
|
"GIT_ARCHEOLOGY=${GIT_ARCHEOLOGY:-no}" # Allow git to do some archaeology to find the original patch's owners
|
|
# Pass the maintainer info, used for commits.
|
|
"MAINTAINER_NAME=${MAINTAINER}" # Name of the maintainer
|
|
"MAINTAINER_EMAIL=${MAINTAINERMAIL}" # Email of the maintainer
|
|
# Pass in the drivers extra patches and hashes; will be applied _first_, before series.
|
|
"EXTRA_PATCH_FILES_FIRST=${kernel_drivers_patch_file}" # Is a space-separated list.
|
|
"EXTRA_PATCH_HASHES_FIRST=${kernel_drivers_patch_hash}" # Is a space-separated list.
|
|
)
|
|
display_alert "Calling Python patching script" "for kernel" "info"
|
|
declare python3_binary_path
|
|
prepare_python3_binary_for_python_tools
|
|
run_host_command_logged env -i "${params_quoted[@]@Q}" "${python3_binary_path}" "${SRC}/lib/tools/patching.py"
|
|
run_host_command_logged cat "${temp_file_for_output}"
|
|
# shellcheck disable=SC1090
|
|
source "${temp_file_for_output}" # SOURCE IT!
|
|
run_host_command_logged rm -f "${temp_file_for_output}"
|
|
return 0
|
|
}
|
|
|
|
function kernel_main_patching() {
|
|
# kernel_drivers_create_patches will fill the variables below
|
|
declare kernel_drivers_patch_file kernel_drivers_patch_hash
|
|
LOG_SECTION="kernel_drivers_create_patches" do_with_logging do_with_hooks kernel_drivers_create_patches "${kernel_work_dir}" "${kernel_git_revision}"
|
|
|
|
# Python patching will git reset to the kernel SHA1 git revision, and remove all untracked files.
|
|
LOG_SECTION="kernel_main_patching_python" do_with_logging do_with_hooks kernel_main_patching_python
|
|
|
|
# STOP HERE, for cli support for patching tools.
|
|
if [[ "${PATCH_ONLY}" == "yes" ]]; then
|
|
return 0
|
|
fi
|
|
|
|
# Interactive!!!
|
|
[[ $CREATE_PATCHES == yes ]] && userpatch_create "kernel" # create patch for manual source changes
|
|
|
|
return 0 # there is a shortcircuit above
|
|
}
|