mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
mcs814x: account for dtb output directory differences
3.3 produced *.dtb files in arch/arm/boot/ while 3.14 will produce those in arch/arm/boot/dts/, adjust the image makefile accordingly. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43925 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1e7c30a28f
commit
03e961eb20
@ -9,6 +9,12 @@ include $(INCLUDE_DIR)/image.mk
|
||||
|
||||
TARGET_DTBS := rbt-832 dlan-usb-extender
|
||||
|
||||
ifeq ($(KERNEL_PATCHVER),3.3)
|
||||
DTBS_DIR:=
|
||||
else
|
||||
DTBS_DIR:=dts/
|
||||
endif
|
||||
|
||||
LOADADDR:=0x00008000
|
||||
|
||||
JFFS2_BLOCKSIZE = 128k
|
||||
@ -22,7 +28,7 @@ endef
|
||||
|
||||
define Image/Build/DTB
|
||||
cp $(KDIR)/zImage$(2) $(KDIR)/zImage-$(1);
|
||||
cat $(LINUX_DIR)/arch/$(ARCH)/boot/$(1).dtb >> $(KDIR)/zImage$(2)-$(1);
|
||||
cat $(LINUX_DIR)/arch/$(ARCH)/boot/$(DTBS_DIR)$(1).dtb >> $(KDIR)/zImage$(2)-$(1);
|
||||
$(call Image/Build/MkuImage,$(KDIR)/zImage$(2)-$(1),$(KDIR)/uImage$(2)-$(1))
|
||||
cp $(KDIR)/uImage$(2)-$(1) $(UIMAGE)$(2)-$(1);
|
||||
endef
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user