1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: config_settings.h: add some comments

This commit is contained in:
Peter Rajnoha 2015-04-30 14:28:26 +02:00
parent d2c2718c11
commit 25e7178e59

View File

@ -18,10 +18,14 @@
* cfg_section(id, name, parent, flags, since_version, comment)
*
* - define a configuration setting of simple type:
* cfg(id, name, parent, flags, type, default_value, since_version, comment)
* cfg(id, name, parent, flags, type, default_value, since_version, unconfigured_default_value, comment)
*
* - define a configuration array of one or more types:
* cfg_array(id, name, parent, flags, types, default_value, since_version, comment)
* cfg_array(id, name, parent, flags, types, default_value, since_version, unconfigured_default_value, comment)
*
* The unconfigured_default_value is used as a default value which is
* in "@...@" form and which is then substitued with concrete value while
* running configure (see also 'lvmconfig --type default --unconfigured').
*
* If default value can't be assigned statically because it depends on some
* run-time checks or if it depends on other settings already defined,