forked from armbian/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
config: # This is file 'patch/kernel/archive/rockchip64-6.8/0000.patching_config.yaml' | ||
|
||
# Just some info stuff; not used by the patching scripts | ||
name: integrate-6.15 | ||
kind: kernel | ||
type: mainline # or: vendor | ||
branch: linux-6.14.y | ||
last-known-good-tag: v6.14 | ||
maintainers: | ||
- { github: rpardini, name: Ricardo Pardini, email: [email protected], armbian-forum: rpardini } | ||
- { github: paolosabatino, name: Paolo Sabatino, email: [email protected], armbian-forum: jock } | ||
|
||
# .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 | ||
|
33 changes: 33 additions & 0 deletions
33
patch/kernel/integrate-6.15/0001-tools-Makefile-remove-pci-target.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Jianfeng Liu <[email protected]> | ||
Date: Sun, 16 Feb 2025 17:51:46 +0800 | ||
Subject: tools/Makefile: remove pci target | ||
|
||
--- | ||
tools/Makefile | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/tools/Makefile b/tools/Makefile | ||
index 111111111111..222222222222 100644 | ||
--- a/tools/Makefile | ||
+++ b/tools/Makefile | ||
@@ -172,7 +172,7 @@ acpi_clean: | ||
cpupower_clean: | ||
$(call descend,power/cpupower,clean) | ||
|
||
-counter_clean hv_clean firewire_clean bootconfig_clean spi_clean usb_clean virtio_clean mm_clean wmi_clean bpf_clean iio_clean gpio_clean objtool_clean leds_clean pci_clean firmware_clean debugging_clean tracing_clean: | ||
+counter_clean hv_clean firewire_clean bootconfig_clean spi_clean usb_clean virtio_clean mm_clean wmi_clean bpf_clean iio_clean gpio_clean objtool_clean leds_clean firmware_clean debugging_clean tracing_clean: | ||
$(call descend,$(@:_clean=),clean) | ||
|
||
libapi_clean: | ||
@@ -219,7 +219,7 @@ clean: acpi_clean counter_clean cpupower_clean hv_clean firewire_clean \ | ||
perf_clean selftests_clean turbostat_clean bootconfig_clean spi_clean usb_clean virtio_clean \ | ||
mm_clean bpf_clean iio_clean x86_energy_perf_policy_clean tmon_clean \ | ||
freefall_clean build_clean libbpf_clean libsubcmd_clean \ | ||
- gpio_clean objtool_clean leds_clean wmi_clean pci_clean firmware_clean debugging_clean \ | ||
+ gpio_clean objtool_clean leds_clean wmi_clean firmware_clean debugging_clean \ | ||
intel-speed-select_clean tracing_clean thermal_clean thermometer_clean thermal-engine_clean \ | ||
sched_ext_clean | ||
|
||
-- | ||
Armbian |