0c25f159fd
Previous patch was pushed due to false user report. While at it fix alphabetic ordering. The board is optimized for ubi(fs) and boots OpenWrt without changes to uboot environment if OpenWrt's uboot package is used. In order to flash the image run following commands in uboot shell: nand erase 0x200000 0x1fe00000 ubi part root ; ubi remove rootfs ; ubi create rootfs tftpboot 0x800000 openwrt-kirkwood-iconnect-rootfs.ubifs ; ubi write 0x800000 rootfs ${filesize} ; reset Signed-off-by: Luka Perkov <luka@openwrt.org> CC: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39591
145 lines
4.7 KiB
Makefile
145 lines
4.7 KiB
Makefile
#
|
|
# Copyright (C) 2009-2013 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
NAND_BLOCKSIZE := 2048:128k
|
|
|
|
define sanitize_profile_name
|
|
$(shell echo $(PROFILE) | tr '[:upper:]' '[:lower:]')
|
|
endef
|
|
|
|
define Image/BuildKernel/Template
|
|
|
|
$(CP) $(KDIR)/zImage $(BIN_DIR)/$(IMG_PREFIX)-zImage
|
|
echo -ne '\x00\x00\x00\x00' >> $(BIN_DIR)/$(IMG_PREFIX)-zImage
|
|
$(call Image/BuildKernel/MkuImage, \
|
|
none, 0x8000, 0x8000, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-zImage, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-uImage \
|
|
)
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
|
|
$(CP) $(KDIR)/zImage-initramfs $(BIN_DIR)/$(IMG_PREFIX)-zImage-initramfs
|
|
echo -ne '\x00\x00\x00\x00' >> $(BIN_DIR)/$(IMG_PREFIX)-zImage-initramfs
|
|
$(call Image/BuildKernel/MkuImage, \
|
|
none, 0x8000, 0x8000, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-zImage-initramfs, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-uImage-initramfs \
|
|
)
|
|
endif
|
|
|
|
ifneq ($(1),)
|
|
$(CP) $(LINUX_DIR)/arch/arm/boot/dts/kirkwood-$(1).dtb $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb
|
|
|
|
$(CP) $(KDIR)/zImage $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-zImage
|
|
cat $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb >> $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-zImage
|
|
$(call Image/BuildKernel/MkuImage, \
|
|
none, 0x8000, 0x8000, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-zImage, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-uImage \
|
|
)
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
|
|
$(CP) $(KDIR)/zImage-initramfs $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-zImage-initramfs
|
|
cat $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb >> $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-zImage-initramfs
|
|
$(call Image/BuildKernel/MkuImage, \
|
|
none, 0x8000, 0x8000, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-zImage-initramfs, \
|
|
$(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-uImage-initramfs \
|
|
)
|
|
endif
|
|
endif
|
|
endef
|
|
|
|
define Image/InstallKernel/Template
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),)
|
|
$(INSTALL_DIR) $(TARGET_DIR)/boot
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),)
|
|
$(CP) $(BIN_DIR)/$(IMG_PREFIX)-uImage $(TARGET_DIR)/boot/
|
|
ln -sf $(IMG_PREFIX)-uImage $(TARGET_DIR)/boot/uImage
|
|
endif
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE),)
|
|
$(CP) $(BIN_DIR)/$(IMG_PREFIX)-zImage $(TARGET_DIR)/boot/
|
|
ln -sf $(IMG_PREFIX)-zImage $(TARGET_DIR)/boot/zImage
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),)
|
|
$(INSTALL_DIR) $(TARGET_DIR)/boot
|
|
ifneq ($(1),)
|
|
$(CP) $(BIN_DIR)/$(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/
|
|
ln -sf $(IMG_PREFIX)-$(1).dtb $(TARGET_DIR)/boot/$(1).dtb
|
|
endif
|
|
endif
|
|
endef
|
|
|
|
define Image/Build/jffs2-nand-2048-128k
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-$(1).img \
|
|
bs=2048 conv=sync
|
|
endef
|
|
|
|
define Image/Build/squashfs
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
|
( \
|
|
dd if=$(KDIR)/zImage bs=4096k conv=sync; \
|
|
dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
|
|
) > $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-$(1).img
|
|
endef
|
|
|
|
define Image/mkfs/targz
|
|
|
|
$(TAR) -czpf $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.tar.gz --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
|
endef
|
|
|
|
define Image/Build/ubifs
|
|
|
|
ifneq ($($(PROFILE)_UBIFS_OPTS),)
|
|
$(CP) $(KDIR)/root.ubifs $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.ubifs
|
|
endif
|
|
endef
|
|
|
|
define Image/Build/ubi
|
|
|
|
ifneq ($($(PROFILE)_UBI_OPTS),)
|
|
$(CP) $(KDIR)/root.ubi $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-rootfs.ubi
|
|
endif
|
|
endef
|
|
|
|
Image/BuildKernel/Template/Generic=$(call Image/BuildKernel/Template)
|
|
Image/InstallKernel/Template/Generic=$(call Image/InstallKernel/Template)
|
|
|
|
Image/BuildKernel/Template/DOCKSTAR=$(call Image/BuildKernel/Template,dockstar)
|
|
Image/InstallKernel/Template/DOCKSTAR=$(call Image/InstallKernel/Template,dockstar)
|
|
|
|
Image/BuildKernel/Template/IB62X0=$(call Image/BuildKernel/Template,ib62x0)
|
|
Image/InstallKernel/Template/IB62X0=$(call Image/InstallKernel/Template,ib62x0)
|
|
|
|
Image/BuildKernel/Template/ICONNECT=$(call Image/BuildKernel/Template,iconnect)
|
|
Image/InstallKernel/Template/ICONNECT=$(call Image/InstallKernel/Template,iconnect)
|
|
|
|
Image/BuildKernel/Template/POGOE02=$(call Image/BuildKernel/Template,pogo_e02)
|
|
Image/InstallKernel/Template/POGOE02=$(call Image/InstallKernel/Template,pogo_e02)
|
|
|
|
define Image/BuildKernel
|
|
$(call Image/BuildKernel/Template/$(PROFILE))
|
|
endef
|
|
|
|
define Image/InstallKernel
|
|
$(call Image/InstallKernel/Template/$(PROFILE))
|
|
endef
|
|
|
|
define Image/Build
|
|
$(if $(Image/Build/$(1)), \
|
|
$(call Image/Build/$(1),$(1)), \
|
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(call sanitize_profile_name)-$(1).img \
|
|
)
|
|
endef
|
|
|
|
$(eval $(call BuildImage))
|