Signed-off-by: Michael Heimpold <[email protected]>
---
target/linux/mxs/image/Makefile | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/target/linux/mxs/image/Makefile b/target/linux/mxs/image/Makefile
index b910237..f025da2 100644
--- a/target/linux/mxs/image/Makefile
+++ b/target/linux/mxs/image/Makefile
@@ -8,6 +8,10 @@
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
+BOARDS:= \
+ imx23-olinuxino \
+ imx28-duckbill
+
define Image/BuildKernel/olinuxino-bootlet
cat $(LINUX_DIR)/arch/arm/boot/zImage
$(LINUX_DIR)/arch/arm/boot/dts/imx23-olinuxino.dtb > $(STAGING_DIR)/zImage_dtb
(cd $(STAGING_DIR); \
@@ -34,6 +38,27 @@ define Image/BuildKernel
ifeq ($(CONFIG_PACKAGE_uboot-imx23-mx23_olinuxino),y)
$(call Image/BuildKernel/olinuxino-uboot)
endif
+
+ $(CP) $(LINUX_DIR)/arch/arm/boot/zImage
$(BIN_DIR)/openwrt-$(BOARD)-zImage
+ $(foreach board,$(BOARDS),
+ $(CP) $(LINUX_DIR)/arch/arm/boot/dts/$(board).dtb $(BIN_DIR)/
+ )
+endef
+
+define Image/InstallKernel
+
+ ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),)
+ mkdir -p $(TARGET_DIR)/boot
+ $(CP) $(LINUX_DIR)/arch/arm/boot/zImage $(TARGET_DIR)/boot/
+ endif
+
+ ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),)
+ mkdir -p $(TARGET_DIR)/boot
+ $(foreach board,$(BOARDS),
+ $(CP) $(LINUX_DIR)/arch/arm/boot/dts/$(board).dtb
$(TARGET_DIR)/boot/
+ )
+ endif
+
endef
define Image/Build
@@ -42,4 +67,3 @@ define Image/Build
endef
$(eval $(call BuildImage))
-
--
1.7.10.4
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel