OpenWrt – Blame information for rev 2
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # |
2 | # Copyright (C) 2018 Jianhui Zhao <jianhuizhao329@gmail.com> |
||
3 | # |
||
4 | # This is free software, licensed under the GNU General Public License v2. |
||
5 | # See /LICENSE for more information. |
||
6 | # |
||
7 | include $(TOPDIR)/rules.mk |
||
8 | include $(INCLUDE_DIR)/image.mk |
||
9 | |||
10 | KERNEL_LOADADDR := 0x20008000 |
||
11 | |||
12 | define Device/Default |
||
13 | PROFILES = Default |
||
14 | KERNEL_NAME := zImage |
||
15 | KERNEL := kernel-bin | append-dtb | uImage none |
||
16 | endef |
||
17 | |||
18 | define Device/tq210 |
||
19 | DEVICE_DTS_DIR := ../dts |
||
20 | DEVICE_DTS := TQ210 |
||
21 | DEVICE_TITLE := TQ210 |
||
22 | endef |
||
23 | TARGET_DEVICES += tq210 |
||
24 | |||
25 | $(eval $(call BuildImage)) |