armbian_build/patch/kernel/archive/meson64-6.8/kernel-6.8-tools-cgroup-makefile.patch
SteeManMI d4093bd18e
Bump meson64 edge from 6.7 to 6.8 (#6454)
* Bump meson64 edge from 6.7 to 6.8

 Changes to be committed:
	modified:   config/sources/families/include/meson64_common.inc
	renamed:    patch/kernel/archive/meson64-6.7 -> patch/kernel/archive/meson64-6.8
	modified:   patch/kernel/archive/meson64-6.8/board-bananapi-cm4-cm4io-fixes.patch
	modified:   patch/kernel/archive/meson64-6.8/general-input-touchscreen-Add-D-WAV-Multitouch.patch
	new file:   patch/kernel/archive/meson64-6.8/kernel-6.8-tools-cgroup-makefile.patch

* updates from rewrite-kernel-patches

* updates from rewrite-kernel-config
2024-04-01 07:43:40 -04:00

42 lines
1.7 KiB
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: ColorfulRhino <131405023+ColorfulRhino@users.noreply.github.com>
Date: Sat, 30 Mar 2024 21:09:12 +0100
Subject: [ARCHEOLOGY] meson-s4t7: Fix custom_kernel_config: hash modification
has to happen inside the first function call
> X-Git-Archeology: > recovered message: > Will be ignored on second time the function is called
> X-Git-Archeology: - Revision 6ced5cc02637fb6dbc980aa77fcdc77f2ccf5067: https://github.com/armbian/build/commit/6ced5cc02637fb6dbc980aa77fcdc77f2ccf5067
> X-Git-Archeology: Date: Sat, 30 Mar 2024 21:09:12 +0100
> X-Git-Archeology: From: ColorfulRhino <131405023+ColorfulRhino@users.noreply.github.com>
> X-Git-Archeology: Subject: meson-s4t7: Fix custom_kernel_config: hash modification has to happen inside the first function call
> X-Git-Archeology:
> X-Git-Archeology: - Revision caf0529240948df416b015aeea8c23e420a55ce6: https://github.com/armbian/build/commit/caf0529240948df416b015aeea8c23e420a55ce6
> X-Git-Archeology: Date: Sun, 31 Mar 2024 18:21:26 -0400
> X-Git-Archeology: From: Barry Lind (SteeManMI) <barrylind@yahoo.com>
> X-Git-Archeology: Subject: Bump meson64 edge from 6.7 to 6.8
> X-Git-Archeology:
---
tools/cgroup/Makefile | 11 ++++++++++
1 file changed, 11 insertions(+)
diff --git a/tools/cgroup/Makefile b/tools/cgroup/Makefile
new file mode 100644
index 000000000000..ffca068e4a76
--- /dev/null
+++ b/tools/cgroup/Makefile
@@ -0,0 +1,11 @@
+# SPDX-License-Identifier: GPL-2.0
+# Makefile for cgroup tools
+
+CFLAGS = -Wall -Wextra
+
+all: cgroup_event_listener
+%: %.c
+ $(CC) $(CFLAGS) -o $@ $^
+
+clean:
+ $(RM) cgroup_event_listener
--
Armbian