On 21-04-2025 21:56, Ross Philipson wrote:
The Secure Launch Specification is an architectural agnostic, software neutral API/ABI maintainted by the TrenchBoot project. It's function is to allow any
typo maintainted
compliant boot loader to communicate the pre-launch configuration to any compliant post-launch kernel. This API/ABI is referred to as the Secure Launch Resource Table by the specification. Signed-off-by: Ross Philipson <ross.philip...@oracle.com> ---
+/* + * Return the next entry with the given tag in the SLRT starting at the + * currenty entry. If entry is NULL, the search begins at the beginning of
typo currenty
+ * table. + */ +static inline void * +slr_next_entry_by_tag(struct slr_table *table, + struct slr_entry_hdr *entry, + u16 tag)
Thanks Alok