mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-07 07:03:49 +00:00
mvebu: Switch to the generic mkuimage macro
The mvebu image makefile define something almost identical to the generic implementation found in include/image.mk. Switch to this implementation. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> SVN-Revision: 43969
This commit is contained in:
parent
91b79128dc
commit
a72bf9f3d2
@ -24,15 +24,12 @@ KDIR_TMP:=$(KDIR)/tmp
|
|||||||
|
|
||||||
UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage
|
UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage
|
||||||
|
|
||||||
define Image/Build/MkuImage
|
|
||||||
mkimage -A arm -O linux -T kernel -a $(LOADADDR) -C none -e $(LOADADDR) \
|
|
||||||
-n 'ARM OpenWrt Linux-$(LINUX_VERSION)' -d $(1) $(2);
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Image/Build/DTB
|
define Image/Build/DTB
|
||||||
cp $(KDIR)/zImage$(2) $(KDIR)/zImage$(2)-$(1);
|
cp $(KDIR)/zImage$(2) $(KDIR)/zImage$(2)-$(1);
|
||||||
cat $(DTS_DIR)/$(1).dtb >> $(KDIR)/zImage$(2)-$(1);
|
cat $(DTS_DIR)/$(1).dtb >> $(KDIR)/zImage$(2)-$(1);
|
||||||
$(call Image/Build/MkuImage,$(KDIR)/zImage$(2)-$(1),$(KDIR)/uImage$(2)-$(1))
|
$(call Image/BuildKernel/MkuImage, \
|
||||||
|
none, $(LOADADDR), $(LOADADDR), \
|
||||||
|
$(KDIR)/zImage$(2)-$(1), $(KDIR)/uImage$(2)-$(1))
|
||||||
cp $(KDIR)/uImage$(2)-$(1) $(UIMAGE)$(2)-$(1);
|
cp $(KDIR)/uImage$(2)-$(1) $(UIMAGE)$(2)-$(1);
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user