diff mbox series

[OpenWrt-Devel,11/11] target/linux/mvebu: generate a FIT image on Armada XP GP with dm-verity

Message ID 20190311162028.13172-12-thomas.petazzoni@bootlin.com
State Superseded
Headers show
Series Proposal for dm-verity support | expand

Commit Message

Thomas Petazzoni March 11, 2019, 4:20 p.m. UTC
When a dm-verity capable is selected, the user will most likely need
the U-Boot script that contains the various dm-verity related
configuration details, needed by U-Boot to build the kernel command
line with the appropriate dm="..." argument.

Therefore, for the Marvell Armada XP GP platform, make sure a FIT
image containing the dm-verity related U-Boot script is produced when
CONFIG_TARGET_ROOTFS_SQUASHFS_HASHED is enabled.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 target/linux/mvebu/image/cortex-a9.mk | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
diff mbox series

Patch

diff --git a/target/linux/mvebu/image/cortex-a9.mk b/target/linux/mvebu/image/cortex-a9.mk
index 6e38549d77..c959e871c6 100644
--- a/target/linux/mvebu/image/cortex-a9.mk
+++ b/target/linux/mvebu/image/cortex-a9.mk
@@ -110,9 +110,23 @@  define Device/armada-xp-db
 endef
 TARGET_DEVICES += armada-xp-db
 
+ifeq ($(CONFIG_TARGET_ROOTFS_SQUASHFS_HASHED),y)
+define Device/armada-xp-gp/kernel
+	ITS_UBOOT_SCRIPT := $(KDIR)/root.squashfs-hashed-dm-verity-uboot-script.txt
+	KERNEL := kernel-bin | append-dtb | fit none
+	KERNEL_SIZE := 4096k
+endef
+else
+define Device/armada-xp-gp/kernel
+	KERNEL := kernel-bin | append-dtb | uImage none
+	KERNEL_SIZE := 4096k
+endef
+endif
+
 define Device/armada-xp-gp
 	$(call Device/marvell-nand,XP GP (DB-MV784MP-GP))
 	$(Device/UBI-factory)
+	$(Device/armada-xp-gp/kernel)
 endef
 TARGET_DEVICES += armada-xp-gp