From f0fa42c10d811af02369ac8aa087edc9a760787b Mon Sep 17 00:00:00 2001 From: Vijay Balaji Date: Thu, 17 Aug 2023 11:29:42 +0530 Subject: [PATCH] sysupgrade : corrected typo in rootfs auth message log We observed a typo in rootfs image authentication enabled message log and corrected it in this change. Change-Id: Ie1aa07e0f45fdc3d802d87a03cfe376d7ac43e4e Signed-off-by: Vijay Balaji --- tools/sysupgrade.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sysupgrade.c b/tools/sysupgrade.c index c81c24f05f..a74705e807 100644 --- a/tools/sysupgrade.c +++ b/tools/sysupgrade.c @@ -1801,7 +1801,7 @@ int do_board_upgrade_check(char *img) if (is_tz_authentication_enabled()) { /* If image is having signed rootfs image, then extract kernel and rootfs binary for parsing metadata. */ if (is_rootfs_auth_enabled()) { - printf("roofs image authentication is enabled ...\n"); + printf("rootfs image authentication is enabled ...\n"); extract_rootfs_binary(check_image_exist("rootfs-")); extract_ubi_volume("ubi_rootfs", check_image_exist("ubi-"), TEMP_ROOTFS_PATH); }