diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2020-12-11 23:14:03 +0900 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2021-01-29 15:28:12 +0100 |
commit | 0071c7cd8246197ae27d8a0c4b5bdf7976dbe362 (patch) | |
tree | df553b0040a92c2524fb17a325cf58bdc456f3f5 /include/image-commands.mk | |
parent | 396a35dd51f1d58c051d0c1f1100e44950933d3b (diff) | |
download | upstream-0071c7cd8246197ae27d8a0c4b5bdf7976dbe362.tar.gz upstream-0071c7cd8246197ae27d8a0c4b5bdf7976dbe362.tar.bz2 upstream-0071c7cd8246197ae27d8a0c4b5bdf7976dbe362.zip |
build: add elecom-product-header for ELECOM devices
A header used in ELECOM WRC-300GHBK2-I and WRC-1750GHBK2-I/C is also
used in ELECOM WRC-2533GHBK-I, so split the code to generate the header
and move it to image-commands.mk to use from ramips target.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Reviewed-by: Sungbo Eo <mans0n@gorani.run>
Diffstat (limited to 'include/image-commands.mk')
-rw-r--r-- | include/image-commands.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/image-commands.mk b/include/image-commands.mk index 3beec80c8b..70fa0b8357 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -155,6 +155,18 @@ define Build/check-size } endef +define Build/elecom-product-header + $(eval product=$(word 1,$(1))) + $(eval fw=$(word 2,$(1))) + + ( \ + echo -n -e "ELECOM\x00\x00$(product)" | dd bs=40 count=1 conv=sync; \ + echo -n "0.00" | dd bs=16 count=1 conv=sync; \ + dd if=$(fw); \ + ) > $(fw).new + mv $(fw).new $(fw) +endef + define Build/eva-image $(STAGING_DIR_HOST)/bin/lzma2eva $(KERNEL_LOADADDR) $(KERNEL_LOADADDR) $@ $@.new mv $@.new $@ |