5f55df433d
As support of ARC HS38 in OpenWRT/Lede matures we don't need debug-only output binaries any longer, so purging vmlinux for AXS10x boards. As for uImage for nSIM it makes completely no sense because there's no way to run U-Boot on nSIM. So we remove add_archs38_XXX scripts making code more compact and cleaner. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2016 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
|
|
|
|
# On ARC initramfs is put before entry point and so entry point moves
|
|
# in memory from build to built. Thus we need to extract EP from vmlinux
|
|
# every time before generation of uImage.
|
|
define Build/calculate-ep
|
|
$(eval KERNEL_ENTRY=$(shell $(KERNEL_CROSS)readelf -h $(LINUX_DIR)/vmlinux | grep "Entry point address" | grep -o 0x.*))
|
|
endef
|
|
|
|
define Build/patch-dtb
|
|
$(call Image/BuildDTB,$(DTS_DIR)/$(DEVICE_DTS).dts,$@.dtb)
|
|
$(STAGING_DIR_HOST)/bin/patch-dtb $@ $@.dtb
|
|
endef
|
|
|
|
# Shared device definition: applies to every defined device
|
|
define Device/Default
|
|
PROFILES = Default $$(DEVICE_PROFILE)
|
|
KERNEL_DEPENDS = $$(wildcard ../dts/$$(DEVICE_DTS).dts)
|
|
DEVICE_PROFILE :=
|
|
endef
|
|
DEVICE_VARS += DEVICE_PROFILE
|
|
|
|
define Device/vmlinux
|
|
KERNEL_SUFFIX := .elf
|
|
KERNEL_INITRAMFS := kernel-bin | patch-dtb
|
|
KERNEL_INITRAMFS_NAME = vmlinux-initramfs.elf
|
|
endef
|
|
|
|
define Device/uImage
|
|
KERNEL_SUFFIX := -uImage
|
|
KERNEL_INITRAMFS := kernel-bin | patch-dtb | calculate-ep | uImage none
|
|
KERNEL_LOADADDR := 0x80000000
|
|
endef
|
|
|
|
define Device/axs103
|
|
$(call Device/uImage)
|
|
DEVICE_PROFILE := axs103
|
|
DEVICE_DTS := axs103_idu
|
|
endef
|
|
TARGET_DEVICES += axs103
|
|
|
|
define Device/nsim_hs
|
|
$(call Device/vmlinux)
|
|
DEVICE_PROFILE := nsim_hs
|
|
DEVICE_DTS := nsim_hs_idu
|
|
endef
|
|
TARGET_DEVICES += nsim_hs
|
|
|
|
$(eval $(call BuildImage))
|