a098af7caf
* ACPICA: Update to version 20160108 (LP: #1532268) * acpi: method: add _PTC test * sync with uefi 2.5 global variables + uefidump: add dumping global variabl AuditMode + uefidump: add dumping global variabl DeployedMode + uefidump: add dumping global variable OsRecoveryOrder + uefidump: add dumping global variable PlatformRecovery#### + uefidump: add dumping global variable SysPrepOrder + uefidump: add dumping global variable SysPrep#### * ACPICA: Update to version 20151218 (LP: #1527733) * esrtdump: add dumping for esrt table (LP: #1532103) * Fix spelling mistakes of "ACPI" * method: update method status * utilities: kernelscan: fix memory leaks and a segfault * acpi: cstates: fix clang build warning on zero CPUs. * acpi: s3, s3power, s4: replace cleanup free with explicit frees * data: klog.json: add in some more kernel error messages for 4.4 (LP: #1526746) * acpi: hpet: fwts_mmap failure is FWTS_MAP_FAILED and not NULL * acpi: pcc: fwts_mmap failure is FWTS_MAP_FAILED and not NULL * bios: ebdadump: fwts_mmap failure is FWTS_MAP_FAILED and not MAP_FAILED * acpi: syntaxcheck: ASL_MSG_COMPILER_RESERVED failure should be an info (LP: #1529717) * Update copyright year to 2016 * dmi: dmicheck: fix reserved bits mask for Processor Information * uefirtvariable: fix decalred VLA have zero size (LP: #1526815) OBS-URL: https://build.opensuse.org/package/show/hardware/fwts?expand=0&rev=29
27 lines
666 B
Diff
27 lines
666 B
Diff
Index: src/lib/include/fwts_json.h
|
|
===================================================================
|
|
--- src/lib/include/fwts_json.h.orig
|
|
+++ src/lib/include/fwts_json.h
|
|
@@ -20,7 +20,7 @@
|
|
#ifndef __FWTS_JSON_H__
|
|
#define __FWTS_JSON_H__
|
|
|
|
-#include <json.h>
|
|
+#include <json-c/json.h>
|
|
|
|
#define __FWTS_JSON_ERR_PTR__ ((json_object*) -1)
|
|
/*
|
|
Index: src/utilities/kernelscan.c
|
|
===================================================================
|
|
--- src/utilities/kernelscan.c.orig
|
|
+++ src/utilities/kernelscan.c
|
|
@@ -25,7 +25,7 @@
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <regex.h>
|
|
-#include <json.h>
|
|
+#include <json-c/json.h>
|
|
|
|
#include "config.h"
|
|
|