blob: 57271b8078a49730b9ae06f901ec3faf907dcef5 [file] [log] [blame]
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -08001def getRoot(config):
2 if not config.parent:
3 return config
4 return getRoot(config.parent)
5
6root = getRoot(config)
7
8if root.host_os not in ['Linux']:
9 config.unsupported = True