diff options
author | Daniel Golle <daniel@makrotopia.org> | 2019-03-06 14:45:15 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2019-03-06 14:50:42 +0100 |
commit | 13c379e5c6e37b3822bf6e4e18cc6317e5b40fbb (patch) | |
tree | 0619e7718e4a1dfee2c86007c42cf3ebc2614d83 /target | |
parent | c8778250a91d691a274d2070dc25827325e3f090 (diff) | |
download | upstream-13c379e5c6e37b3822bf6e4e18cc6317e5b40fbb.tar.gz upstream-13c379e5c6e37b3822bf6e4e18cc6317e5b40fbb.tar.bz2 upstream-13c379e5c6e37b3822bf6e4e18cc6317e5b40fbb.zip |
ib: display whether profile comes with image metadata
Having image metadata (and signature) appended is a condition for
semi-automated sysupgrade, hence IB needs to be able to tell which
images will end up with metadata.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/imagebuilder/files/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index 76ea19028e..1370ec27df 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -73,7 +73,7 @@ include $(INCLUDE_DIR)/target.mk USER_PROFILE ?= $(firstword $(PROFILE_NAMES)) PROFILE_LIST = $(foreach p,$(PROFILE_NAMES), \ - echo '$(patsubst DEVICE_%,%,$(p)):'; $(if $($(p)_NAME),echo ' $(subst ','"'"',$($(p)_NAME))'; ) echo ' Packages: $($(p)_PACKAGES)'; \ + echo '$(patsubst DEVICE_%,%,$(p)):'; $(if $($(p)_NAME),echo ' $(subst ','"'"',$($(p)_NAME))'; ) echo ' Packages: $($(p)_PACKAGES)'; echo ' hasImageMetadata: $($(p)_HAS_IMAGE_METADATA)';\ ) .profiles.mk: .targetinfo |