mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
- Move zipl/boot/error.h to include/boot - Adjust include statements in zipb/boot and genprotimg/boot - Remove error.h from tunedasd/src/tunedasd.c as not needed - Fix tunedasd/src/Makefile Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
25 lines
509 B
C
25 lines
509 B
C
/*
|
|
* zipl - zSeries Initial Program Loader tool
|
|
*
|
|
* Stand-alone kdump definitions
|
|
*
|
|
* Copyright IBM Corp. 2013, 2023
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
|
|
#ifndef KDUMP_H
|
|
#define KDUMP_H
|
|
|
|
#include "libc.h"
|
|
#include "boot/os_info.h"
|
|
|
|
#define OS_INFO_VERSION_MAJOR_SUPPORTED 1
|
|
|
|
void kdump_os_info_check(const struct os_info *os_info);
|
|
void kdump_failed(unsigned long reason);
|
|
|
|
#endif /* KDUMP_H */
|