targets: add kernel image dependencies on device tree files
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48146
This commit is contained in:
parent
4ab26a52ef
commit
2499a57d92
6 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,7 @@ endef
|
|||
# Shared device definition: applies to every defined device
|
||||
define Device/Default
|
||||
PROFILES = Default $$(DEVICE_PROFILE)
|
||||
KERNEL_DEPENDS = $$(wildcard ../dts/$$(DEVICE_DTS).dts)
|
||||
KERNEL_SUFFIX := .elf
|
||||
KERNEL_INITRAMFS := kernel-bin | patch-dtb
|
||||
KERNEL_INITRAMFS_NAME = $$(KERNEL_NAME)-initramfs.elf
|
||||
|
|
|
@ -67,6 +67,7 @@ define Device/Default
|
|||
# extract the full dtb name based on the device info
|
||||
DT := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(1).dtb)))
|
||||
KERNEL := kernel-bin | append-dtb | lzma-d16
|
||||
KERNEL_DEPENDS = $$(wildcard $(KDIR)/$$(DT).dts)
|
||||
FILESYSTEMS := squashfs
|
||||
KERNEL_NAME := zImage
|
||||
IMAGE_NAME = $$(IMAGE_PREFIX)-$$(1).$$(2)
|
||||
|
|
|
@ -168,6 +168,7 @@ endef
|
|||
# Shared device definition: applies to every defined device
|
||||
define Device/Default
|
||||
PROFILES = Default $$(DEVICE_PROFILE)
|
||||
KERNEL_DEPENDS = $$(wildcard ../dts/$$(DEVICE_DTS).dts)
|
||||
KERNEL_INITRAMFS_IMAGE = $$(KERNEL_INITRAMFS_PREFIX).elf
|
||||
DEVICE_PROFILE :=
|
||||
DEVICE_DTS :=
|
||||
|
|
|
@ -42,6 +42,7 @@ endef
|
|||
|
||||
define Device/Default
|
||||
PROFILES := Default
|
||||
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
|
||||
KERNEL_INITRAMFS_PREFIX := $$(IMG_PREFIX)-$(1)-initramfs
|
||||
DEVICE_DTS :=
|
||||
KERNEL_PREFIX := $$(IMAGE_PREFIX)
|
||||
|
|
|
@ -15,6 +15,7 @@ KERNEL_LOADADDR:=0x8000
|
|||
TARGET_DEVICES = linksys-audi linksys-viper
|
||||
|
||||
define Device/Default
|
||||
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
|
||||
KERNEL := kernel-bin | append-dtb | uImage none
|
||||
KERNEL_NAME := zImage
|
||||
endef
|
||||
|
|
|
@ -32,6 +32,7 @@ KERNEL_LOADADDR := $(loadaddr-y)
|
|||
|
||||
KERNEL_DTB = kernel-bin | patch-dtb | lzma
|
||||
define Device/Default
|
||||
KERNEL_DEPENDS = $$(wildcard ../dts/$$(DTS).dts)
|
||||
KERNEL := $(KERNEL_DTB) | uImage lzma
|
||||
IMAGES := sysupgrade.bin
|
||||
IMAGE_SIZE := $(ralink_default_fw_size_8M)
|
||||
|
|
Loading…
Reference in a new issue