Browse Source

build: add image command for calling kernel2minor

Signed-off-by: Felix Fietkau <[email protected]>
Felix Fietkau 8 years ago
parent
commit
c2e6ca26e5
1 changed files with 5 additions and 0 deletions
  1. 5 0
      include/image-commands.mk

+ 5 - 0
include/image-commands.mk

@@ -190,3 +190,8 @@ metadata_json = \
 define Build/append-metadata
 define Build/append-metadata
 	$(if $(SUPPORTED_DEVICES),echo $(call metadata_json,$(SUPPORTED_DEVICES)) | fwtool -I - $@)
 	$(if $(SUPPORTED_DEVICES),echo $(call metadata_json,$(SUPPORTED_DEVICES)) | fwtool -I - $@)
 endef
 endef
+
+define Build/kernel2minor
+	kernel2minor -k $@ -r [email protected] $(1)
+	mv [email protected] $@
+endef