From 82a9e6cf50fb6b53637f971760e92790e0092547 Mon Sep 17 00:00:00 2001 From: Ahmad Sharif Date: Tue, 23 Oct 2012 16:47:51 -0700 Subject: [PATCH] Excluded ${D}usr/lib/debug/* files from hardened checks. BUG=chromium-os:35605 TEST=emerge-$board chromeos-kernel does not show hardened warnings on debug files. Change-Id: I0396ef9f964ad435602f65db6192429521906de1 Reviewed-on: https://gerrit.chromium.org/gerrit/36397 Tested-by: asharif Reviewed-by: Mike Frysinger Commit-Ready: asharif --- hooks/install/qa-elf.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hooks/install/qa-elf.sh b/hooks/install/qa-elf.sh index 78d54f4ba9..a243b8e909 100755 --- a/hooks/install/qa-elf.sh +++ b/hooks/install/qa-elf.sh @@ -75,6 +75,8 @@ check_binaries() case "${binary}" in *.ko) ;; + ${D}usr/lib/debug/*) + ;; *) check_compiler_flags "${binary}" check_linker_flags "${binary}"