diff options
author | INAGAKI Hiroshi <musashino.open@gmail.com> | 2019-08-19 21:38:24 +0900 |
---|---|---|
committer | Chuanhong Guo <gch981213@gmail.com> | 2019-09-25 14:44:36 +0800 |
commit | c1394dabf6547dbc25e9563ef980aed9589479ab (patch) | |
tree | 8dadd2cacb31a45acd4e8832a60730f6126352d3 /target/linux/ramips/image/mt7620.mk | |
parent | 6c3ae072dce1fc42224fc291e6eae2bd0008fb64 (diff) | |
download | upstream-c1394dabf6547dbc25e9563ef980aed9589479ab.tar.gz upstream-c1394dabf6547dbc25e9563ef980aed9589479ab.tar.bz2 upstream-c1394dabf6547dbc25e9563ef980aed9589479ab.zip |
ramips: move "elx-header" to Makefile from mt7620.mk and mt7621.mk
I-O DATA WNPR2600G has an "elx-header", so move this definition to
generic makefile to use it from mt7621 subtarget.
This definition is also added to mt7621.mk in
f285e8634c57d28aa970b80c5c59e85485f35c7d, so remove it from mt7621.mk.
And added a line to cleanup used header file.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Diffstat (limited to 'target/linux/ramips/image/mt7620.mk')
-rw-r--r-- | target/linux/ramips/image/mt7620.mk | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/target/linux/ramips/image/mt7620.mk b/target/linux/ramips/image/mt7620.mk index 320d4abd1f..36898c99bc 100644 --- a/target/linux/ramips/image/mt7620.mk +++ b/target/linux/ramips/image/mt7620.mk @@ -16,25 +16,6 @@ define Build/elecom-header -f $@ -C $(KDIR) v_0.0.0.bin v_0.0.0.md5 endef -define Build/elx-header - $(eval hw_id=$(word 1,$(1))) - $(eval xor_pattern=$(word 2,$(1))) - ( \ - echo -ne "\x00\x00\x00\x00\x00\x00\x00\x03" | \ - dd bs=42 count=1 conv=sync; \ - hw_id="$(hw_id)"; \ - echo -ne "\x$${hw_id:0:2}\x$${hw_id:2:2}\x$${hw_id:4:2}\x$${hw_id:6:2}" | \ - dd bs=20 count=1 conv=sync; \ - echo -ne "$$(printf '%08x' $$(stat -c%s $@) | fold -s2 | xargs -I {} echo \\x{} | tr -d '\n')" | \ - dd bs=8 count=1 conv=sync; \ - echo -ne "$$($(STAGING_DIR_HOST)/bin/mkhash md5 $@ | fold -s2 | xargs -I {} echo \\x{} | tr -d '\n')" | \ - dd bs=58 count=1 conv=sync; \ - ) > $(KDIR)/tmp/$(DEVICE_NAME).header - $(call Build/xor-image,-p $(xor_pattern) -x) - cat $(KDIR)/tmp/$(DEVICE_NAME).header $@ > $@.new - mv $@.new $@ -endef - define Device/aigale_ai-br100 MTK_SOC := mt7620a IMAGE_SIZE := 7936k |