mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-09-17 17:09:21 +00:00
Modernize the target slightly to use kernel+dtb FIT images in all subtargets. LZMA compression will be used for the cortexa53 devices, and we'll stay conservative and use gzip for the cortexa7/a8 devices due to performance differences. Tested-on: - Linksprite pcDuino v2 (cortexa8 / A10) - Olinuxino Micro (cortexa7 / A20) - Banana Pi M2 Berry (cortexa7 / V40) - Banana Pi P2 Zero (cortexa7 / H2+) - Xunlong Orange Pi 2 (cortexa7/ H3) - OrangePi PC Zero 2 (cortexa53 / H616) Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2013-2016 OpenWrt.org
|
|
# Copyright (C) 2016 Yousong Zhou
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
FAT32_BLOCK_SIZE=1024
|
|
FAT32_BLOCKS=$(shell echo $$(($(CONFIG_SUNXI_SD_BOOT_PARTSIZE)*1024*1024/$(FAT32_BLOCK_SIZE))))
|
|
|
|
DEVICE_VARS := SUNXI_DTS SUNXI_DTS_DIR
|
|
|
|
define Build/sunxi-sdcard
|
|
rm -f $@.boot
|
|
mkfs.fat $@.boot -C $(FAT32_BLOCKS)
|
|
|
|
mcopy -i $@.boot $(STAGING_DIR_IMAGE)/$(DEVICE_NAME)-boot.scr ::boot.scr
|
|
mcopy -i $@.boot $(IMAGE_KERNEL) ::uImage
|
|
./gen_sunxi_sdcard_img.sh $@ \
|
|
$@.boot \
|
|
$(IMAGE_ROOTFS) \
|
|
$(CONFIG_SUNXI_SD_BOOT_PARTSIZE) \
|
|
$(CONFIG_TARGET_ROOTFS_PARTSIZE) \
|
|
$(STAGING_DIR_IMAGE)/$(DEVICE_NAME)-u-boot-with-spl.bin
|
|
rm -f $@.boot
|
|
endef
|
|
|
|
# why \x00\x00\x00\x00 for zImage-initramfs
|
|
define Device/Default
|
|
PROFILES := Default
|
|
KERNEL_NAME := zImage
|
|
KERNEL := kernel-bin | uImage none
|
|
IMAGES := sdcard.img.gz
|
|
IMAGE/sdcard.img.gz := sunxi-sdcard | append-metadata | gzip
|
|
SUNXI_DTS_DIR := allwinner/
|
|
SUNXI_DTS = $$(SUNXI_DTS_DIR)$$(SOC)-$(lastword $(subst _, ,$(1)))
|
|
endef
|
|
|
|
define Device/FitImageLzma
|
|
KERNEL = kernel-bin | lzma | fit lzma $$(DTS_DIR)/$$(SUNXI_DTS).dtb
|
|
endef
|
|
|
|
define Device/FitImageGzip
|
|
KERNEL = kernel-bin | gzip | fit gzip $$(DTS_DIR)/$$(SUNXI_DTS).dtb
|
|
endef
|
|
|
|
include $(SUBTARGET).mk
|
|
|
|
$(eval $(call BuildImage))
|