target: use SPDX license identifiers on Makefiles
[openwrt/staging/wigyori.git] / target / linux / rockchip / image / Makefile
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 include $(TOPDIR)/rules.mk
4 include $(INCLUDE_DIR)/image.mk
5
6 DEVICE_VARS += UBOOT_DEVICE_NAME
7
8 define Build/Compile
9 $(CP) $(LINUX_DIR)/COPYING $(KDIR)/COPYING.linux
10 endef
11
12 ### Image scripts ###
13 define Build/boot-common
14 # This creates a new folder copies the dtb (as rockchip.dtb)
15 # and the kernel image (as kernel.img)
16 rm -fR $@.boot
17 mkdir -p $@.boot
18
19 $(CP) $(DTS_DIR)/$(DEVICE_DTS).dtb $@.boot/rockchip.dtb
20 $(CP) $(IMAGE_KERNEL) $@.boot/kernel.img
21 endef
22
23 define Build/boot-script
24 # Make an U-boot image and copy it to the boot partition
25 mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d $(if $(1),$(1),mmc).bootscript $@.boot/boot.scr
26 endef
27
28 define Build/pine64-img
29 # Creates the final SD/eMMC images,
30 # combining boot partition, root partition as well as the u-boot bootloader
31
32 # Generate a new partition table in $@ with 32 MiB of
33 # alignment padding for the idbloader and u-boot to fit:
34 # http://opensource.rock-chips.com/wiki_Boot_option#Boot_flow
35 #
36 # U-Boot SPL expects the U-Boot ITB to be located at sector 0x4000 (8 MiB) on the MMC storage
37 $(SCRIPT_DIR)/gen_image_generic.sh \
38 $@ \
39 $(CONFIG_TARGET_KERNEL_PARTSIZE) $@.boot \
40 $(CONFIG_TARGET_ROOTFS_PARTSIZE) $(IMAGE_ROOTFS) \
41 32768
42
43 # Copy the idbloader and the u-boot image to the image at sector 0x40 and 0x4000
44 dd if="$(STAGING_DIR_IMAGE)"/$(UBOOT_DEVICE_NAME)-idbloader.img of="$@" seek=64 conv=notrunc
45 dd if="$(STAGING_DIR_IMAGE)"/$(UBOOT_DEVICE_NAME)-u-boot.itb of="$@" seek=16384 conv=notrunc
46 endef
47
48 ### Devices ###
49 define Device/Default
50 PROFILES := Default
51 KERNEL := kernel-bin
52 IMAGES := sysupgrade.img.gz
53 DEVICE_DTS = rockchip/$$(SOC)-$(lastword $(subst _, ,$(1)))
54 endef
55
56 include $(SUBTARGET).mk
57
58 $(eval $(call BuildImage))