Accepting request 349641 from hardware
- Update to 05.12.00 OBS-URL: https://build.opensuse.org/request/show/349641 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fwts?expand=0&rev=9
This commit is contained in:
commit
d67b757497
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d6235e5d04696b01f93530dbb77d5c5160f9df1aeab6bd21888a41a4b0bcc176
|
||||
size 3396627
|
3
fwts-V15.12.00.tar.gz
Normal file
3
fwts-V15.12.00.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:79813cf4b0602643bb164779792ecb2fa15ddd340ece04d41b74594c93e9ec63
|
||||
size 3391289
|
57
fwts.changes
57
fwts.changes
@ -1,3 +1,60 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 19 10:19:33 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
- Update to 05.12.00
|
||||
* Update ACPICA to version 20151124
|
||||
* live-image/fwts-frontend-text: add a selection for recommended
|
||||
* data: klog.json: add in some more kernel error messages for
|
||||
4.3
|
||||
* ACPI: Add ASPT test
|
||||
* lib: framework: allow mixed tests and test category options
|
||||
* fwts: framework: Add --log-level option
|
||||
* lib: fwts_uefi: add SD device path define
|
||||
* Boot path sync with UEFI spec. 2.5
|
||||
+ uefibootpath: add test for the SD device path
|
||||
+ uefidump: add dumping for the SD device path
|
||||
+ lib: fwts_uefi: add efi bluetooth device path define
|
||||
+ uefibootpath: add test for the bluetooth device path
|
||||
+ uefidump: add dumping for the bluetooth device path
|
||||
+ lib: fwts_uefi: add wireless device path define
|
||||
+ uefibootpath: add test for the wireless device path
|
||||
+ uefidump: add dumping for the wireless device path
|
||||
+ lib: fwts_uefi: add ramdisk device path define
|
||||
+ uefibootpath: add test for the ramdisk device path
|
||||
+ uefidump: add dumping for the ramdisk device path
|
||||
* Fixed bugs
|
||||
+ acpi: fpdt: add a terminate for buggy BIOS that reports zero
|
||||
length
|
||||
+ lib: klog: remove use of pcre, use regex instead
|
||||
+ utilities: kernelscan: remove use of pcre, use regex instead
|
||||
+ uefidump: add more bounds checking and remove need for heap
|
||||
+ utilities: fix memory leak, line not being free'd
|
||||
+ acpi: bert: remove redundant variable 'length'
|
||||
+ lib: iasl: rework IASL interface to ACPICA
|
||||
+ acpi: acpidump: use IASL rather than fwts custom table dump
|
||||
code
|
||||
+ s3 + klog: make log scanning more robust for S3 (LP: #1522292)
|
||||
+ lib: acpica: make region handler more robust (LP: #1524217)
|
||||
+ debian: copyright, fix lintian warnings
|
||||
+ Debian: update Standards-Version to 3.9.6
|
||||
+ acpi: acpidump: check for fwts_iasl_init failure
|
||||
+ lib: fwts_acpi_tables: fix segfault when tables fail to load
|
||||
(LP: #1452201)
|
||||
+ acpi: dbg2: remove dead store to ptr1
|
||||
+ hotkey: fix key reading loop, it needs to loop more than once
|
||||
+ lib: fwts_framework: remove dead store to len in for loop
|
||||
+ lib: fwts_acpi_table: remove redundant store to rsdt
|
||||
+ acpi: gpedump: remove redundant store to gpe_xrupt_info
|
||||
+ lib: fwts_acpi_tables: remove dead store to facs
|
||||
+ acpica: fwts_acpica: remove redundant store to length
|
||||
+ lib: fwts_acpi_tables: remove redundant store to xsdt
|
||||
+ lib: fwts_acpi_tables: check table to avoid dereferencing
|
||||
NULL ptr
|
||||
+ lib: fwts_acpi_table: Fix FADT update in creation of fake
|
||||
FACS table.
|
||||
+ uefibootpath: fix the wrong type for relative offset range
|
||||
path
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 17 11:49:10 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: fwts
|
||||
Version: 15.11.00
|
||||
Version: 15.12.00
|
||||
Release: 0
|
||||
Summary: Firmware Test Suite
|
||||
License: GPL-2.0+
|
||||
|
@ -1,7 +1,7 @@
|
||||
Index: fwts-15.03.01/src/lib/include/fwts_json.h
|
||||
Index: fwts-15.12.00/src/lib/include/fwts_json.h
|
||||
===================================================================
|
||||
--- fwts-15.03.01.orig/src/lib/include/fwts_json.h
|
||||
+++ fwts-15.03.01/src/lib/include/fwts_json.h
|
||||
--- fwts-15.12.00.orig/src/lib/include/fwts_json.h
|
||||
+++ fwts-15.12.00/src/lib/include/fwts_json.h
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef __FWTS_JSON_H__
|
||||
#define __FWTS_JSON_H__
|
||||
@ -11,16 +11,16 @@ Index: fwts-15.03.01/src/lib/include/fwts_json.h
|
||||
|
||||
#define __FWTS_JSON_ERR_PTR__ ((json_object*) -1)
|
||||
/*
|
||||
Index: fwts-15.03.01/src/utilities/kernelscan.c
|
||||
Index: fwts-15.12.00/src/utilities/kernelscan.c
|
||||
===================================================================
|
||||
--- fwts-15.03.01.orig/src/utilities/kernelscan.c
|
||||
+++ fwts-15.03.01/src/utilities/kernelscan.c
|
||||
--- fwts-15.12.00.orig/src/utilities/kernelscan.c
|
||||
+++ fwts-15.12.00/src/utilities/kernelscan.c
|
||||
@@ -25,7 +25,7 @@
|
||||
#include <unistd.h>
|
||||
|
||||
#include <pcre.h>
|
||||
#include <sys/types.h>
|
||||
#include <regex.h>
|
||||
-#include <json.h>
|
||||
+#include <json-c/json.h>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#define PARSER_OK 0
|
||||
|
Loading…
Reference in New Issue
Block a user