mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
48 lines
2.3 KiB
YAML
48 lines
2.3 KiB
YAML
config: # This is file 'patch/kernel/rockchip-rk3588-edge/0000.patching_config.yaml'
|
|
|
|
# PATCH NUMBERING INFO
|
|
#
|
|
# Patches should be ordered in such a way that general kernel patches are applied first, then SoC-related patches and at last board-specific patches
|
|
#
|
|
# Patch numbers in this folder are sorted by category:
|
|
#
|
|
# 000* for general patches
|
|
# 01** for GPU/HDMI related patches
|
|
# 08** for wireless patches
|
|
# 1*** for board specific patches:
|
|
# 101* for Rock-5B, 102* for Rock-5A and so on
|
|
|
|
# Just some info stuff; not used by the patching scripts
|
|
name: rockchip-rk3588-edge
|
|
kind: kernel
|
|
type: mainline # or: vendor
|
|
branch: linux-6.11.y
|
|
last-known-good-tag: v6.11-rc1
|
|
maintainers:
|
|
- { github: rpardini, name: Ricardo Pardini, email: ricardo@pardini.net, armbian-forum: rpardini }
|
|
|
|
# .dts files in these directories will be copied as-is to the build tree; later ones overwrite earlier ones.
|
|
# This is meant to provide a way to "add a board DTS" without having to null-patch them in.
|
|
dts-directories:
|
|
- { source: "dt", target: "arch/arm64/boot/dts/rockchip" }
|
|
|
|
# every file in these directories will be copied as-is to the build tree; later ones overwrite earlier ones
|
|
# This is meant as a way to have overlays, bare, in a directory, without having to null-patch them in.
|
|
# @TODO need a solution to auto-Makefile the overlays as well
|
|
overlay-directories:
|
|
- { source: "overlay", target: "arch/arm64/boot/dts/rockchip/overlay" }
|
|
|
|
# the Makefile in each of these directories will be magically patched to include the dts files copied
|
|
# or patched-in; overlay subdir will be included "-y" if it exists.
|
|
# No more Makefile patching needed, yay!
|
|
auto-patch-dt-makefile:
|
|
- { directory: "arch/arm64/boot/dts/rockchip", config-var: "CONFIG_ARCH_ROCKCHIP" }
|
|
|
|
# configuration for when applying patches to git / auto-rewriting patches (development cycle helpers)
|
|
patches-to-git:
|
|
do-not-commit-files:
|
|
- "MAINTAINERS" # constant churn, drop them. sorry.
|
|
- "Documentation/devicetree/bindings/arm/rockchip.yaml" # constant churn, conflicts on every bump, drop it. sorry.
|
|
do-not-commit-regexes: # Python-style regexes
|
|
- "^arch/([a-zA-Z0-9]+)/boot/dts/([a-zA-Z0-9]+)/Makefile$" # ignore DT Makefile patches, we've an auto-patcher now
|