mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Introduce --deconfigure-all feature, which will remove all available settings from the mentioned device. A typical device can have 10 different site-specific settings, active settings, persistent settings and sometimes auto-configured settings configured in it. --deconfigure-all can be used to remove all of them with a single command. usage: chzdev -D <device-id> chzdev --deconfigure-all <device-id> Reviewed-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Vineeth Vijayan <vneethv@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
18 lines
390 B
C
18 lines
390 B
C
/*
|
|
* zdev - Modify and display the persistent configuration of devices
|
|
*
|
|
* Copyright IBM Corp. 2016, 2017
|
|
*
|
|
* 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 ROOT_H
|
|
#define ROOT_H
|
|
|
|
#include "exit_code.h"
|
|
|
|
exit_code_t initrd_check(bool all_pers, int site_validate);
|
|
|
|
#endif /* ROOT_H */
|