2018-04-17 03:09:14 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2018 Jianhui Zhao <jianhuizhao329@gmail.com>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
KERNEL_LOADADDR := 0x20008000
|
|
|
|
|
|
|
|
define Device/Default
|
|
|
|
PROFILES = Default
|
|
|
|
KERNEL_NAME := zImage
|
|
|
|
KERNEL := kernel-bin | append-dtb | uImage none
|
2019-12-28 15:04:48 +00:00
|
|
|
DEVICE_DTS_DIR := ../dts
|
|
|
|
DEVICE_DTS = $$(SOC)_$(1)
|
2018-04-17 03:09:14 +00:00
|
|
|
endef
|
|
|
|
|
2019-12-28 15:08:38 +00:00
|
|
|
ifeq ($(SUBTARGET),s5pv210)
|
|
|
|
|
2019-12-28 15:04:48 +00:00
|
|
|
define Device/embedsky_tq210
|
|
|
|
DEVICE_VENDOR := EmbedSky
|
2019-09-09 22:15:49 +00:00
|
|
|
DEVICE_MODEL := TQ210
|
2019-12-28 15:04:48 +00:00
|
|
|
SOC := s5pv210
|
2018-04-17 03:09:14 +00:00
|
|
|
endef
|
2019-12-28 15:04:48 +00:00
|
|
|
TARGET_DEVICES += embedsky_tq210
|
2018-04-17 03:09:14 +00:00
|
|
|
|
2019-12-28 15:08:38 +00:00
|
|
|
endif
|
|
|
|
|
2018-04-17 03:09:14 +00:00
|
|
|
$(eval $(call BuildImage))
|