2013-01-08 22:20:16 +00:00
|
|
|
#
|
2016-10-13 10:52:20 +00:00
|
|
|
# Copyright (C) 2012-2016 OpenWrt.org
|
|
|
|
# Copyright (C) 2016 LEDE-project.org
|
2013-01-08 22:20:16 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2015-08-05 13:55:52 +00:00
|
|
|
|
|
|
|
JFFS2_BLOCKSIZE = 128k
|
|
|
|
|
2013-01-08 22:20:16 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
2016-07-20 08:04:03 +00:00
|
|
|
KERNEL_LOADADDR := 0x00008000
|
2015-02-05 11:22:43 +00:00
|
|
|
|
2018-01-24 14:32:58 +00:00
|
|
|
SIGNATURE:=$(shell printf "%.8s" $(SOURCE_DATE_EPOCH))
|
|
|
|
|
2016-08-11 15:20:54 +00:00
|
|
|
define Build/dtb
|
2018-01-24 14:32:58 +00:00
|
|
|
$(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$@.dtb)
|
2016-08-11 15:20:54 +00:00
|
|
|
endef
|
|
|
|
|
2016-08-09 13:23:24 +00:00
|
|
|
# SD-Card Images:
|
|
|
|
# these values are optimized for a 4GB labeled sdcard that actually holds 7744512 sectors of 512 byte
|
|
|
|
# MBR: 2048 sectors
|
|
|
|
# Partition 1: 32768 sectors
|
|
|
|
# Partition 2: 98304 sectors (configurable)
|
|
|
|
|
2018-02-14 16:34:38 +00:00
|
|
|
define Build/boot-scr
|
|
|
|
rm -f $@-boot.scr
|
|
|
|
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d $(DEVICE_NAME).bootscript $@-boot.scr
|
2017-04-06 18:13:31 +00:00
|
|
|
endef
|
|
|
|
|
2016-08-09 13:23:24 +00:00
|
|
|
define Build/boot-img
|
|
|
|
rm -f $@.boot
|
|
|
|
mkfs.fat -C $@.boot 16384
|
2017-05-22 15:04:19 +00:00
|
|
|
$(foreach dts,$(DEVICE_DTS), mcopy -i $@.boot $(DTS_DIR)/$(dts).dtb ::$(dts).dtb;)
|
2016-08-09 13:23:24 +00:00
|
|
|
mcopy -i $@.boot $(IMAGE_KERNEL) ::zImage
|
2018-02-14 16:34:38 +00:00
|
|
|
-mcopy -i $@.boot $@-boot.scr ::boot.scr
|
2016-08-09 13:23:24 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/sdcard-img
|
2018-02-14 16:28:09 +00:00
|
|
|
if [ -n "$(UBOOT)" ]; then UBOOT="$(STAGING_DIR_IMAGE)/$(UBOOT)"; fi; \
|
2016-08-09 13:23:24 +00:00
|
|
|
ROOTFS_SIZE=$$(( $(CONFIG_TARGET_ROOTFS_PARTSIZE) * 1024 * 2 )); \
|
2018-01-24 14:32:58 +00:00
|
|
|
SIGNATURE="$(SIGNATURE)" \
|
2016-09-08 12:19:34 +00:00
|
|
|
./gen_mvebu_sdcard_img.sh $@ \
|
2018-02-14 16:28:09 +00:00
|
|
|
$$UBOOT \
|
2016-08-09 13:23:24 +00:00
|
|
|
c 32768 $@.boot \
|
2016-09-08 12:19:34 +00:00
|
|
|
83 $$ROOTFS_SIZE $(IMAGE_ROOTFS)
|
2016-08-09 13:23:24 +00:00
|
|
|
endef
|
2016-08-11 15:20:54 +00:00
|
|
|
|
2017-06-02 16:31:06 +00:00
|
|
|
define Build/omnia-medkit-initramfs
|
|
|
|
$(TAR) -c -T /dev/null -f $@
|
|
|
|
rm -rf $(dir $(IMAGE_KERNEL))boot
|
|
|
|
mkdir -p $(dir $(IMAGE_KERNEL))boot/boot/
|
|
|
|
cp $(KDIR)/zImage-initramfs $(dir $(IMAGE_KERNEL))boot/boot/zImage
|
|
|
|
cp $(DTS_DIR)/$(DEVICE_DTS).dtb $(dir $(IMAGE_KERNEL))boot/boot/dtb
|
|
|
|
$(TAR) -rp --numeric-owner --owner=0 --group=0 --sort=name \
|
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
|
|
|
--file=$@ -C $(dir $(IMAGE_KERNEL))boot/ .
|
|
|
|
endef
|
|
|
|
|
2016-07-20 08:04:03 +00:00
|
|
|
define Device/Default
|
2016-07-26 06:36:45 +00:00
|
|
|
PROFILES := Default
|
2016-07-20 08:04:03 +00:00
|
|
|
DEVICE_DTS := $(1)
|
|
|
|
BOARD_NAME = $$(DEVICE_DTS)
|
|
|
|
KERNEL_NAME := zImage
|
|
|
|
KERNEL := kernel-bin | append-dtb | uImage none
|
2016-11-21 10:59:37 +00:00
|
|
|
SUPPORTED_DEVICES = $$(DEVICE_DTS)
|
2014-06-27 13:00:25 +00:00
|
|
|
endef
|
2016-07-20 08:04:03 +00:00
|
|
|
|
|
|
|
define Device/UBI
|
|
|
|
IMAGES := sysupgrade.bin
|
2016-11-21 10:59:37 +00:00
|
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
2016-07-20 08:04:03 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/UBI-factory
|
|
|
|
$(Device/UBI)
|
2016-09-12 16:20:50 +00:00
|
|
|
UBINIZE_OPTS := -E 5
|
2016-07-20 08:04:03 +00:00
|
|
|
IMAGES += factory.img
|
2016-09-11 17:05:20 +00:00
|
|
|
IMAGE/factory.img := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | pad-to $$$$(PAGESIZE)
|
2016-07-20 08:04:03 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/NAND-128K
|
|
|
|
$(Device/UBI)
|
2016-09-04 06:56:05 +00:00
|
|
|
BLOCKSIZE := 128k
|
2016-07-20 08:04:03 +00:00
|
|
|
PAGESIZE := 2048
|
|
|
|
SUBPAGESIZE := 512
|
|
|
|
VID_HDR_OFFSET := 2048
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/NAND-256K
|
|
|
|
$(Device/UBI)
|
2016-09-04 06:56:05 +00:00
|
|
|
BLOCKSIZE := 256k
|
2016-07-20 08:04:03 +00:00
|
|
|
PAGESIZE := 4096
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/NAND-512K
|
|
|
|
$(Device/UBI)
|
2016-09-04 06:56:05 +00:00
|
|
|
BLOCKSIZE := 512k
|
2016-07-20 08:04:03 +00:00
|
|
|
PAGESIZE := 4096
|
|
|
|
endef
|
|
|
|
|
2018-03-07 21:10:01 +00:00
|
|
|
include cortex-a9.mk
|
2017-06-02 16:31:06 +00:00
|
|
|
|
2013-01-08 22:20:16 +00:00
|
|
|
$(eval $(call BuildImage))
|