buildframework/helium/tools/localisation/get_product_path.py
changeset 1 be27ed110b50
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 #============================================================================ 
       
     2 #Name        : get_product_path.py 
       
     3 #Part of     : Helium 
       
     4 
       
     5 #Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     6 #All rights reserved.
       
     7 #This component and the accompanying materials are made available
       
     8 #under the terms of the License "Eclipse Public License v1.0"
       
     9 #which accompanies this distribution, and is available
       
    10 #at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    11 #
       
    12 #Initial Contributors:
       
    13 #Nokia Corporation - initial contribution.
       
    14 #
       
    15 #Contributors:
       
    16 #
       
    17 #Description:
       
    18 #===============================================================================
       
    19 
       
    20 """ return path for product from bsf data
       
    21 """
       
    22 import bsf
       
    23 import sys
       
    24 
       
    25 def main():
       
    26     """ Main
       
    27     """
       
    28     product = sys.argv[1]
       
    29     
       
    30     bsfs = bsf.read_all()
       
    31     print bsfs[product].get_path()
       
    32     sys.exit(0)
       
    33 
       
    34 if __name__ == "__main__":
       
    35     main()