[openwrt/openwrt] target/imagebuilder: add help text and rename whatdepends to package_whatdepens
LEDE Commits
lede-commits at lists.infradead.org
Fri Jan 6 09:45:14 PST 2023
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/744a5ab9ce7b911df9ef73a514b8fa716c037f4b
commit 744a5ab9ce7b911df9ef73a514b8fa716c037f4b
Author: Florian Eckert <fe at dev.tdt.de>
AuthorDate: Thu Aug 19 08:48:08 2021 +0200
target/imagebuilder: add help text and rename whatdepends to package_whatdepens
Add the command `package_whatdepends` to show all package that have a
dependency to this packages.
Signed-off-by: Florian Eckert <fe at dev.tdt.de>
---
target/imagebuilder/files/Makefile | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile
index acf07a5518..275932577b 100644
--- a/target/imagebuilder/files/Makefile
+++ b/target/imagebuilder/files/Makefile
@@ -36,6 +36,7 @@ Available Commands:
clean: Remove images and temporary build files
image: Build an image (see below for more information).
manifest: Show all package that will be installed into the image
+ package_whatdepends: Show which packages have a dependency on this
package_depends: Show installation dependency of the package
image:
@@ -59,6 +60,13 @@ manifest:
make manifest PACKAGES="<pkg1> [<pkg2> [<pkg3> ...]]" # include extra packages
make manifest STRIP_ABI=1 # remove ABI version from printed package names
+
+package_whatdepends:
+ List "all" packages that have a dependency on this package
+ You can use the following parameters:
+
+ make package_whatdepends PACKAGE="<pkg>"
+
package_depends:
List "all" packages dependency of the package
You can use the following parameters:
@@ -263,7 +271,7 @@ manifest: FORCE
$(if $(PROFILE),USER_PROFILE="$(PROFILE_FILTER)") \
$(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)"))
-whatdepends: FORCE
+package_whatdepends: FORCE
ifeq ($(PACKAGE),)
@echo 'Variable `PACKAGE` is not set but required by `whatdepends`'
@exit 1
@@ -280,4 +288,4 @@ endif
@$(OPKG) depends -A $(PACKAGE)
-.SILENT: help info image manifest whatdepends package_depends
+.SILENT: help info image manifest package_whatdepends package_depends
More information about the lede-commits
mailing list