Commit 82670c71 authored by Roland Mikhel's avatar Roland Mikhel Committed by Dávid Vincze
Browse files

bootutil: Add capability to test hw-rollback-prot



Signed-off-by: default avatarRoland Mikhel <roland.mikhel@arm.com>
Change-Id: I3dee0baf27b8cae78b87135ea7447556b06fdefd
parent d6703520
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -50,6 +50,7 @@ uint32_t bootutil_get_caps(void);
#define BOOTUTIL_CAP_AES256                 (1<<14)
#define BOOTUTIL_CAP_RAM_LOAD               (1<<15)
#define BOOTUTIL_CAP_DIRECT_XIP             (1<<16)
#define BOOTUTIL_CAP_HW_ROLLBACK_PROT       (1<<17)

/*
 * Query the number of images this bootloader is configured for.  This
+3 −0
Original line number Diff line number Diff line
@@ -75,6 +75,9 @@ uint32_t bootutil_get_caps(void)
#if defined(MCUBOOT_DIRECT_XIP)
    res |= BOOTUTIL_CAP_DIRECT_XIP;
#endif
#if defined(MCUBOOT_HW_ROLLBACK_PROT)
    res |= BOOTUTIL_CAP_HW_ROLLBACK_PROT;
#endif

    return res;
}