bb94ff863f9dc8dd9b920b3baffc37dcd0049f7c
[openwrt/openwrt.git] / target / linux / layerscape / image / Makefile
1 #
2 # Copyright (C) 2016 Jiang Yutang <jiangyutang1978@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 define Build/append-ls-rcw
11 rm -f $@
12 dd if=$(KDIR)/$(1)-rcw.bin >> $@
13 endef
14
15 define Build/append-ls-uboot
16 dd if=$(KDIR)/$(1)-$(SUBTARGET)-uboot.bin >> $@
17 endef
18
19 define Build/append-ls-fman
20 dd if=$(KDIR)/$(1)-fman.bin >> $@
21 endef
22
23 define Build/append-ls-dtb
24 $(call Image/BuildDTB,$(DTS_DIR)/$(1).dts,$(DTS_DIR)/$(1).dtb)
25 dd if=$(DTS_DIR)/$(1).dtb >> $@
26 endef
27
28 define Build/append-ls-rootfs-ext4
29 $(STAGING_DIR_HOST)/bin/make_ext4fs -l $(word 2,$(1)) -b 4096 -i 6000 -m 0 -J $(KDIR)/$(word 1,$(1))-$(word 2,$(1)).root.ext4 $(TARGET_DIR)
30 dd if=$(KDIR)/$(word 1,$(1))-$(word 2,$(1)).root.ext4 >> $@
31 endef
32
33 define Device/Default
34 PROFILES = Default
35 FILESYSTEMS := squashfs
36 KERNEL := kernel-bin | gzip | uImage gzip
37 DEVICE_DTS :=
38 IMAGES = firmware.bin
39
40 ifeq ($(SUBTARGET),64b)
41 KERNEL_LOADADDR = 0x80080000
42 KERNEL_ENTRY_POINT = 0x80080000
43 endif
44 ifeq ($(SUBTARGET),32b)
45 KERNEL_LOADADDR = 0x80008000
46 KERNEL_ENTRY_POINT = 0x80008000
47 endif
48 endef
49
50 define Device/ls1043ardb
51 DEVICE_TITLE := ls1043ardb-$(SUBTARGET)
52 DEVICE_PACKAGES += rcw-layerscape-ls1043ardb uboot-layerscape-$(SUBTARGET)-ls1043ardb fman-layerscape-ls1043ardb
53 ifeq ($(SUBTARGET),64b)
54 DEVICE_DTS = freescale/fsl-ls1043a-rdb
55 endif
56 ifeq ($(SUBTARGET),32b)
57 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1043a-rdb
58 endif
59 IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | append-ls-uboot $(1) | pad-to 3M | \
60 append-ls-fman $(1) | pad-to 4M | append-ls-dtb $$(DEVICE_DTS) | pad-to 5M | \
61 append-kernel | pad-to 10M | append-rootfs | pad-rootfs | check-size 67108865
62 endef
63 TARGET_DEVICES += ls1043ardb
64
65 define Device/ls1012ardb
66 DEVICE_TITLE := ls1012ardb-$(SUBTARGET)
67 DEVICE_PACKAGES += rcw-layerscape-ls1012ardb uboot-layerscape-$(SUBTARGET)-ls1012ardb kmod-ppfe ppfe-ls1012ardb
68 ifeq ($(SUBTARGET),64b)
69 DEVICE_DTS = freescale/fsl-ls1012a-rdb
70 endif
71 ifeq ($(SUBTARGET),32b)
72 DEVICE_DTS = ../../../arm64/boot/dts/freescale/fsl-ls1012a-rdb
73 endif
74 IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | append-ls-uboot $(1) | pad-to 3M | \
75 append-ls-dtb $$(DEVICE_DTS) | pad-to 4M | append-kernel | pad-to 9M | \
76 append-ls-rootfs-ext4 $(1) 23M | check-size 33554433
77 endef
78 TARGET_DEVICES += ls1012ardb
79
80 $(eval $(call BuildImage))