2020-09-22 02:48:37 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2008-01-29 10:51:52 +00:00
|
|
|
#
|
2020-09-22 02:48:37 +00:00
|
|
|
# Copyright (C) 2006-2020 OpenWrt.org
|
2006-11-12 01:18:54 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
override TARGET_BUILD=
|
2006-11-18 21:12:18 +00:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
2006-11-12 01:18:54 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2015-01-08 11:02:00 +00:00
|
|
|
include $(INCLUDE_DIR)/version.mk
|
2016-05-22 20:41:49 +00:00
|
|
|
include $(INCLUDE_DIR)/image-commands.mk
|
2016-07-22 12:27:52 +00:00
|
|
|
|
|
|
|
ifndef IB
|
|
|
|
ifdef CONFIG_TARGET_PER_DEVICE_ROOTFS
|
|
|
|
TARGET_PER_DEVICE_ROOTFS := 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-03-09 07:18:54 +00:00
|
|
|
include $(INCLUDE_DIR)/feeds.mk
|
2018-03-06 13:42:37 +00:00
|
|
|
include $(INCLUDE_DIR)/rootfs.mk
|
2016-07-22 12:27:52 +00:00
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
override MAKE:=$(_SINGLE)$(SUBMAKE)
|
|
|
|
override NO_TRACE_MAKE:=$(_SINGLE)$(NO_TRACE_MAKE)
|
|
|
|
|
2016-07-22 10:43:54 +00:00
|
|
|
target_params = $(subst +,$(space),$*)
|
2016-07-19 11:36:02 +00:00
|
|
|
param_get = $(patsubst $(1)=%,%,$(filter $(1)=%,$(2)))
|
2016-07-30 11:47:36 +00:00
|
|
|
param_get_default = $(firstword $(call param_get,$(1),$(2)) $(3))
|
2016-07-19 11:36:02 +00:00
|
|
|
param_mangle = $(subst $(space),_,$(strip $(1)))
|
|
|
|
param_unmangle = $(subst _,$(space),$(1))
|
|
|
|
|
2021-05-09 20:28:15 +00:00
|
|
|
mkfs_packages_id = $(shell echo $(sort $(1)) | $(MKHASH) md5 | cut -b1-8)
|
2016-07-22 12:27:52 +00:00
|
|
|
mkfs_target_dir = $(if $(call param_get,pkg,$(1)),$(KDIR)/target-dir-$(call param_get,pkg,$(1)),$(TARGET_DIR))
|
2016-07-22 08:53:12 +00:00
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
KDIR=$(KERNEL_BUILD_DIR)
|
2015-08-14 10:20:53 +00:00
|
|
|
KDIR_TMP=$(KDIR)/tmp
|
2021-02-19 01:13:26 +00:00
|
|
|
DTS_DIR:=$(LINUX_DIR)/arch/$(LINUX_KARCH)/boot/dts
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2016-12-05 15:44:13 +00:00
|
|
|
IMG_PREFIX_EXTRA:=$(if $(EXTRA_IMAGE_NAME),$(call sanitize,$(EXTRA_IMAGE_NAME))-)
|
|
|
|
IMG_PREFIX_VERNUM:=$(if $(CONFIG_VERSION_FILENAMES),$(call sanitize,$(VERSION_NUMBER))-)
|
|
|
|
IMG_PREFIX_VERCODE:=$(if $(CONFIG_VERSION_CODE_FILENAMES),$(call sanitize,$(VERSION_CODE))-)
|
2016-01-03 14:44:48 +00:00
|
|
|
|
2016-12-05 15:44:13 +00:00
|
|
|
IMG_PREFIX:=$(VERSION_DIST_SANITIZED)-$(IMG_PREFIX_VERNUM)$(IMG_PREFIX_VERCODE)$(IMG_PREFIX_EXTRA)$(BOARD)$(if $(SUBTARGET),-$(SUBTARGET))
|
2019-03-28 14:59:51 +00:00
|
|
|
IMG_ROOTFS:=$(IMG_PREFIX)-rootfs
|
|
|
|
IMG_COMBINED:=$(IMG_PREFIX)-combined
|
2021-05-09 20:28:15 +00:00
|
|
|
IMG_PART_SIGNATURE:=$(shell echo $(SOURCE_DATE_EPOCH)$(LINUX_VERMAGIC) | $(MKHASH) md5 | cut -b1-8)
|
|
|
|
IMG_PART_DISKGUID:=$(shell echo $(SOURCE_DATE_EPOCH)$(LINUX_VERMAGIC) | $(MKHASH) md5 | sed -E 's/(.{8})(.{4})(.{4})(.{4})(.{10})../\1-\2-\3-\4-\500/')
|
2010-04-12 23:15:56 +00:00
|
|
|
|
2013-08-27 12:02:58 +00:00
|
|
|
MKFS_DEVTABLE_OPT := -D $(INCLUDE_DIR)/device_table.txt
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifneq ($(CONFIG_BIG_ENDIAN),)
|
2013-09-25 20:03:20 +00:00
|
|
|
JFFS2OPTS := --big-endian --squash-uids -v
|
2006-06-21 02:16:37 +00:00
|
|
|
else
|
2013-09-25 20:03:20 +00:00
|
|
|
JFFS2OPTS := --little-endian --squash-uids -v
|
2006-06-21 02:16:37 +00:00
|
|
|
endif
|
|
|
|
|
2010-04-13 21:36:58 +00:00
|
|
|
ifeq ($(CONFIG_JFFS2_RTIME),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -X rtime
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
2013-08-27 12:02:58 +00:00
|
|
|
ifeq ($(CONFIG_JFFS2_ZLIB),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -X zlib
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_JFFS2_LZMA),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -X lzma --compression-mode=size
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_JFFS2_RTIME),y)
|
2013-10-12 21:44:48 +00:00
|
|
|
JFFS2OPTS += -x rtime
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_JFFS2_ZLIB),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -x zlib
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
|
|
|
ifneq ($(CONFIG_JFFS2_LZMA),y)
|
2010-04-29 00:44:26 +00:00
|
|
|
JFFS2OPTS += -x lzma
|
2010-04-13 21:36:58 +00:00
|
|
|
endif
|
2010-04-13 14:07:22 +00:00
|
|
|
|
2013-08-27 12:02:58 +00:00
|
|
|
JFFS2OPTS += $(MKFS_DEVTABLE_OPT)
|
|
|
|
|
2014-06-02 17:04:34 +00:00
|
|
|
SQUASHFS_BLOCKSIZE := $(CONFIG_TARGET_SQUASHFS_BLOCK_SIZE)k
|
2011-12-13 15:34:08 +00:00
|
|
|
SQUASHFSOPT := -b $(SQUASHFS_BLOCKSIZE)
|
2013-08-27 12:02:58 +00:00
|
|
|
SQUASHFSOPT += -p '/dev d 755 0 0' -p '/dev/console c 600 0 0 5 1'
|
2021-08-19 00:23:41 +00:00
|
|
|
SQUASHFSOPT += $(if $(CONFIG_SELINUX),-xattrs,-no-xattrs)
|
2011-07-24 09:16:55 +00:00
|
|
|
SQUASHFSCOMP := gzip
|
2011-04-03 01:02:00 +00:00
|
|
|
LZMA_XZ_OPTIONS := -Xpreset 9 -Xe -Xlc 0 -Xlp 2 -Xpb 2
|
|
|
|
ifeq ($(CONFIG_SQUASHFS_XZ),y)
|
2013-01-11 16:44:26 +00:00
|
|
|
ifneq ($(filter arm x86 powerpc sparc,$(LINUX_KARCH)),)
|
|
|
|
BCJ_FILTER:=-Xbcj $(LINUX_KARCH)
|
|
|
|
endif
|
|
|
|
SQUASHFSCOMP := xz $(LZMA_XZ_OPTIONS) $(BCJ_FILTER)
|
2011-04-03 01:02:00 +00:00
|
|
|
endif
|
|
|
|
|
2007-07-16 22:06:45 +00:00
|
|
|
JFFS2_BLOCKSIZE ?= 64k 128k
|
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
fs-types-$(CONFIG_TARGET_ROOTFS_SQUASHFS) += squashfs
|
|
|
|
fs-types-$(CONFIG_TARGET_ROOTFS_JFFS2) += $(addprefix jffs2-,$(JFFS2_BLOCKSIZE))
|
|
|
|
fs-types-$(CONFIG_TARGET_ROOTFS_JFFS2_NAND) += $(addprefix jffs2-nand-,$(NAND_BLOCKSIZE))
|
|
|
|
fs-types-$(CONFIG_TARGET_ROOTFS_EXT4FS) += ext4
|
2016-05-19 16:05:20 +00:00
|
|
|
fs-types-$(CONFIG_TARGET_ROOTFS_UBIFS) += ubifs
|
2014-10-12 15:00:55 +00:00
|
|
|
fs-subtypes-$(CONFIG_TARGET_ROOTFS_JFFS2) += $(addsuffix -raw,$(addprefix jffs2-,$(JFFS2_BLOCKSIZE)))
|
2014-10-12 15:01:01 +00:00
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
TARGET_FILESYSTEMS := $(fs-types-y)
|
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
FS_64K := $(filter-out jffs2-%,$(TARGET_FILESYSTEMS)) jffs2-64k
|
|
|
|
FS_128K := $(filter-out jffs2-%,$(TARGET_FILESYSTEMS)) jffs2-128k
|
|
|
|
FS_256K := $(filter-out jffs2-%,$(TARGET_FILESYSTEMS)) jffs2-256k
|
|
|
|
|
2007-03-02 01:23:36 +00:00
|
|
|
define add_jffs2_mark
|
|
|
|
echo -ne '\xde\xad\xc0\xde' >> $(1)
|
|
|
|
endef
|
|
|
|
|
2019-08-14 18:51:36 +00:00
|
|
|
PROFILE_SANITIZED := $(call tolower,$(subst DEVICE_,,$(subst $(space),-,$(PROFILE))))
|
2015-10-31 09:27:04 +00:00
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
define split_args
|
|
|
|
$(foreach data, \
|
|
|
|
$(subst |,$(space),\
|
|
|
|
$(subst $(space),^,$(1))), \
|
|
|
|
$(call $(2),$(strip $(subst ^,$(space),$(data)))))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define build_cmd
|
|
|
|
$(if $(Build/$(word 1,$(1))),,$(error Missing Build/$(word 1,$(1))))
|
|
|
|
$(call Build/$(word 1,$(1)),$(wordlist 2,$(words $(1)),$(1)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define concat_cmd
|
|
|
|
$(call split_args,$(1),build_cmd)
|
|
|
|
endef
|
|
|
|
|
2014-04-03 14:26:54 +00:00
|
|
|
# pad to 4k, 8k, 16k, 64k, 128k, 256k and add jffs2 end-of-filesystem mark
|
2007-03-02 01:23:36 +00:00
|
|
|
define prepare_generic_squashfs
|
2014-04-03 14:26:54 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/padjffs2 $(1) 4 8 16 64 128 256
|
2007-03-02 01:23:36 +00:00
|
|
|
endef
|
|
|
|
|
2014-07-31 23:40:37 +00:00
|
|
|
define Image/BuildKernel/Initramfs
|
2013-06-27 19:58:35 +00:00
|
|
|
$(call Image/Build/Initramfs)
|
2014-07-31 23:40:37 +00:00
|
|
|
endef
|
2013-10-13 03:35:14 +00:00
|
|
|
|
2013-10-23 22:16:09 +00:00
|
|
|
define Image/BuildKernel/MkuImage
|
|
|
|
mkimage -A $(ARCH) -O linux -T kernel -C $(1) -a $(2) -e $(3) \
|
2017-11-08 17:40:37 +00:00
|
|
|
-n '$(call toupper,$(ARCH)) $(VERSION_DIST) Linux-$(LINUX_VERSION)' -d $(4) $(5)
|
2013-10-13 03:35:14 +00:00
|
|
|
endef
|
2010-04-29 00:44:26 +00:00
|
|
|
|
2013-10-16 10:29:50 +00:00
|
|
|
define Image/BuildKernel/MkFIT
|
|
|
|
$(TOPDIR)/scripts/mkits.sh \
|
2015-05-10 11:46:50 +00:00
|
|
|
-D $(1) -o $(KDIR)/fit-$(1).its -k $(2) $(if $(3),-d $(3)) -C $(4) -a $(5) -e $(6) \
|
2021-03-04 11:37:22 +00:00
|
|
|
-c $(if $(DEVICE_DTS_CONFIG),$(DEVICE_DTS_CONFIG),"config-1") \
|
2016-09-26 14:06:10 +00:00
|
|
|
-A $(LINUX_KARCH) -v $(LINUX_VERSION)
|
2013-10-16 10:29:50 +00:00
|
|
|
PATH=$(LINUX_DIR)/scripts/dtc:$(PATH) mkimage -f $(KDIR)/fit-$(1).its $(KDIR)/fit-$(1)$(7).itb
|
|
|
|
endef
|
|
|
|
|
2017-01-13 15:19:00 +00:00
|
|
|
ifdef CONFIG_TARGET_IMAGES_GZIP
|
|
|
|
define Image/Gzip
|
|
|
|
rm -f $(1).gz
|
|
|
|
gzip -9n $(1)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
build: dtc: Disable noisy warnings by default
While helping with review and build testing of a few 4.19 pull requests,
I've noticed, that dtc compiler in OpenWrt uses different options then
upstream kernel, which is leading to a very noisy output[1]. It wouldn't
be that bad per se, but a lot of such warnings aren't easily fixable so
I think, that we should follow what upstream does and simply ignore^W
silence those noisy warnings.
So this patch tries to syncs dtc compiler flags with upstream kernel
till version 4.19.13, disabling those warnings as they were added in
upstream kernel:
v4.6-rc1-2-gbc55398 dtc: turn off dtc unit address warnings by default
The newly added dtc warning to check DT unit-address without reg
property and vice-versa generates lots of warnings. Turn off the check
unless building with W=1 or W=2.
v4.11-rc2-11-g8654cb8 dtc: update warning settings for new bus and node/property
dtc gained new warnings checking PCI and simple buses, unit address
formatting, and stricter node and property name checking. Disable the
new dtc warnings by default as there are 1000s. As before, warnings are
enabled with W=1 or W=2. The strict node and property name checks are a
bit subjective, so they are only enabled for W=2.
v4.16-rc3-9-g4fd98e3 scripts: turn off some new dtc warnings by default
The latest dtc update adds some new noisy warnings, so turn them off by
default. Disable 'avoid_unnecessary_addr_size' and 'alias_paths'. They
can be re-enabled by building with 'W=1'.
v4.17-rc1-27-g74656b6 kbuild: disable new dtc graph and unit-address warnings
dtc gained some new warnings for OF graphs and unique unit addresses,
but they are currently much too noisy. So turn off
'graph_child_address', 'graph_port', and 'unique_unit_address' warnings
by default. They can be enabled by building dtbs with W=1.
Build tested on imx6 and ath79 with 4.14 and 4.19.
1. https://github.com/openwrt/openwrt/pull/1694#issuecomment-450864335
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2019-01-07 00:08:05 +00:00
|
|
|
|
|
|
|
# Disable noisy checks by default as in upstream
|
2020-01-18 14:32:01 +00:00
|
|
|
DTC_FLAGS += \
|
|
|
|
-Wno-unit_address_vs_reg \
|
|
|
|
-Wno-simple_bus_reg \
|
|
|
|
-Wno-unit_address_format \
|
|
|
|
-Wno-pci_bridge \
|
|
|
|
-Wno-pci_device_bus_num \
|
2020-10-01 14:47:34 +00:00
|
|
|
-Wno-pci_device_reg \
|
|
|
|
-Wno-avoid_unnecessary_addr_size \
|
|
|
|
-Wno-alias_paths \
|
|
|
|
-Wno-graph_child_address \
|
|
|
|
-Wno-graph_port \
|
|
|
|
-Wno-unique_unit_address
|
build: dtc: Disable noisy warnings by default
While helping with review and build testing of a few 4.19 pull requests,
I've noticed, that dtc compiler in OpenWrt uses different options then
upstream kernel, which is leading to a very noisy output[1]. It wouldn't
be that bad per se, but a lot of such warnings aren't easily fixable so
I think, that we should follow what upstream does and simply ignore^W
silence those noisy warnings.
So this patch tries to syncs dtc compiler flags with upstream kernel
till version 4.19.13, disabling those warnings as they were added in
upstream kernel:
v4.6-rc1-2-gbc55398 dtc: turn off dtc unit address warnings by default
The newly added dtc warning to check DT unit-address without reg
property and vice-versa generates lots of warnings. Turn off the check
unless building with W=1 or W=2.
v4.11-rc2-11-g8654cb8 dtc: update warning settings for new bus and node/property
dtc gained new warnings checking PCI and simple buses, unit address
formatting, and stricter node and property name checking. Disable the
new dtc warnings by default as there are 1000s. As before, warnings are
enabled with W=1 or W=2. The strict node and property name checks are a
bit subjective, so they are only enabled for W=2.
v4.16-rc3-9-g4fd98e3 scripts: turn off some new dtc warnings by default
The latest dtc update adds some new noisy warnings, so turn them off by
default. Disable 'avoid_unnecessary_addr_size' and 'alias_paths'. They
can be re-enabled by building with 'W=1'.
v4.17-rc1-27-g74656b6 kbuild: disable new dtc graph and unit-address warnings
dtc gained some new warnings for OF graphs and unique unit addresses,
but they are currently much too noisy. So turn off
'graph_child_address', 'graph_port', and 'unique_unit_address' warnings
by default. They can be enabled by building dtbs with W=1.
Build tested on imx6 and ath79 with 4.14 and 4.19.
1. https://github.com/openwrt/openwrt/pull/1694#issuecomment-450864335
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2019-01-07 00:08:05 +00:00
|
|
|
|
2019-03-28 14:21:18 +00:00
|
|
|
define Image/pad-to
|
|
|
|
dd if=$(1) of=$(1).new bs=$(2) conv=sync
|
|
|
|
mv $(1).new $(1)
|
|
|
|
endef
|
|
|
|
|
2019-06-26 15:19:28 +00:00
|
|
|
ROOTFS_PARTSIZE=$(shell echo $$(($(CONFIG_TARGET_ROOTFS_PARTSIZE)*1024*1024)))
|
|
|
|
|
2019-03-28 14:21:18 +00:00
|
|
|
define Image/pad-root-squashfs
|
2019-06-26 15:19:28 +00:00
|
|
|
$(call Image/pad-to,$(KDIR)/root.squashfs,$(if $(1),$(1),$(ROOTFS_PARTSIZE)))
|
2019-03-28 14:21:18 +00:00
|
|
|
endef
|
|
|
|
|
2015-07-16 11:12:52 +00:00
|
|
|
# $(1) source dts file
|
|
|
|
# $(2) target dtb file
|
|
|
|
# $(3) extra CPP flags
|
|
|
|
# $(4) extra DTC flags
|
|
|
|
define Image/BuildDTB
|
2015-12-19 11:15:41 +00:00
|
|
|
$(TARGET_CROSS)cpp -nostdinc -x assembler-with-cpp \
|
2015-12-10 12:39:32 +00:00
|
|
|
-I$(DTS_DIR) \
|
|
|
|
-I$(DTS_DIR)/include \
|
2017-10-10 03:33:34 +00:00
|
|
|
-I$(LINUX_DIR)/include/ \
|
2015-07-16 11:12:52 +00:00
|
|
|
-undef -D__DTS__ $(3) \
|
|
|
|
-o $(2).tmp $(1)
|
|
|
|
$(LINUX_DIR)/scripts/dtc/dtc -O dtb \
|
build: dtc: Disable noisy warnings by default
While helping with review and build testing of a few 4.19 pull requests,
I've noticed, that dtc compiler in OpenWrt uses different options then
upstream kernel, which is leading to a very noisy output[1]. It wouldn't
be that bad per se, but a lot of such warnings aren't easily fixable so
I think, that we should follow what upstream does and simply ignore^W
silence those noisy warnings.
So this patch tries to syncs dtc compiler flags with upstream kernel
till version 4.19.13, disabling those warnings as they were added in
upstream kernel:
v4.6-rc1-2-gbc55398 dtc: turn off dtc unit address warnings by default
The newly added dtc warning to check DT unit-address without reg
property and vice-versa generates lots of warnings. Turn off the check
unless building with W=1 or W=2.
v4.11-rc2-11-g8654cb8 dtc: update warning settings for new bus and node/property
dtc gained new warnings checking PCI and simple buses, unit address
formatting, and stricter node and property name checking. Disable the
new dtc warnings by default as there are 1000s. As before, warnings are
enabled with W=1 or W=2. The strict node and property name checks are a
bit subjective, so they are only enabled for W=2.
v4.16-rc3-9-g4fd98e3 scripts: turn off some new dtc warnings by default
The latest dtc update adds some new noisy warnings, so turn them off by
default. Disable 'avoid_unnecessary_addr_size' and 'alias_paths'. They
can be re-enabled by building with 'W=1'.
v4.17-rc1-27-g74656b6 kbuild: disable new dtc graph and unit-address warnings
dtc gained some new warnings for OF graphs and unique unit addresses,
but they are currently much too noisy. So turn off
'graph_child_address', 'graph_port', and 'unique_unit_address' warnings
by default. They can be enabled by building dtbs with W=1.
Build tested on imx6 and ath79 with 4.14 and 4.19.
1. https://github.com/openwrt/openwrt/pull/1694#issuecomment-450864335
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2019-01-07 00:08:05 +00:00
|
|
|
-i$(dir $(1)) $(DTC_FLAGS) $(4) \
|
2021-03-17 17:30:48 +00:00
|
|
|
$(if $(CONFIG_HAS_DT_OVERLAY_SUPPORT),-@) \
|
2015-07-16 11:12:52 +00:00
|
|
|
-o $(2) $(2).tmp
|
|
|
|
$(RM) $(2).tmp
|
|
|
|
endef
|
|
|
|
|
2016-07-21 23:17:35 +00:00
|
|
|
define Image/mkfs/jffs2/sub-raw
|
|
|
|
$(STAGING_DIR_HOST)/bin/mkfs.jffs2 \
|
|
|
|
$(2) \
|
|
|
|
-e $(patsubst %k,%KiB,$(1)) \
|
2016-07-22 08:53:12 +00:00
|
|
|
-o $@ -d $(call mkfs_target_dir,$(3)) \
|
2016-07-21 23:17:35 +00:00
|
|
|
-v 2>&1 1>/dev/null | awk '/^.+$$$$/'
|
2013-06-27 19:58:35 +00:00
|
|
|
endef
|
2013-06-05 20:58:03 +00:00
|
|
|
|
2016-07-21 23:17:35 +00:00
|
|
|
define Image/mkfs/jffs2/sub
|
2016-07-22 08:53:12 +00:00
|
|
|
$(call Image/mkfs/jffs2/sub-raw,$(1),--pad $(2),$(3))
|
2016-07-21 23:17:35 +00:00
|
|
|
$(call add_jffs2_mark,$@)
|
2014-10-12 15:00:55 +00:00
|
|
|
endef
|
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
define Image/mkfs/jffs2/template
|
2016-07-22 08:53:12 +00:00
|
|
|
Image/mkfs/jffs2-$(1) = $$(call Image/mkfs/jffs2/sub,$(1),$(JFFS2OPTS),$$(1))
|
|
|
|
Image/mkfs/jffs2-$(1)-raw = $$(call Image/mkfs/jffs2/sub-raw,$(1),$(JFFS2OPTS),$$(1))
|
2013-06-05 20:58:03 +00:00
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
endef
|
2007-10-18 20:30:18 +00:00
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
define Image/mkfs/jffs2-nand/template
|
|
|
|
Image/mkfs/jffs2-nand-$(1) = \
|
|
|
|
$$(call Image/mkfs/jffs2/sub, \
|
2016-07-21 23:17:35 +00:00
|
|
|
$(word 2,$(subst -, ,$(1))), \
|
2016-07-22 08:53:12 +00:00
|
|
|
$(JFFS2OPTS) --no-cleanmarkers --pagesize=$(word 1,$(subst -, ,$(1))),$$(1))
|
2014-10-12 15:00:49 +00:00
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(foreach S,$(JFFS2_BLOCKSIZE),$(call Image/mkfs/jffs2/template,$(S))))
|
|
|
|
$(eval $(foreach S,$(NAND_BLOCKSIZE),$(call Image/mkfs/jffs2-nand/template,$(S))))
|
|
|
|
|
2020-07-18 13:01:54 +00:00
|
|
|
define Image/mkfs/squashfs-common
|
2016-07-22 08:53:12 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/mksquashfs4 $(call mkfs_target_dir,$(1)) $@ \
|
2019-09-06 12:55:36 +00:00
|
|
|
-nopad -noappend -root-owned \
|
2016-07-21 23:17:35 +00:00
|
|
|
-comp $(SQUASHFSCOMP) $(SQUASHFSOPT) \
|
2018-12-12 15:10:42 +00:00
|
|
|
-processors 1
|
2014-10-12 15:00:49 +00:00
|
|
|
endef
|
2007-10-18 20:30:18 +00:00
|
|
|
|
2020-07-18 13:01:54 +00:00
|
|
|
ifeq ($(CONFIG_TARGET_ROOTFS_SECURITY_LABELS),y)
|
|
|
|
define Image/mkfs/squashfs
|
2020-09-29 00:46:25 +00:00
|
|
|
echo ". $(call mkfs_target_dir,$(1))/etc/selinux/config" > $@.fakeroot-script
|
2020-09-28 08:37:53 +00:00
|
|
|
echo "$(STAGING_DIR_HOST)/bin/setfiles -r" \
|
2020-07-18 13:01:54 +00:00
|
|
|
"$(call mkfs_target_dir,$(1))" \
|
2020-09-29 00:46:25 +00:00
|
|
|
"$(call mkfs_target_dir,$(1))/etc/selinux/\$${SELINUXTYPE}/contexts/files/file_contexts " \
|
|
|
|
"$(call mkfs_target_dir,$(1))" >> $@.fakeroot-script
|
2020-07-18 13:01:54 +00:00
|
|
|
echo "$(Image/mkfs/squashfs-common)" >> $@.fakeroot-script
|
|
|
|
chmod +x $@.fakeroot-script
|
2020-09-01 03:08:47 +00:00
|
|
|
$(FAKEROOT) "$@.fakeroot-script"
|
2020-07-18 13:01:54 +00:00
|
|
|
endef
|
|
|
|
else
|
|
|
|
define Image/mkfs/squashfs
|
|
|
|
$(call Image/mkfs/squashfs-common,$(1))
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2016-07-19 10:35:27 +00:00
|
|
|
define Image/mkfs/ubifs
|
|
|
|
$(STAGING_DIR_HOST)/bin/mkfs.ubifs \
|
2016-07-19 11:36:02 +00:00
|
|
|
$(UBIFS_OPTS) $(call param_unmangle,$(call param_get,fs,$(1))) \
|
2016-07-19 10:35:27 +00:00
|
|
|
$(if $(CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP),--space-fixup) \
|
2017-01-09 15:31:26 +00:00
|
|
|
$(if $(CONFIG_TARGET_UBIFS_COMPRESSION_NONE),--compr=none) \
|
|
|
|
$(if $(CONFIG_TARGET_UBIFS_COMPRESSION_LZO),--compr=lzo) \
|
|
|
|
$(if $(CONFIG_TARGET_UBIFS_COMPRESSION_ZLIB),--compr=zlib) \
|
2016-07-19 10:35:27 +00:00
|
|
|
$(if $(shell echo $(CONFIG_TARGET_UBIFS_JOURNAL_SIZE)),--jrn-size=$(CONFIG_TARGET_UBIFS_JOURNAL_SIZE)) \
|
|
|
|
--squash-uids \
|
2016-07-22 08:53:12 +00:00
|
|
|
-o $@ -d $(call mkfs_target_dir,$(1))
|
2016-07-19 10:35:27 +00:00
|
|
|
endef
|
2006-10-19 03:27:24 +00:00
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
define Image/mkfs/ext4
|
2019-11-03 04:10:12 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/make_ext4fs -L rootfs \
|
2019-06-26 15:19:28 +00:00
|
|
|
-l $(ROOTFS_PARTSIZE) -b $(CONFIG_TARGET_EXT4_BLOCKSIZE) \
|
2016-10-15 23:59:42 +00:00
|
|
|
$(if $(CONFIG_TARGET_EXT4_RESERVED_PCT),-m $(CONFIG_TARGET_EXT4_RESERVED_PCT)) \
|
2015-04-20 13:57:43 +00:00
|
|
|
$(if $(CONFIG_TARGET_EXT4_JOURNAL),,-J) \
|
2016-02-01 13:58:43 +00:00
|
|
|
$(if $(SOURCE_DATE_EPOCH),-T $(SOURCE_DATE_EPOCH)) \
|
2016-07-22 08:53:12 +00:00
|
|
|
$@ $(call mkfs_target_dir,$(1))/
|
2014-10-12 15:00:49 +00:00
|
|
|
endef
|
2006-08-17 07:20:08 +00:00
|
|
|
|
2016-09-01 14:54:03 +00:00
|
|
|
define Image/Manifest
|
2018-03-06 13:42:37 +00:00
|
|
|
$(call opkg,$(TARGET_DIR_ORIG)) list-installed > \
|
2016-09-01 14:54:03 +00:00
|
|
|
$(BIN_DIR)/$(IMG_PREFIX)$(if $(PROFILE_SANITIZED),-$(PROFILE_SANITIZED)).manifest
|
|
|
|
endef
|
2010-04-29 00:44:26 +00:00
|
|
|
|
2019-03-28 22:07:28 +00:00
|
|
|
define Image/gzip-ext4-padded-squashfs
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
$(call Image/pad-root-squashfs)
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_TARGET_IMAGES_GZIP),)
|
|
|
|
define Image/Build/gzip/ext4
|
|
|
|
$(call Image/Build/gzip,ext4)
|
|
|
|
endef
|
|
|
|
define Image/Build/gzip/squashfs
|
|
|
|
$(call Image/Build/gzip,squashfs)
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2016-07-21 17:02:59 +00:00
|
|
|
ifdef CONFIG_TARGET_ROOTFS_TARGZ
|
|
|
|
define Image/Build/targz
|
2019-03-28 16:58:07 +00:00
|
|
|
$(TAR) -cp --numeric-owner --owner=0 --group=0 --mode=a-s --sort=name \
|
2016-07-21 17:02:59 +00:00
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
|
|
|
-C $(TARGET_DIR)/ . | gzip -9n > $(BIN_DIR)/$(IMG_PREFIX)$(if $(PROFILE_SANITIZED),-$(PROFILE_SANITIZED))-rootfs.tar.gz
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CONFIG_TARGET_ROOTFS_CPIOGZ
|
|
|
|
define Image/Build/cpiogz
|
2021-03-03 15:09:04 +00:00
|
|
|
( cd $(TARGET_DIR); find . | $(STAGING_DIR_HOST)/bin/cpio -o -H newc -R 0:0 | gzip -9n >$(BIN_DIR)/$(IMG_ROOTFS).cpio.gz )
|
2016-07-21 17:02:59 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2016-07-22 12:27:52 +00:00
|
|
|
mkfs_packages = $(filter-out @%,$(PACKAGES_$(call param_get,pkg,pkg=$(target_params))))
|
2019-01-17 16:31:09 +00:00
|
|
|
mkfs_packages_add = $(foreach pkg,$(filter-out -%,$(mkfs_packages)),$(pkg)$(call GetABISuffix,$(pkg)))
|
|
|
|
mkfs_packages_remove = $(foreach pkg,$(patsubst -%,%,$(filter -%,$(mkfs_packages))),$(pkg)$(call GetABISuffix,$(pkg)))
|
2016-07-22 12:27:52 +00:00
|
|
|
mkfs_cur_target_dir = $(call mkfs_target_dir,pkg=$(target_params))
|
|
|
|
|
2016-08-01 09:13:11 +00:00
|
|
|
opkg_target = \
|
|
|
|
$(call opkg,$(mkfs_cur_target_dir)) \
|
2016-09-24 01:29:31 +00:00
|
|
|
-f $(mkfs_cur_target_dir).conf
|
2016-08-01 09:13:11 +00:00
|
|
|
|
2016-07-22 12:27:52 +00:00
|
|
|
target-dir-%: FORCE
|
2016-08-01 09:13:11 +00:00
|
|
|
rm -rf $(mkfs_cur_target_dir) $(mkfs_cur_target_dir).opkg
|
2016-09-25 07:30:55 +00:00
|
|
|
$(CP) $(TARGET_DIR_ORIG) $(mkfs_cur_target_dir)
|
2016-09-24 16:36:36 +00:00
|
|
|
-mv $(mkfs_cur_target_dir)/etc/opkg $(mkfs_cur_target_dir).opkg
|
2016-08-01 09:13:11 +00:00
|
|
|
echo 'src default file://$(PACKAGE_DIR_ALL)' > $(mkfs_cur_target_dir).conf
|
2016-09-26 13:25:38 +00:00
|
|
|
$(if $(mkfs_packages_remove), \
|
2016-09-26 13:25:38 +00:00
|
|
|
-$(call opkg,$(mkfs_cur_target_dir)) remove \
|
2016-09-26 13:25:38 +00:00
|
|
|
$(mkfs_packages_remove))
|
2016-08-04 09:12:27 +00:00
|
|
|
$(if $(call opkg_package_files,$(mkfs_packages_add)), \
|
2016-08-01 09:13:11 +00:00
|
|
|
$(opkg_target) update && \
|
|
|
|
$(opkg_target) install \
|
2016-07-22 12:27:52 +00:00
|
|
|
$(call opkg_package_files,$(mkfs_packages_add)))
|
2018-01-10 19:17:48 +00:00
|
|
|
-$(CP) -T $(mkfs_cur_target_dir).opkg/ $(mkfs_cur_target_dir)/etc/opkg/
|
|
|
|
rm -rf $(mkfs_cur_target_dir).opkg $(mkfs_cur_target_dir).conf
|
2018-03-06 20:06:30 +00:00
|
|
|
$(call prepare_rootfs,$(mkfs_cur_target_dir),$(TOPDIR)/files)
|
2016-07-22 12:27:52 +00:00
|
|
|
|
2016-07-19 09:28:34 +00:00
|
|
|
$(KDIR)/root.%: kernel_prepare
|
2016-07-22 10:43:54 +00:00
|
|
|
$(call Image/mkfs/$(word 1,$(target_params)),$(target_params))
|
2015-01-10 15:26:47 +00:00
|
|
|
|
2016-05-23 15:58:51 +00:00
|
|
|
define Device/InitProfile
|
2015-01-10 15:26:47 +00:00
|
|
|
PROFILES := $(PROFILE)
|
2019-06-16 19:34:46 +00:00
|
|
|
DEVICE_TITLE = $$(DEVICE_VENDOR) $$(DEVICE_MODEL)$$(if $$(DEVICE_VARIANT), $$(DEVICE_VARIANT))
|
2019-07-16 11:56:08 +00:00
|
|
|
DEVICE_ALT0_TITLE = $$(DEVICE_ALT0_VENDOR) $$(DEVICE_ALT0_MODEL)$$(if $$(DEVICE_ALT0_VARIANT), $$(DEVICE_ALT0_VARIANT))
|
|
|
|
DEVICE_ALT1_TITLE = $$(DEVICE_ALT1_VENDOR) $$(DEVICE_ALT1_MODEL)$$(if $$(DEVICE_ALT1_VARIANT), $$(DEVICE_ALT1_VARIANT))
|
|
|
|
DEVICE_ALT2_TITLE = $$(DEVICE_ALT2_VENDOR) $$(DEVICE_ALT2_MODEL)$$(if $$(DEVICE_ALT2_VARIANT), $$(DEVICE_ALT2_VARIANT))
|
2019-06-16 19:34:46 +00:00
|
|
|
DEVICE_VENDOR :=
|
|
|
|
DEVICE_MODEL :=
|
|
|
|
DEVICE_VARIANT :=
|
2019-07-16 11:56:08 +00:00
|
|
|
DEVICE_ALT0_VENDOR :=
|
|
|
|
DEVICE_ALT0_MODEL :=
|
|
|
|
DEVICE_ALT0_VARIANT :=
|
|
|
|
DEVICE_ALT1_VENDOR :=
|
|
|
|
DEVICE_ALT1_MODEL :=
|
|
|
|
DEVICE_ALT1_VARIANT :=
|
|
|
|
DEVICE_ALT2_VENDOR :=
|
|
|
|
DEVICE_ALT2_MODEL :=
|
|
|
|
DEVICE_ALT2_VARIANT :=
|
2016-05-09 14:50:46 +00:00
|
|
|
DEVICE_PACKAGES :=
|
|
|
|
DEVICE_DESCRIPTION = Build firmware images for $$(DEVICE_TITLE)
|
2016-05-23 15:58:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/Init
|
|
|
|
DEVICE_NAME := $(1)
|
2015-01-10 15:26:47 +00:00
|
|
|
KERNEL:=
|
|
|
|
KERNEL_INITRAMFS = $$(KERNEL)
|
|
|
|
CMDLINE:=
|
|
|
|
|
2016-07-20 08:09:10 +00:00
|
|
|
IMAGES :=
|
2018-11-23 09:53:37 +00:00
|
|
|
ARTIFACTS :=
|
2021-02-22 14:55:43 +00:00
|
|
|
DEVICE_IMG_PREFIX := $(IMG_PREFIX)-$(1)
|
|
|
|
DEVICE_IMG_NAME = $$(DEVICE_IMG_PREFIX)-$$(1)-$$(2)
|
2020-03-09 12:14:06 +00:00
|
|
|
IMAGE_SIZE :=
|
2021-02-22 14:55:43 +00:00
|
|
|
KERNEL_PREFIX = $$(DEVICE_IMG_PREFIX)
|
2015-01-10 15:26:47 +00:00
|
|
|
KERNEL_SUFFIX := -kernel.bin
|
2016-05-23 12:35:57 +00:00
|
|
|
KERNEL_INITRAMFS_SUFFIX = $$(KERNEL_SUFFIX)
|
2015-01-10 15:26:47 +00:00
|
|
|
KERNEL_IMAGE = $$(KERNEL_PREFIX)$$(KERNEL_SUFFIX)
|
2021-02-22 14:55:43 +00:00
|
|
|
KERNEL_INITRAMFS_PREFIX = $$(DEVICE_IMG_PREFIX)-initramfs
|
2016-05-23 12:35:57 +00:00
|
|
|
KERNEL_INITRAMFS_IMAGE = $$(KERNEL_INITRAMFS_PREFIX)$$(KERNEL_INITRAMFS_SUFFIX)
|
2015-11-07 12:51:24 +00:00
|
|
|
KERNEL_INITRAMFS_NAME = $$(KERNEL_NAME)-initramfs
|
2015-01-10 15:26:47 +00:00
|
|
|
KERNEL_INSTALL :=
|
2015-01-18 00:34:57 +00:00
|
|
|
KERNEL_NAME := vmlinux
|
2016-01-06 18:38:49 +00:00
|
|
|
KERNEL_DEPENDS :=
|
2015-01-10 15:26:47 +00:00
|
|
|
KERNEL_SIZE :=
|
|
|
|
|
2016-07-13 15:19:00 +00:00
|
|
|
UBOOTENV_IN_UBI :=
|
|
|
|
KERNEL_IN_UBI :=
|
|
|
|
BLOCKSIZE :=
|
|
|
|
PAGESIZE :=
|
|
|
|
SUBPAGESIZE :=
|
2016-07-20 06:46:08 +00:00
|
|
|
VID_HDR_OFFSET :=
|
2016-09-12 16:20:50 +00:00
|
|
|
UBINIZE_OPTS :=
|
2016-07-31 16:34:02 +00:00
|
|
|
UBINIZE_PARTS :=
|
2016-07-19 11:36:02 +00:00
|
|
|
MKUBIFS_OPTS :=
|
|
|
|
|
|
|
|
FS_OPTIONS/ubifs = $$(MKUBIFS_OPTS)
|
2016-07-13 15:19:00 +00:00
|
|
|
|
2016-07-14 11:58:23 +00:00
|
|
|
DEVICE_DTS :=
|
2018-03-05 08:51:47 +00:00
|
|
|
DEVICE_DTS_CONFIG :=
|
2016-07-14 11:58:23 +00:00
|
|
|
DEVICE_DTS_DIR :=
|
2021-03-17 17:30:48 +00:00
|
|
|
DEVICE_DTS_OVERLAY :=
|
2020-08-29 20:48:49 +00:00
|
|
|
DEVICE_FDT_NUM :=
|
2019-12-16 12:19:43 +00:00
|
|
|
SOC :=
|
2016-07-14 11:58:23 +00:00
|
|
|
|
2016-07-20 08:09:10 +00:00
|
|
|
BOARD_NAME :=
|
2020-11-04 09:21:15 +00:00
|
|
|
UIMAGE_MAGIC :=
|
2016-08-03 00:30:12 +00:00
|
|
|
UIMAGE_NAME :=
|
2020-07-09 17:14:45 +00:00
|
|
|
DEVICE_COMPAT_VERSION := 1.0
|
|
|
|
DEVICE_COMPAT_MESSAGE :=
|
treewide: provide global default for SUPPORTED_DEVICES
The majority of our targets provide a default value for the variable
SUPPORTED_DEVICES, which is used in images to check against the
compatible on a running device:
SUPPORTED_DEVICES := $(subst _,$(comma),$(1))
At the moment, this is implemented in the Device/Default block of
the individual targets or even subtargets. However, since we
standardized device names and compatible in the recent past, almost
all targets are following the same scheme now:
device/image name: vendor_model
compatible: vendor,model
The equal redundant definitions are a symptom of this process.
Consequently, this patch moves the definition to image.mk making it
a global default. For the few targets not using the scheme above,
SUPPORTED_DEVICES will be defined to a different value in
Device/Default anyway, overwriting the default. In other words:
This change is supposed to be cosmetic.
This can be used as a global measure to get the current compatible
with: $(firstword $(SUPPORTED_DEVICES))
(Though this is not precisely an achievement of this commit.)
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2021-01-19 19:05:35 +00:00
|
|
|
SUPPORTED_DEVICES := $(subst _,$(comma),$(1))
|
2016-11-14 16:31:53 +00:00
|
|
|
IMAGE_METADATA :=
|
2016-07-20 08:09:10 +00:00
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
FILESYSTEMS := $(TARGET_FILESYSTEMS)
|
2019-02-11 17:55:32 +00:00
|
|
|
|
|
|
|
UBOOT_PATH := $(STAGING_DIR_IMAGE)/uboot-$(1)
|
2019-08-13 10:33:47 +00:00
|
|
|
|
2020-07-28 18:47:34 +00:00
|
|
|
BROKEN :=
|
2019-08-13 10:33:47 +00:00
|
|
|
DEFAULT :=
|
2015-01-10 15:26:53 +00:00
|
|
|
endef
|
|
|
|
|
2016-07-13 15:19:00 +00:00
|
|
|
DEFAULT_DEVICE_VARS := \
|
2019-02-06 16:41:49 +00:00
|
|
|
DEVICE_NAME KERNEL KERNEL_INITRAMFS KERNEL_INITRAMFS_IMAGE KERNEL_SIZE \
|
|
|
|
CMDLINE UBOOTENV_IN_UBI KERNEL_IN_UBI BLOCKSIZE PAGESIZE SUBPAGESIZE \
|
|
|
|
VID_HDR_OFFSET UBINIZE_OPTS UBINIZE_PARTS MKUBIFS_OPTS DEVICE_DTS \
|
2021-03-17 17:30:48 +00:00
|
|
|
DEVICE_DTS_CONFIG DEVICE_DTS_DIR DEVICE_DTS_OVERLAY DEVICE_FDT_NUM \
|
2021-03-24 22:53:23 +00:00
|
|
|
DEVICE_IMG_PREFIX SOC BOARD_NAME UIMAGE_MAGIC UIMAGE_NAME \
|
2020-11-04 09:21:15 +00:00
|
|
|
SUPPORTED_DEVICES IMAGE_METADATA KERNEL_ENTRY KERNEL_LOADADDR \
|
2020-08-29 20:48:49 +00:00
|
|
|
UBOOT_PATH IMAGE_SIZE \
|
2021-06-02 20:09:58 +00:00
|
|
|
DEVICE_PACKAGES DEVICE_COMPAT_VERSION DEVICE_COMPAT_MESSAGE \
|
2020-03-09 12:14:06 +00:00
|
|
|
DEVICE_VENDOR DEVICE_MODEL DEVICE_VARIANT \
|
2019-07-16 11:56:08 +00:00
|
|
|
DEVICE_ALT0_VENDOR DEVICE_ALT0_MODEL DEVICE_ALT0_VARIANT \
|
|
|
|
DEVICE_ALT1_VENDOR DEVICE_ALT1_MODEL DEVICE_ALT1_VARIANT \
|
|
|
|
DEVICE_ALT2_VENDOR DEVICE_ALT2_MODEL DEVICE_ALT2_VARIANT
|
2016-07-13 15:19:00 +00:00
|
|
|
|
2015-01-10 15:26:53 +00:00
|
|
|
define Device/ExportVar
|
|
|
|
$(1) : $(2):=$$($(2))
|
2015-01-10 15:26:47 +00:00
|
|
|
|
|
|
|
endef
|
2015-04-08 09:26:10 +00:00
|
|
|
define Device/Export
|
2016-07-13 15:19:00 +00:00
|
|
|
$(foreach var,$(DEVICE_VARS) $(DEFAULT_DEVICE_VARS),$(call Device/ExportVar,$(1),$(var)))
|
2015-04-08 09:26:10 +00:00
|
|
|
$(1) : FILESYSTEM:=$(2)
|
|
|
|
endef
|
2015-01-10 15:26:47 +00:00
|
|
|
|
2016-05-22 17:51:00 +00:00
|
|
|
ifdef IB
|
2016-07-21 11:41:20 +00:00
|
|
|
DEVICE_CHECK_PROFILE = $(filter $(1),DEVICE_$(PROFILE) $(PROFILE))
|
2016-05-22 17:51:00 +00:00
|
|
|
else
|
2016-05-22 20:02:31 +00:00
|
|
|
DEVICE_CHECK_PROFILE = $(CONFIG_TARGET_$(if $(CONFIG_TARGET_MULTI_PROFILE),DEVICE_)$(call target_conf,$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET)))_$(1))
|
2016-05-22 17:51:00 +00:00
|
|
|
endif
|
2016-05-18 11:56:53 +00:00
|
|
|
|
2016-09-24 16:25:25 +00:00
|
|
|
DEVICE_EXTRA_PACKAGES = $(call qstrip,$(CONFIG_TARGET_DEVICE_PACKAGES_$(call target_conf,$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET)))_DEVICE_$(1)))
|
|
|
|
|
|
|
|
define merge_packages
|
|
|
|
$(1) :=
|
|
|
|
$(foreach pkg,$(2),
|
|
|
|
$(1) := $$(strip $$(filter-out -$$(patsubst -%,%,$(pkg)) $$(patsubst -%,%,$(pkg)),$$($(1))) $(pkg))
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2016-07-22 12:04:16 +00:00
|
|
|
define Device/Check/Common
|
|
|
|
_PROFILE_SET = $$(strip $$(foreach profile,$$(PROFILES) DEVICE_$(1),$$(call DEVICE_CHECK_PROFILE,$$(profile))))
|
2018-07-02 12:19:42 +00:00
|
|
|
DEVICE_PACKAGES += $$(call extra_packages,$$(DEVICE_PACKAGES))
|
2016-07-22 12:27:52 +00:00
|
|
|
ifdef TARGET_PER_DEVICE_ROOTFS
|
2016-09-24 16:25:25 +00:00
|
|
|
$$(eval $$(call merge_packages,_PACKAGES,$$(DEVICE_PACKAGES) $$(call DEVICE_EXTRA_PACKAGES,$(1))))
|
|
|
|
ROOTFS_ID/$(1) := $$(if $$(_PROFILE_SET),$$(call mkfs_packages_id,$$(_PACKAGES)))
|
|
|
|
PACKAGES_$$(ROOTFS_ID/$(1)) := $$(_PACKAGES)
|
2016-07-22 12:27:52 +00:00
|
|
|
endif
|
2016-07-22 12:04:16 +00:00
|
|
|
endef
|
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
define Device/Check
|
2016-07-22 12:04:16 +00:00
|
|
|
$(Device/Check/Common)
|
2016-07-21 15:49:19 +00:00
|
|
|
KDIR_KERNEL_IMAGE := $(KDIR)/$(1)$$(KERNEL_SUFFIX)
|
2016-05-23 15:58:51 +00:00
|
|
|
_TARGET := $$(if $$(_PROFILE_SET),install-images,install-disabled)
|
2016-05-18 11:56:53 +00:00
|
|
|
ifndef IB
|
|
|
|
_COMPILE_TARGET := $$(if $(CONFIG_IB)$$(_PROFILE_SET),compile,compile-disabled)
|
|
|
|
endif
|
2015-01-10 15:26:47 +00:00
|
|
|
endef
|
|
|
|
|
2015-05-11 09:17:39 +00:00
|
|
|
ifndef IB
|
2015-01-10 15:26:47 +00:00
|
|
|
define Device/Build/initramfs
|
2015-07-26 11:42:27 +00:00
|
|
|
$(call Device/Export,$(KDIR)/tmp/$$(KERNEL_INITRAMFS_IMAGE),$(1))
|
2021-02-24 20:38:15 +00:00
|
|
|
$$(_TARGET): $$(if $$(KERNEL_INITRAMFS),$(BIN_DIR)/$$(KERNEL_INITRAMFS_IMAGE) \
|
|
|
|
$$(if $$(CONFIG_JSON_OVERVIEW_IMAGE_INFO), $(BUILD_DIR)/json_info_files/$$(KERNEL_INITRAMFS_IMAGE).json,))
|
2015-01-10 15:26:47 +00:00
|
|
|
|
2016-01-06 18:38:49 +00:00
|
|
|
$(KDIR)/$$(KERNEL_INITRAMFS_NAME):: image_prepare
|
2021-06-08 17:30:12 +00:00
|
|
|
$(1)-images: $$(if $$(KERNEL_INITRAMFS),$(BIN_DIR)/$$(KERNEL_INITRAMFS_IMAGE))
|
2015-05-29 13:41:02 +00:00
|
|
|
$(BIN_DIR)/$$(KERNEL_INITRAMFS_IMAGE): $(KDIR)/tmp/$$(KERNEL_INITRAMFS_IMAGE)
|
2015-01-10 15:26:47 +00:00
|
|
|
cp $$^ $$@
|
|
|
|
|
2017-03-13 09:49:58 +00:00
|
|
|
$(KDIR)/tmp/$$(KERNEL_INITRAMFS_IMAGE): $(KDIR)/$$(KERNEL_INITRAMFS_NAME) $(CURDIR)/Makefile $$(KERNEL_DEPENDS) image_prepare
|
2015-01-10 15:26:47 +00:00
|
|
|
@rm -f $$@
|
|
|
|
$$(call concat_cmd,$$(KERNEL_INITRAMFS))
|
2021-01-08 23:02:57 +00:00
|
|
|
|
|
|
|
$(call Device/Export,$(BUILD_DIR)/json_info_files/$$(KERNEL_INITRAMFS_IMAGE).json,$(1))
|
|
|
|
|
|
|
|
$(BUILD_DIR)/json_info_files/$$(KERNEL_INITRAMFS_IMAGE).json: $(BIN_DIR)/$$(KERNEL_INITRAMFS_IMAGE)
|
|
|
|
@mkdir -p $$(shell dirname $$@)
|
|
|
|
DEVICE_ID="$(1)" \
|
|
|
|
BIN_DIR="$(BIN_DIR)" \
|
|
|
|
SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH) \
|
2021-02-22 14:55:43 +00:00
|
|
|
DEVICE_IMG_NAME="$$(notdir $$^)" \
|
2021-01-08 23:02:57 +00:00
|
|
|
IMAGE_TYPE="kernel" \
|
|
|
|
IMAGE_FILESYSTEM="initramfs" \
|
2021-02-22 14:55:43 +00:00
|
|
|
DEVICE_IMG_PREFIX="$$(DEVICE_IMG_PREFIX)" \
|
2021-01-08 23:02:57 +00:00
|
|
|
DEVICE_VENDOR="$$(DEVICE_VENDOR)" \
|
|
|
|
DEVICE_MODEL="$$(DEVICE_MODEL)" \
|
|
|
|
DEVICE_VARIANT="$$(DEVICE_VARIANT)" \
|
|
|
|
DEVICE_ALT0_VENDOR="$$(DEVICE_ALT0_VENDOR)" \
|
|
|
|
DEVICE_ALT0_MODEL="$$(DEVICE_ALT0_MODEL)" \
|
|
|
|
DEVICE_ALT0_VARIANT="$$(DEVICE_ALT0_VARIANT)" \
|
|
|
|
DEVICE_ALT1_VENDOR="$$(DEVICE_ALT1_VENDOR)" \
|
|
|
|
DEVICE_ALT1_MODEL="$$(DEVICE_ALT1_MODEL)" \
|
|
|
|
DEVICE_ALT1_VARIANT="$$(DEVICE_ALT1_VARIANT)" \
|
|
|
|
DEVICE_ALT2_VENDOR="$$(DEVICE_ALT2_VENDOR)" \
|
|
|
|
DEVICE_ALT2_MODEL="$$(DEVICE_ALT2_MODEL)" \
|
|
|
|
DEVICE_ALT2_VARIANT="$$(DEVICE_ALT2_VARIANT)" \
|
|
|
|
DEVICE_TITLE="$$(DEVICE_TITLE)" \
|
|
|
|
DEVICE_PACKAGES="$$(DEVICE_PACKAGES)" \
|
|
|
|
TARGET="$(BOARD)" \
|
|
|
|
SUBTARGET="$(if $(SUBTARGET),$(SUBTARGET),generic)" \
|
|
|
|
VERSION_NUMBER="$(VERSION_NUMBER)" \
|
|
|
|
VERSION_CODE="$(VERSION_CODE)" \
|
|
|
|
SUPPORTED_DEVICES="$$(SUPPORTED_DEVICES)" \
|
|
|
|
$(TOPDIR)/scripts/json_add_image_info.py $$@
|
2015-01-10 15:26:47 +00:00
|
|
|
endef
|
2015-05-11 09:17:39 +00:00
|
|
|
endif
|
2015-01-10 15:26:47 +00:00
|
|
|
|
2015-05-11 09:07:21 +00:00
|
|
|
define Device/Build/compile
|
|
|
|
$$(_COMPILE_TARGET): $(KDIR)/$(1)
|
|
|
|
$(eval $(call Device/Export,$(KDIR)/$(1)))
|
|
|
|
$(KDIR)/$(1):
|
|
|
|
$$(call concat_cmd,$(COMPILE/$(1)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2017-11-02 12:28:26 +00:00
|
|
|
ifndef IB
|
|
|
|
define Device/Build/dtb
|
2017-11-03 15:08:12 +00:00
|
|
|
ifndef BUILD_DTS_$(1)
|
|
|
|
BUILD_DTS_$(1) := 1
|
2017-11-02 12:28:26 +00:00
|
|
|
$(KDIR)/image-$(1).dtb: FORCE
|
2017-11-09 13:26:24 +00:00
|
|
|
$(call Image/BuildDTB,$(strip $(2))/$(strip $(3)).dts,$$@)
|
2017-11-02 12:28:26 +00:00
|
|
|
|
2017-11-03 09:46:24 +00:00
|
|
|
image_prepare: $(KDIR)/image-$(1).dtb
|
2017-11-03 15:08:12 +00:00
|
|
|
endif
|
|
|
|
|
2017-11-02 12:28:26 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
define Device/Build/kernel
|
2021-03-17 17:30:48 +00:00
|
|
|
$$(eval $$(foreach dts,$$(DEVICE_DTS) $$(DEVICE_DTS_OVERLAY), \
|
2017-11-09 13:26:24 +00:00
|
|
|
$$(call Device/Build/dtb,$$(notdir $$(dts)), \
|
|
|
|
$$(if $$(DEVICE_DTS_DIR),$$(DEVICE_DTS_DIR),$$(DTS_DIR)), \
|
|
|
|
$$(dts) \
|
2017-11-02 12:28:26 +00:00
|
|
|
) \
|
|
|
|
))
|
|
|
|
|
2016-01-06 18:38:49 +00:00
|
|
|
$(KDIR)/$$(KERNEL_NAME):: image_prepare
|
2015-01-10 15:26:53 +00:00
|
|
|
$$(_TARGET): $$(if $$(KERNEL_INSTALL),$(BIN_DIR)/$$(KERNEL_IMAGE))
|
2016-07-21 15:49:19 +00:00
|
|
|
$(call Device/Export,$$(KDIR_KERNEL_IMAGE),$(1))
|
|
|
|
$(BIN_DIR)/$$(KERNEL_IMAGE): $$(KDIR_KERNEL_IMAGE)
|
2015-01-10 15:26:47 +00:00
|
|
|
cp $$^ $$@
|
2015-05-29 13:41:21 +00:00
|
|
|
ifndef IB
|
|
|
|
ifdef CONFIG_IB
|
2016-07-21 15:49:19 +00:00
|
|
|
install: $$(KDIR_KERNEL_IMAGE)
|
2015-05-29 13:41:21 +00:00
|
|
|
endif
|
2017-03-13 09:49:58 +00:00
|
|
|
$$(KDIR_KERNEL_IMAGE): $(KDIR)/$$(KERNEL_NAME) $(CURDIR)/Makefile $$(KERNEL_DEPENDS) image_prepare
|
2015-01-10 15:26:47 +00:00
|
|
|
@rm -f $$@
|
|
|
|
$$(call concat_cmd,$$(KERNEL))
|
2016-09-13 05:18:10 +00:00
|
|
|
$$(if $$(KERNEL_SIZE),$$(call Build/check-size,$$(KERNEL_SIZE)))
|
2015-05-29 13:41:21 +00:00
|
|
|
endif
|
2015-01-10 15:26:47 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/Build/image
|
2017-01-13 14:58:37 +00:00
|
|
|
GZ_SUFFIX := $(if $(filter %dtb %gz,$(2)),,$(if $(and $(findstring ext4,$(1)),$(CONFIG_TARGET_IMAGES_GZIP)),.gz))
|
2020-03-12 22:55:41 +00:00
|
|
|
$$(_TARGET): $(if $(CONFIG_JSON_OVERVIEW_IMAGE_INFO), \
|
2021-02-22 14:55:43 +00:00
|
|
|
$(BUILD_DIR)/json_info_files/$(call DEVICE_IMG_NAME,$(1),$(2)).json, \
|
|
|
|
$(BIN_DIR)/$(call DEVICE_IMG_NAME,$(1),$(2))$$(GZ_SUFFIX))
|
|
|
|
$(eval $(call Device/Export,$(KDIR)/tmp/$(call DEVICE_IMG_NAME,$(1),$(2)),$(1)))
|
2021-03-21 08:58:10 +00:00
|
|
|
$(3)-images: $(BIN_DIR)/$(call DEVICE_IMG_NAME,$(1),$(2))$$(GZ_SUFFIX)
|
2020-03-12 22:55:41 +00:00
|
|
|
|
2016-07-22 12:27:52 +00:00
|
|
|
ROOTFS/$(1)/$(3) := \
|
|
|
|
$(KDIR)/root.$(1)$$(strip \
|
|
|
|
$$(if $$(FS_OPTIONS/$(1)),+fs=$$(call param_mangle,$$(FS_OPTIONS/$(1)))) \
|
|
|
|
)$$(strip \
|
|
|
|
$(if $(TARGET_PER_DEVICE_ROOTFS),+pkg=$$(ROOTFS_ID/$(3))) \
|
|
|
|
)
|
|
|
|
ifndef IB
|
|
|
|
$$(ROOTFS/$(1)/$(3)): $(if $(TARGET_PER_DEVICE_ROOTFS),target-dir-$$(ROOTFS_ID/$(3)))
|
|
|
|
endif
|
2021-02-22 14:55:43 +00:00
|
|
|
$(KDIR)/tmp/$(call DEVICE_IMG_NAME,$(1),$(2)): $$(KDIR_KERNEL_IMAGE) $$(ROOTFS/$(1)/$(3))
|
2015-01-10 15:26:47 +00:00
|
|
|
@rm -f $$@
|
|
|
|
[ -f $$(word 1,$$^) -a -f $$(word 2,$$^) ]
|
|
|
|
$$(call concat_cmd,$(if $(IMAGE/$(2)/$(1)),$(IMAGE/$(2)/$(1)),$(IMAGE/$(2))))
|
|
|
|
|
2021-02-22 14:55:43 +00:00
|
|
|
.IGNORE: $(BIN_DIR)/$(call DEVICE_IMG_NAME,$(1),$(2))
|
2017-01-13 14:58:37 +00:00
|
|
|
|
2021-02-22 14:55:43 +00:00
|
|
|
$(BIN_DIR)/$(call DEVICE_IMG_NAME,$(1),$(2)).gz: $(KDIR)/tmp/$(call DEVICE_IMG_NAME,$(1),$(2))
|
2017-01-13 14:58:37 +00:00
|
|
|
gzip -c -9n $$^ > $$@
|
|
|
|
|
2021-02-22 14:55:43 +00:00
|
|
|
$(BIN_DIR)/$(call DEVICE_IMG_NAME,$(1),$(2)): $(KDIR)/tmp/$(call DEVICE_IMG_NAME,$(1),$(2))
|
2015-01-10 15:26:53 +00:00
|
|
|
cp $$^ $$@
|
2020-03-12 22:55:41 +00:00
|
|
|
|
2021-02-22 14:55:43 +00:00
|
|
|
$(BUILD_DIR)/json_info_files/$(call DEVICE_IMG_NAME,$(1),$(2)).json: $(BIN_DIR)/$(call DEVICE_IMG_NAME,$(1),$(2))$$(GZ_SUFFIX)
|
2020-03-12 22:55:41 +00:00
|
|
|
@mkdir -p $$(shell dirname $$@)
|
|
|
|
DEVICE_ID="$(DEVICE_NAME)" \
|
|
|
|
BIN_DIR="$(BIN_DIR)" \
|
2020-11-01 21:53:39 +00:00
|
|
|
SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH) \
|
2021-02-22 14:55:43 +00:00
|
|
|
DEVICE_IMG_NAME="$(DEVICE_IMG_NAME)" \
|
2020-03-12 22:55:41 +00:00
|
|
|
IMAGE_TYPE=$(word 1,$(subst ., ,$(2))) \
|
2020-12-14 00:36:17 +00:00
|
|
|
IMAGE_FILESYSTEM="$(1)" \
|
2021-02-22 14:55:43 +00:00
|
|
|
DEVICE_IMG_PREFIX="$(DEVICE_IMG_PREFIX)" \
|
2020-03-12 22:55:41 +00:00
|
|
|
DEVICE_VENDOR="$(DEVICE_VENDOR)" \
|
|
|
|
DEVICE_MODEL="$(DEVICE_MODEL)" \
|
|
|
|
DEVICE_VARIANT="$(DEVICE_VARIANT)" \
|
|
|
|
DEVICE_ALT0_VENDOR="$(DEVICE_ALT0_VENDOR)" \
|
|
|
|
DEVICE_ALT0_MODEL="$(DEVICE_ALT0_MODEL)" \
|
|
|
|
DEVICE_ALT0_VARIANT="$(DEVICE_ALT0_VARIANT)" \
|
|
|
|
DEVICE_ALT1_VENDOR="$(DEVICE_ALT1_VENDOR)" \
|
|
|
|
DEVICE_ALT1_MODEL="$(DEVICE_ALT1_MODEL)" \
|
|
|
|
DEVICE_ALT1_VARIANT="$(DEVICE_ALT1_VARIANT)" \
|
|
|
|
DEVICE_ALT2_VENDOR="$(DEVICE_ALT2_VENDOR)" \
|
|
|
|
DEVICE_ALT2_MODEL="$(DEVICE_ALT2_MODEL)" \
|
|
|
|
DEVICE_ALT2_VARIANT="$(DEVICE_ALT2_VARIANT)" \
|
|
|
|
DEVICE_TITLE="$(DEVICE_TITLE)" \
|
2020-06-30 11:02:43 +00:00
|
|
|
DEVICE_PACKAGES="$(DEVICE_PACKAGES)" \
|
2020-03-12 22:55:41 +00:00
|
|
|
TARGET="$(BOARD)" \
|
|
|
|
SUBTARGET="$(if $(SUBTARGET),$(SUBTARGET),generic)" \
|
|
|
|
VERSION_NUMBER="$(VERSION_NUMBER)" \
|
|
|
|
VERSION_CODE="$(VERSION_CODE)" \
|
|
|
|
SUPPORTED_DEVICES="$(SUPPORTED_DEVICES)" \
|
|
|
|
$(TOPDIR)/scripts/json_add_image_info.py $$@
|
2019-11-05 22:57:37 +00:00
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
endef
|
|
|
|
|
2018-11-23 09:53:37 +00:00
|
|
|
define Device/Build/artifact
|
2021-02-22 14:55:43 +00:00
|
|
|
$$(_TARGET): $(BIN_DIR)/$(DEVICE_IMG_PREFIX)-$(1)
|
|
|
|
$(eval $(call Device/Export,$(KDIR)/tmp/$(DEVICE_IMG_PREFIX)-$(1)))
|
2021-03-21 08:58:10 +00:00
|
|
|
$(KDIR)/tmp/$(DEVICE_IMG_PREFIX)-$(1): $$(KDIR_KERNEL_IMAGE) $(2)-images
|
2018-11-23 09:53:37 +00:00
|
|
|
@rm -f $$@
|
|
|
|
$$(call concat_cmd,$(ARTIFACT/$(1)))
|
|
|
|
|
2021-02-22 14:55:43 +00:00
|
|
|
.IGNORE: $(BIN_DIR)/$(DEVICE_IMG_PREFIX)-$(1)
|
2018-11-23 09:53:37 +00:00
|
|
|
|
2021-02-22 14:55:43 +00:00
|
|
|
$(BIN_DIR)/$(DEVICE_IMG_PREFIX)-$(1): $(KDIR)/tmp/$(DEVICE_IMG_PREFIX)-$(1)
|
2018-11-23 09:53:37 +00:00
|
|
|
cp $$^ $$@
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
define Device/Build
|
|
|
|
$(if $(CONFIG_TARGET_ROOTFS_INITRAMFS),$(call Device/Build/initramfs,$(1)))
|
|
|
|
$(call Device/Build/kernel,$(1))
|
|
|
|
|
2015-05-11 09:07:21 +00:00
|
|
|
$$(eval $$(foreach compile,$$(COMPILE), \
|
|
|
|
$$(call Device/Build/compile,$$(compile),$(1))))
|
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
$$(eval $$(foreach image,$$(IMAGES), \
|
|
|
|
$$(foreach fs,$$(filter $(TARGET_FILESYSTEMS),$$(FILESYSTEMS)), \
|
2015-01-10 15:26:53 +00:00
|
|
|
$$(call Device/Build/image,$$(fs),$$(image),$(1)))))
|
2018-11-23 09:53:37 +00:00
|
|
|
|
|
|
|
$$(eval $$(foreach artifact,$$(ARTIFACTS), \
|
2021-03-21 08:58:10 +00:00
|
|
|
$$(call Device/Build/artifact,$$(artifact),$(1))))
|
2018-11-23 09:53:37 +00:00
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
endef
|
|
|
|
|
2016-05-09 14:50:46 +00:00
|
|
|
define Device/DumpInfo
|
|
|
|
Target-Profile: DEVICE_$(1)
|
2019-07-16 11:56:08 +00:00
|
|
|
Target-Profile-Name: $(DEVICE_DISPLAY)
|
2016-05-09 14:50:46 +00:00
|
|
|
Target-Profile-Packages: $(DEVICE_PACKAGES)
|
2019-03-06 13:45:15 +00:00
|
|
|
Target-Profile-hasImageMetadata: $(if $(foreach image,$(IMAGES),$(findstring append-metadata,$(IMAGE/$(image)))),1,0)
|
2019-03-11 04:32:29 +00:00
|
|
|
Target-Profile-SupportedDevices: $(SUPPORTED_DEVICES)
|
2020-07-28 18:47:34 +00:00
|
|
|
$(if $(BROKEN),Target-Profile-Broken: $(BROKEN))
|
2019-08-13 10:33:47 +00:00
|
|
|
$(if $(DEFAULT),Target-Profile-Default: $(DEFAULT))
|
2016-05-09 14:50:46 +00:00
|
|
|
Target-Profile-Description:
|
|
|
|
$(DEVICE_DESCRIPTION)
|
2019-07-16 11:56:08 +00:00
|
|
|
$(if $(strip $(DEVICE_ALT0_TITLE)),Alternative device titles:
|
|
|
|
- $(DEVICE_ALT0_TITLE))
|
|
|
|
$(if $(strip $(DEVICE_ALT1_TITLE)),- $(DEVICE_ALT1_TITLE))
|
|
|
|
$(if $(strip $(DEVICE_ALT2_TITLE)),- $(DEVICE_ALT2_TITLE))
|
2016-05-09 14:50:46 +00:00
|
|
|
@@
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/Dump
|
2019-07-16 11:56:08 +00:00
|
|
|
ifneq ($$(strip $$(DEVICE_ALT0_TITLE)),)
|
|
|
|
DEVICE_DISPLAY = $$(DEVICE_ALT0_TITLE) ($$(DEVICE_TITLE))
|
|
|
|
$$(info $$(call Device/DumpInfo,$(1)))
|
|
|
|
endif
|
|
|
|
ifneq ($$(strip $$(DEVICE_ALT1_TITLE)),)
|
|
|
|
DEVICE_DISPLAY = $$(DEVICE_ALT1_TITLE) ($$(DEVICE_TITLE))
|
|
|
|
$$(info $$(call Device/DumpInfo,$(1)))
|
|
|
|
endif
|
|
|
|
ifneq ($$(strip $$(DEVICE_ALT2_TITLE)),)
|
|
|
|
DEVICE_DISPLAY = $$(DEVICE_ALT2_TITLE) ($$(DEVICE_TITLE))
|
|
|
|
$$(info $$(call Device/DumpInfo,$(1)))
|
|
|
|
endif
|
|
|
|
DEVICE_DISPLAY = $$(DEVICE_TITLE)
|
2016-05-18 11:56:53 +00:00
|
|
|
$$(eval $$(if $$(DEVICE_TITLE),$$(info $$(call Device/DumpInfo,$(1)))))
|
2016-05-09 14:50:46 +00:00
|
|
|
endef
|
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
define Device
|
2016-05-23 15:58:51 +00:00
|
|
|
$(call Device/InitProfile,$(1))
|
2015-01-10 15:26:47 +00:00
|
|
|
$(call Device/Init,$(1))
|
|
|
|
$(call Device/Default,$(1))
|
|
|
|
$(call Device/$(1),$(1))
|
2016-05-19 13:34:36 +00:00
|
|
|
$(call Device/Check,$(1))
|
2016-05-09 14:50:46 +00:00
|
|
|
$(call Device/$(if $(DUMP),Dump,Build),$(1))
|
2014-10-12 15:00:49 +00:00
|
|
|
|
|
|
|
endef
|
2010-04-29 00:44:26 +00:00
|
|
|
|
2006-06-21 02:16:37 +00:00
|
|
|
define BuildImage
|
|
|
|
|
2016-05-09 14:50:46 +00:00
|
|
|
ifneq ($(DUMP),)
|
|
|
|
all: dumpinfo
|
|
|
|
dumpinfo: FORCE
|
|
|
|
@true
|
|
|
|
endif
|
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
download:
|
|
|
|
prepare:
|
2014-10-12 15:00:07 +00:00
|
|
|
compile:
|
|
|
|
clean:
|
|
|
|
image_prepare:
|
2008-01-29 10:51:52 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
ifeq ($(IB),)
|
2016-09-26 13:25:37 +00:00
|
|
|
.PHONY: download prepare compile clean image_prepare kernel_prepare install install-images
|
2014-10-12 15:01:08 +00:00
|
|
|
compile:
|
2010-04-29 00:44:26 +00:00
|
|
|
$(call Build/Compile)
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2014-10-12 15:01:08 +00:00
|
|
|
clean:
|
2014-10-12 15:00:07 +00:00
|
|
|
$(call Build/Clean)
|
|
|
|
|
2014-10-12 15:00:49 +00:00
|
|
|
image_prepare: compile
|
2016-04-19 14:08:18 +00:00
|
|
|
mkdir -p $(BIN_DIR) $(KDIR)/tmp
|
2020-03-12 22:55:41 +00:00
|
|
|
rm -rf $(BUILD_DIR)/json_info_files
|
2010-04-29 00:44:26 +00:00
|
|
|
$(call Image/Prepare)
|
2016-05-23 15:58:51 +00:00
|
|
|
|
2015-06-01 18:00:35 +00:00
|
|
|
else
|
|
|
|
image_prepare:
|
2016-04-19 14:08:18 +00:00
|
|
|
mkdir -p $(BIN_DIR) $(KDIR)/tmp
|
2010-04-29 00:44:26 +00:00
|
|
|
endif
|
2006-12-08 04:06:29 +00:00
|
|
|
|
2016-09-26 13:25:37 +00:00
|
|
|
kernel_prepare: image_prepare
|
2016-07-21 17:02:59 +00:00
|
|
|
$(call Image/Build/targz)
|
|
|
|
$(call Image/Build/cpiogz)
|
2014-10-12 15:00:07 +00:00
|
|
|
$(call Image/BuildKernel)
|
2015-05-29 13:41:31 +00:00
|
|
|
$(if $(CONFIG_TARGET_ROOTFS_INITRAMFS),$(if $(IB),,$(call Image/BuildKernel/Initramfs)))
|
2014-10-12 15:00:07 +00:00
|
|
|
$(call Image/InstallKernel)
|
2014-10-12 15:00:49 +00:00
|
|
|
|
2015-01-10 15:26:47 +00:00
|
|
|
$(foreach device,$(TARGET_DEVICES),$(call Device,$(device)))
|
2014-10-12 15:00:49 +00:00
|
|
|
|
2016-07-22 11:26:37 +00:00
|
|
|
install-images: kernel_prepare $(foreach fs,$(filter-out $(if $(UBIFS_OPTS),,ubifs),$(TARGET_FILESYSTEMS) $(fs-subtypes-y)),$(KDIR)/root.$(fs))
|
2014-10-12 15:00:49 +00:00
|
|
|
$(foreach fs,$(TARGET_FILESYSTEMS),
|
|
|
|
$(call Image/Build,$(fs))
|
|
|
|
)
|
2016-05-23 15:58:51 +00:00
|
|
|
|
|
|
|
install: install-images
|
2016-09-01 14:54:03 +00:00
|
|
|
$(call Image/Manifest)
|
2006-06-21 02:16:37 +00:00
|
|
|
|
2010-04-29 00:44:26 +00:00
|
|
|
endef
|