Searched refs:LayerType (Results 1 – 5 of 5) sorted by relevance
/openbmc/openbmc/poky/scripts/lib/checklayer/cases/ |
H A D | distro.py | 8 from checklayer import LayerType 14 if self.tc.layer['type'] not in (LayerType.DISTRO, LayerType.CORE):
|
H A D | common.py | 10 from checklayer import get_signatures, LayerType, check_command, compare_signatures, get_git_toplev… 15 if self.tc.layer['type'] == LayerType.CORE: 66 if self.tc.layer["type"] == LayerType.CORE: 123 if self.tc.layer['type'] == LayerType.SOFTWARE and \
|
H A D | bsp.py | 8 from checklayer import LayerType, get_signatures, check_command, get_depgraph 14 if self.tc.layer['type'] not in (LayerType.BSP, LayerType.CORE):
|
/openbmc/openbmc/poky/scripts/ |
H A D | yocto-check-layer | 27 from checklayer import LayerType, detect_layers, add_layers, add_layer_dependencies, get_layer_depe… 128 if layer['type'] == LayerType.ERROR_BSP_DISTRO: 133 elif layer['type'] == LayerType.ERROR_NO_LAYER_CONF: 171 if layer['type'] in (LayerType.ERROR_NO_LAYER_CONF, LayerType.ERROR_BSP_DISTRO): 177 …if layer['type'] not in (LayerType.CORE, ) and check_bblayers(bblayersconf, layer['path'], logger):
|
/openbmc/openbmc/poky/scripts/lib/checklayer/ |
H A D | __init__.py | 15 class LayerType(Enum): class 91 layer['type'] = LayerType.ERROR_NO_LAYER_CONF 113 layer['type'] = LayerType.CORE 117 layer['type'] = LayerType.ERROR_BSP_DISTRO 119 layer['type'] = LayerType.BSP 122 layer['type'] = LayerType.DISTRO 125 layer['type'] = LayerType.SOFTWARE
|