diff options
author | Paul Spooren <mail@aparcar.org> | 2021-09-23 18:46:15 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-09-23 21:37:19 -1000 |
commit | a7fdd4de5931fdd0af61e2ab5d2da3db2339a41d (patch) | |
tree | 9bd4d9a9547e68c2e7056aa9c9bdb6997524f2c3 | |
parent | 67cd648fa233c1063b55c216e2b26386bfada8ab (diff) | |
download | upstream-a7fdd4de5931fdd0af61e2ab5d2da3db2339a41d.tar.gz upstream-a7fdd4de5931fdd0af61e2ab5d2da3db2339a41d.tar.bz2 upstream-a7fdd4de5931fdd0af61e2ab5d2da3db2339a41d.zip |
imagebuilder: show architecture in `make info` output
Using `make info` show the current target, revision, default packages
and available profiles. This commits adds the used architecture.
Signed-off-by: Paul Spooren <mail@aparcar.org>
-rw-r--r-- | target/imagebuilder/files/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index aeae98aacd..871a40b3a1 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -102,6 +102,7 @@ staging_dir/host/.prereq-build: include/prereq-build.mk _call_info: FORCE echo 'Current Target: "$(TARGETID)"' + echo 'Current Architecture: "$(ARCH)"' echo 'Current Revision: "$(REVISION)"' echo 'Default Packages: $(DEFAULT_PACKAGES)' echo 'Available Profiles:' |