| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- define Build/boot-scr
- rm -f [email protected]
- mkimage -A arm64 -O linux -T script -C none -a 0 -e 0 \
- -d bootscript-$(BOOT_SCRIPT) [email protected]
- endef
- define Build/boot-img-ext4
- rm -fR [email protected]
- mkdir -p [email protected]
- $(foreach dts,$(DEVICE_DTS), $(CP) $(KDIR)/image-$(dts).dtb [email protected]/$(dts).dtb;)
- $(CP) $(IMAGE_KERNEL) [email protected]/$(KERNEL_NAME)
- -$(CP) [email protected] [email protected]/boot.scr
- make_ext4fs -J -L kernel -l $(CONFIG_TARGET_KERNEL_PARTSIZE)M \
- $(if $(SOURCE_DATE_EPOCH),-T $(SOURCE_DATE_EPOCH)) \
- [email protected] [email protected]
- endef
- define Build/sdcard-img-ext4
- SIGNATURE="$(IMG_PART_SIGNATURE)" \
- PARTOFFSET="$(PARTITION_OFFSET)" PADDING=1 \
- $(if $(filter $(1),efi),GUID="$(IMG_PART_DISKGUID)") $(SCRIPT_DIR)/gen_image_generic.sh \
- $@ \
- $(CONFIG_TARGET_KERNEL_PARTSIZE) [email protected] \
- $(CONFIG_TARGET_ROOTFS_PARTSIZE) $(IMAGE_ROOTFS) \
- 256
- endef
- define Device/Default
- PROFILES := Default
- FILESYSTEMS := squashfs ubifs ext4
- DEVICE_DTS_DIR := $(DTS_DIR)/freescale
- KERNEL_INSTALL := 1
- KERNEL_NAME := Image
- KERNEL := kernel-bin
- endef
- define Device/imx8m
- DEVICE_VENDOR := NXP
- DEVICE_MODEL := i.MX8M
- DEVICE_DTS := $(basename $(notdir $(wildcard $(DTS_DIR)/freescale/imx8m*.dts)))
- endef
- TARGET_DEVICES += imx8m
- define Device/gateworks_venice
- $(call Device/Default)
- FILESYSTEMS := squashfs ext4
- DEVICE_VENDOR := Gateworks
- DEVICE_MODEL := i.MX8M Venice
- BOOT_SCRIPT := gateworks_venice
- PARTITION_OFFSET := 16M
- DEVICE_DTS := $(basename $(notdir $(wildcard $(DTS_DIR)/freescale/imx8m*-venice*.dts)))
- DEVICE_PACKAGES := \
- kmod-hwmon-gsc kmod-rtc-ds1672 kmod-eeprom-at24 \
- kmod-gpio-button-hotplug kmod-leds-gpio kmod-pps-gpio \
- kmod-lan743x kmod-sky2 kmod-iio-st_accel-i2c \
- kmod-can kmod-can-flexcan kmod-can-mcp251x
- IMAGES := img.gz
- IMAGE/img.gz := boot-scr | boot-img-ext4 | sdcard-img-ext4 | gzip | append-metadata
- endef
- TARGET_DEVICES += gateworks_venice
|