mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* import new layout for libreelec patches (no more mbox) * refactor existing patches to kernel 6.17 * fix uboot issue causing VOP IOMMU page fault and no screen
18 lines
368 B
Diff
18 lines
368 B
Diff
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
|