mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-30 08:04:10 +00:00
build: move Build/buffalo-trx to image-commands.mk
Move Build/buffalo-trx to image-commands.mk from image/mt7622.mk to use that definition from ramips as well. Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
This commit is contained in:
parent
fbeff10b5a
commit
47d9dcd01a
@ -231,6 +231,27 @@ define Build/buffalo-tag-dhp
|
|||||||
mv $@.new $@
|
mv $@.new $@
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/buffalo-trx
|
||||||
|
$(eval magic=$(word 1,$(1)))
|
||||||
|
$(eval kern_bin=$(if $(1),$(IMAGE_KERNEL),$@))
|
||||||
|
$(eval rtfs_bin=$(word 2,$(1)))
|
||||||
|
$(eval apnd_bin=$(word 3,$(1)))
|
||||||
|
$(eval kern_size=$(if $(KERNEL_SIZE),$(KERNEL_SIZE),0x400000))
|
||||||
|
|
||||||
|
$(if $(rtfs_bin),touch $(rtfs_bin))
|
||||||
|
$(STAGING_DIR_HOST)/bin/otrx create $@.new \
|
||||||
|
$(if $(magic),-M $(magic),) \
|
||||||
|
-f $(kern_bin) \
|
||||||
|
$(if $(rtfs_bin),\
|
||||||
|
-a 0x20000 \
|
||||||
|
-b $$(( $(call exp_units,$(kern_size)) )) \
|
||||||
|
-f $(rtfs_bin),) \
|
||||||
|
$(if $(apnd_bin),\
|
||||||
|
-A $(apnd_bin) \
|
||||||
|
-a 0x20000)
|
||||||
|
mv $@.new $@
|
||||||
|
endef
|
||||||
|
|
||||||
define Build/check-size
|
define Build/check-size
|
||||||
@imagesize="$$(stat -c%s $@)"; \
|
@imagesize="$$(stat -c%s $@)"; \
|
||||||
limitsize="$$(($(call exp_units,$(if $(1),$(1),$(IMAGE_SIZE)))))"; \
|
limitsize="$$(($(call exp_units,$(if $(1),$(1),$(IMAGE_SIZE)))))"; \
|
||||||
|
@ -8,27 +8,6 @@ define Image/Prepare
|
|||||||
echo -ne '\xde\xad\xc0\xde' > $(KDIR)/ubi_mark
|
echo -ne '\xde\xad\xc0\xde' > $(KDIR)/ubi_mark
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/buffalo-trx
|
|
||||||
$(eval magic=$(word 1,$(1)))
|
|
||||||
$(eval kern_bin=$(if $(1),$(IMAGE_KERNEL),$@))
|
|
||||||
$(eval rtfs_bin=$(word 2,$(1)))
|
|
||||||
$(eval apnd_bin=$(word 3,$(1)))
|
|
||||||
$(eval kern_size=$(if $(KERNEL_SIZE),$(KERNEL_SIZE),0x400000))
|
|
||||||
|
|
||||||
$(if $(rtfs_bin),touch $(rtfs_bin))
|
|
||||||
$(STAGING_DIR_HOST)/bin/otrx create $@.new \
|
|
||||||
$(if $(magic),-M $(magic),) \
|
|
||||||
-f $(kern_bin) \
|
|
||||||
$(if $(rtfs_bin),\
|
|
||||||
-a 0x20000 \
|
|
||||||
-b $$(( $(call exp_units,$(kern_size)) )) \
|
|
||||||
-f $(rtfs_bin),) \
|
|
||||||
$(if $(apnd_bin),\
|
|
||||||
-A $(apnd_bin) \
|
|
||||||
-a 0x20000)
|
|
||||||
mv $@.new $@
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/bl2
|
define Build/bl2
|
||||||
cat $(STAGING_DIR_IMAGE)/mt7622-$1-bl2.img >> $@
|
cat $(STAGING_DIR_IMAGE)/mt7622-$1-bl2.img >> $@
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user