From 4a11666aab05873894d96c23b34f40e0991312de Mon Sep 17 00:00:00 2001 From: Viktor <35473052+viktorxda@users.noreply.github.com> Date: Mon, 4 Dec 2023 05:16:39 +0100 Subject: [PATCH] [no ci] Makefile: list available packages --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6f878994..a853cd22 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ help: - make list - show available device configurations\n \ - make deps - install build dependencies\n \ - make clean - remove defconfig and target folder\n \ + - make package - list available packages\n \ - make distclean - remove buildroot and output folder\n \ - make br-linux - build linux kernel only\n \ - make all - build the device firmware\n\n" @@ -50,6 +51,9 @@ prepare: toolname: @general/scripts/show_toolchains.sh $(CONFIG) +package: + @find general/package/* -maxdepth 0 -type d -printf "br-%f\n" | grep -v patches + clean: @rm -rf $(TARGET)/images $(TARGET)/target