|
|
|
@ -34,7 +34,7 @@ endef |
|
|
|
|
|
|
|
|
|
# board-specific sysupgrade image
|
|
|
|
|
define BuildFirmware/Generic |
|
|
|
|
dd if=$(BIN_DIR)/openwrt-$(1)-uImage.itb of=$(KDIR)/uImage.pad bs=64k conv=sync; \
|
|
|
|
|
dd if=$(BIN_DIR)/$(IMG_PREFIX)-$(1)-uImage.itb of=$(KDIR)/uImage.pad bs=64k conv=sync; \
|
|
|
|
|
dd if=$(KDIR)/root.$(2) of=$(KDIR)/root.$(2).pad bs=128k conv=sync; \
|
|
|
|
|
sh $(TOPDIR)/scripts/combined-image.sh \
|
|
|
|
|
$(KDIR)/uImage.pad \
|
|
|
|
@ -52,10 +52,10 @@ endef |
|
|
|
|
# rootfs and board-specific combined kernel+rootfs for convenience
|
|
|
|
|
define Image/Build/squashfs |
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.$(1))
|
|
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=128k conv=sync
|
|
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=128k conv=sync; \
|
|
|
|
|
$(foreach board,$(BOARDS),
|
|
|
|
|
( \
|
|
|
|
|
dd if=$(BIN_DIR)/openwrt-$(board)-uImage.itb bs=2048k conv=sync; \
|
|
|
|
|
dd if=$(BIN_DIR)/$(IMG_PREFIX)-$(board)-uImage.itb bs=2048k conv=sync; \
|
|
|
|
|
dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
|
|
|
|
|
) > $(BIN_DIR)/$(IMG_PREFIX)-$(board)-$(1).bin
|
|
|
|
|
)
|
|
|
|
|