2013-06-27 10:12:03 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2013-07-04 22:25:26 +00:00
|
|
|
|
2013-06-27 10:12:03 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
2015-03-26 23:34:43 +00:00
|
|
|
include $(INCLUDE_DIR)/host.mk
|
2013-06-27 10:12:03 +00:00
|
|
|
|
2015-04-10 21:36:33 +00:00
|
|
|
BOARDS:= \
|
|
|
|
imx23-olinuxino \
|
|
|
|
imx28-duckbill
|
2015-03-26 23:34:43 +00:00
|
|
|
FAT32_BLOCK_SIZE=1024
|
|
|
|
FAT32_BLOCKS=$(shell echo $$(($(CONFIG_MXS_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
|
2013-10-14 21:00:01 +00:00
|
|
|
|
2015-03-26 23:34:43 +00:00
|
|
|
define Image/BuildKernel
|
2013-08-22 19:29:07 +00:00
|
|
|
mkimage -A arm -O linux -T kernel -C none \
|
2013-11-12 01:25:53 +00:00
|
|
|
-a 0x40008000 -e 0x40008000 \
|
2013-08-22 19:29:07 +00:00
|
|
|
-n 'ARM OpenWrt Linux-$(LINUX_VERSION)' \
|
2013-11-20 10:23:49 +00:00
|
|
|
-d $(KDIR)/zImage $(KDIR)/uImage
|
2013-08-22 19:29:07 +00:00
|
|
|
cp $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage
|
|
|
|
endef
|
|
|
|
|
2013-10-14 21:00:01 +00:00
|
|
|
define Image/InstallKernel
|
|
|
|
|
2015-04-10 21:34:21 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE),)
|
2013-10-14 21:00:01 +00:00
|
|
|
mkdir -p $(TARGET_DIR)/boot
|
|
|
|
$(CP) $(LINUX_DIR)/arch/arm/boot/zImage $(TARGET_DIR)/boot/
|
|
|
|
endif
|
2015-04-10 21:34:21 +00:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),)
|
|
|
|
mkdir -p $(TARGET_DIR)/boot
|
|
|
|
cp $(KDIR)/uImage $(TARGET_DIR)/boot/
|
|
|
|
endif
|
2013-10-14 21:00:01 +00:00
|
|
|
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),)
|
|
|
|
mkdir -p $(TARGET_DIR)/boot
|
|
|
|
$(foreach board,$(BOARDS),
|
2014-07-21 18:42:06 +00:00
|
|
|
$(CP) $(DTS_DIR)/$(board).dtb $(TARGET_DIR)/boot/
|
2013-10-14 21:00:01 +00:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
2013-07-04 22:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2015-03-26 23:34:43 +00:00
|
|
|
define Image/Build/SDCard
|
|
|
|
rm -f $(KDIR)/boot.img
|
|
|
|
mkdosfs $(KDIR)/boot.img -C $(FAT32_BLOCKS)
|
|
|
|
|
2015-03-27 02:35:11 +00:00
|
|
|
mcopy -i $(KDIR)/boot.img $(DTS_DIR)/$(2).dtb ::$(2).dtb
|
2015-03-26 23:34:43 +00:00
|
|
|
mcopy -i $(KDIR)/boot.img $(BIN_DIR)/$(IMG_PREFIX)-uImage ::uImage
|
|
|
|
|
|
|
|
./gen_mxs_sdcard_img.sh \
|
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)-sdcard-vfat-$(1).img \
|
|
|
|
$(KDIR)/boot.img \
|
|
|
|
$(KDIR)/root.$(1) \
|
|
|
|
$(CONFIG_MXS_SD_BOOT_PARTSIZE) \
|
|
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE) \
|
|
|
|
$(BIN_DIR)/uboot-mxs-$(3).sb
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/olinuxino-maxi
|
|
|
|
$(call Image/Build/SDCard,$(1),imx23-olinuxino,mx23_olinuxino)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/olinuxino-micro
|
|
|
|
$(call Image/Build/SDCard,$(1),imx23-olinuxino,mx23_olinuxino)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/Profile/duckbill
|
|
|
|
$(call Image/Build/SDCard,$(1),imx28-duckbill,duckbill)
|
|
|
|
endef
|
|
|
|
|
2013-07-04 22:25:26 +00:00
|
|
|
define Image/Build
|
2015-03-26 23:34:43 +00:00
|
|
|
$(call Image/Build/$(1),$(1))
|
|
|
|
$(call Image/Build/Profile/$(PROFILE),$(1))
|
2015-04-10 21:36:33 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
|
2013-07-04 22:25:26 +00:00
|
|
|
endef
|
|
|
|
|
2013-06-27 10:12:03 +00:00
|
|
|
$(eval $(call BuildImage))
|