Just one patch has some small changes because the new code
has another fix for unaligned access.
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
"
inherit autotools gtk-doc ptest
-SRCREV = "36c4bb928a6a7962dd0ad3aa64c0b18120ca5b46"
+SRCREV = "49d8e0b59052999de577ab732b719cfbeb89504d"
# Lookout for PV bump too when SRCREV is changed
-PV = "16+git${SRCPV}"
+PV = "17+git${SRCPV}"
SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
file://depmod-search.conf \
modsig->hash >= PKEY_HASH__LAST ||
modsig->id_type >= PKEY_ID_TYPE__LAST)
return false;
-- sig_len = be32toh(modsig->sig_len);
-+ sig_len = bswap_32(modsig->sig_len);
+- sig_len = be32toh(get_unaligned(&modsig->sig_len));
++ sig_len = bswap_32(get_unaligned(&modsig->sig_len));
if (size < (off_t)(modsig->signer_len + modsig->key_id_len + sig_len))
return false;