mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
104 lines
3.1 KiB
Makefile
104 lines
3.1 KiB
Makefile
#
|
|
# Copyright (C) 2012-2015 OpenWrt.org
|
|
# Copyright (C) 2016-2017 LEDE project
|
|
#
|
|
# 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
|
|
|
|
# for arm
|
|
KERNEL_LOADADDR := 0x80008000
|
|
|
|
# for arm64
|
|
ifeq ($(SUBTARGET),mt7622)
|
|
KERNEL_LOADADDR = 0x41080000
|
|
endif
|
|
|
|
ifndef $(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
|
CONFIG_TARGET_ROOTFS_PARTSIZE := 512
|
|
endif
|
|
|
|
ifndef $(CONFIG_TARGET_KERNEL_PARTSIZE)
|
|
CONFIG_TARGET_KERNEL_PARTSIZE := 64
|
|
endif
|
|
|
|
FAT32_BLOCK_SIZE=1024
|
|
FAT32_BLOCKS=$(shell echo $$(($(CONFIG_TARGET_KERNEL_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
|
|
|
|
define Build/mediatek-sdcard
|
|
rm -f $@.boot
|
|
mkfs.fat $@.boot -C $(FAT32_BLOCKS)
|
|
mcopy -i $@.boot $(STAGING_DIR_IMAGE)/$(DEVICE_NAME)-uEnv.txt ::uEnv.txt
|
|
mcopy -i $@.boot $(IMAGE_KERNEL) ::uImage
|
|
./gen_mediatek_sdcard_img.sh $@ \
|
|
$(STAGING_DIR_IMAGE)/bpi-r2-preloader.bin \
|
|
$(STAGING_DIR_IMAGE)/$(DEVICE_NAME)-uboot-mediatek.bin \
|
|
$@.boot \
|
|
$(IMAGE_ROOTFS) \
|
|
$(CONFIG_TARGET_KERNEL_PARTSIZE) \
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE)
|
|
rm -f $@.boot
|
|
endef
|
|
|
|
define Build/sysupgrade-emmc
|
|
rm -f $@.recovery
|
|
mkfs.fat -C $@.recovery 3070
|
|
|
|
dd bs="512" of="$@" if="$(IMAGE_KERNEL)"
|
|
dd bs="512" of="$@" if="$@.recovery" seek="67072"
|
|
dd bs="512" of="$@" if="$(IMAGE_ROOTFS)" seek="87552"
|
|
dd if=/dev/zero of="$@" bs=128k count=1 oflag=append conv=notrunc
|
|
endef
|
|
|
|
define Build/sysupgrade-bpi-r2-sd
|
|
dd bs="1024" if="$(STAGING_DIR_IMAGE)/mtk-bpi-r2-preloader-sd.bin" of="$@" seek="0"
|
|
dd bs="1024" if="$(STAGING_DIR_IMAGE)/mtk-bpi-r2-uboot.bin" of="$@" seek="320"
|
|
dd bs="1024" if="$(IMAGE_KERNEL)" of="$@" seek="2048"
|
|
dd bs="1024" if="$(IMAGE_ROOTFS)" of="$@" seek="67584"
|
|
endef
|
|
define Build/sysupgrade-bpi-r2-emmc
|
|
dd bs="1024" if="$(STAGING_DIR_IMAGE)/mtk-bpi-r2-preloader-emmc.bin" of="$@" seek="0"
|
|
dd bs="1024" if="$(STAGING_DIR_IMAGE)/mtk-bpi-r2-uboot.bin" of="$@" seek="320"
|
|
dd bs="1024" if="$(IMAGE_KERNEL)" of="$@" seek="2048"
|
|
dd bs="1024" if="$(IMAGE_ROOTFS)" of="$@" seek="67584"
|
|
endef
|
|
|
|
# default all platform image(fit) build
|
|
define Device/Default
|
|
PROFILES = Default $$(DEVICE_NAME)
|
|
KERNEL_NAME := zImage
|
|
# FILESYSTEMS := squashfs
|
|
DEVICE_DTS_DIR := $(DTS_DIR)
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
|
|
ifeq ($(SUBTARGET),mt7623)
|
|
DEVICE_VARS := MEDIATEK_UBOOT
|
|
KERNEL_NAME := zImage
|
|
KERNEL := kernel-bin | append-dtb | uImage none
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | uImage none
|
|
FILESYSTEMS := ext4
|
|
endif
|
|
ifeq ($(SUBTARGET),mt7622)
|
|
FILESYSTEMS := squashfs
|
|
KERNEL_NAME := Image
|
|
KERNEL = kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb
|
|
KERNEL_INITRAMFS = kernel-bin | lzma | fit lzma $$(KDIR)/image-$$(firstword $$(DEVICE_DTS)).dtb
|
|
endif
|
|
endef
|
|
|
|
ifeq ($(SUBTARGET),mt7622)
|
|
include mt7622.mk
|
|
endif
|
|
|
|
ifeq ($(SUBTARGET),mt7623)
|
|
include mt7623.mk
|
|
endif
|
|
|
|
define Image/Build
|
|
$(call Image/Build/$(1),$(1))
|
|
endef
|
|
|
|
$(eval $(call BuildImage))
|
|
|