mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Some Linux distributions always include a copy of all persistent device configuration data when updating the initial RAM-disk. This makes chzdev's persistent device configuration changes ineffective because device configuration directives applied in the RAM-disk take precedence over those stored in the root filesystem. This patch introduces a new build-time switch which allows distributions to specify that whenever there is a persistent device configuration change, the RAM-disk is updated automatically. This feature can be enabled by adding 'ZDEV_ALWAYS_UPDATE_INITRD=1' as a zdev build option. Where, by default ZDEV_ALWAYS_UPDATE_INITRD is 0. Co-developed-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Vineeth Vijayan <vneethv@linux.ibm.com> Reviewed-by: Peter Oberparleiter <oberpar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
18 lines
371 B
C
18 lines
371 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);
|
|
|
|
#endif /* ROOT_H */
|