aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oe/_types.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oe/_types.py')
-rw-r--r--lib/oe/_types.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/oe/_types.py b/lib/oe/_types.py
index b9eb2d2b86..ea31cf4219 100644
--- a/lib/oe/_types.py
+++ b/lib/oe/_types.py
@@ -89,3 +89,16 @@ def integer(value, numberbase=10):
'numberbase' flag."""
return int(value, int(numberbase))
+
+_float = float
+def float(value, fromhex='false'):
+ """OpenEmbedded floating point type
+
+ To use this type, set the type flag to 'float', and optionally set the
+ 'fromhex' flag to a true value (obeying the same rules as for the
+ 'boolean' type) if the value is in base 16 rather than base 10."""
+
+ if boolean(fromhex):
+ return _float.fromhex(value)
+ else:
+ return _float(value)