Revision 3aa20508a6fe386c2a893027ef4c4ef78ee4eac2 authored by Linus Torvalds on 16 July 2015, 01:38:24 UTC, committed by Linus Torvalds on 16 July 2015, 01:38:24 UTC
Pull TPM bugfixes from James Morris.

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security:
  tpm, tpm_crb: fail when TPM2 ACPI table contents look corrupted
  tpm: Fix initialization of the cdev
2 parent s 9090fdb + 91ef5cc
Raw File
check.sh
#!/bin/sh
# Needed for systems without gettext
$* -x c -o /dev/null - > /dev/null 2>&1 << EOF
#include <libintl.h>
int main()
{
	gettext("");
	return 0;
}
EOF
if [ ! "$?" -eq "0"  ]; then
	echo -DKBUILD_NO_NLS;
fi
back to top