Skip to content
Snippets Groups Projects
Commit 4c566ede authored by Guido Trotter's avatar Guido Trotter
Browse files

Add VALUE_AUTO and VALUE_GENERATE constants

'auto' is used in multiple place in the code with a meaning similar to
'default', 'generate' will be used to force generation of mac addresses
when the default would be to reuse an old one.

Forward-port-of: r1884, Reviewed-by: iustinp

Reviewed-by: imsnah
parent 82d9caef
No related branches found
No related tags found
No related merge requests found
...@@ -141,6 +141,8 @@ XEN_INITRD = _autoconf.XEN_INITRD ...@@ -141,6 +141,8 @@ XEN_INITRD = _autoconf.XEN_INITRD
KVM_PATH = _autoconf.KVM_PATH KVM_PATH = _autoconf.KVM_PATH
VALUE_DEFAULT = "default" VALUE_DEFAULT = "default"
VALUE_AUTO = "auto"
VALUE_GENERATE = "generate"
VALUE_NONE = "none" VALUE_NONE = "none"
# hooks-related constants # hooks-related constants
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment