diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2014-01-30 16:32:21 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-01-30 21:59:10 +0800 |
commit | 95a566908a5e02c51bd2af6b468df3fb9ad1bf75 (patch) | |
tree | b1152eaef4af8aa874da0e3389d03b89602453c5 /lib | |
parent | aa530148044a7c6d7ec7b6a32672cc69d53979b2 (diff) | |
download | petitboot-95a566908a5e02c51bd2af6b468df3fb9ad1bf75.zip petitboot-95a566908a5e02c51bd2af6b468df3fb9ad1bf75.tar.gz |
discover: Add DEVICE_TYPE_ANY for matching any device
Currently, If we want disable all but a specific device type from
default boot, we need to add a negative priority for all other devices.
This change adds a DEVICE_TYPE_ANY definition, to allow a simpler way to
express "only boot a specific type" by default behaviour.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/types/types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/types/types.h b/lib/types/types.h index a1065ee..1293193 100644 --- a/lib/types/types.h +++ b/lib/types/types.h @@ -9,6 +9,7 @@ enum device_type { DEVICE_TYPE_NETWORK, DEVICE_TYPE_DISK, DEVICE_TYPE_OPTICAL, + DEVICE_TYPE_ANY, DEVICE_TYPE_UNKNOWN, }; |