mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
18 lines
428 B
Makefile
18 lines
428 B
Makefile
|
include $(TOPDIR)/rules.mk
|
||
|
include $(INCLUDE_DIR)/image.mk
|
||
|
|
||
|
define Device/Default
|
||
|
PROFILES := Default
|
||
|
KERNEL_LOADADDR := 0x41000000
|
||
|
DEVICE_DTS = $$(SOC)-$(lastword $(subst _, ,$(1)))
|
||
|
DEVICE_DTS_CONFIG := config@1
|
||
|
DEVICE_DTS_DIR := $(DTS_DIR)/qcom
|
||
|
IMAGES := sysupgrade.bin
|
||
|
IMAGE/sysupgrade.bin = sysupgrade-tar | append-metadata
|
||
|
IMAGE/sysupgrade.bin/squashfs :=
|
||
|
endef
|
||
|
|
||
|
include $(SUBTARGET).mk
|
||
|
|
||
|
$(eval $(call BuildImage))
|